Michele: nullable campi vt mag new

This commit is contained in:
michele 2025-03-04 09:12:12 +01:00
parent 2c14bfb450
commit 8926ef7187

View File

@ -7,27 +7,27 @@ namespace ApiPolo.Models
{
[Key]
[Required]
public string Azienda { get; set; }
public string? Azienda { get; set; }
[Key]
[Required]
public string Seriale_Rapportino { get; set; }
public string? Seriale_Rapportino { get; set; }
[Key]
[Required]
public int Riga { get; set; }
public string Magazzino { get; set; }
public string Articolo { get; set; }
public int? Riga { get; set; }
public string? Magazzino { get; set; }
public string? Articolo { get; set; }
public string Tipo_Movimento { get; set; }
public decimal? Quantita { get; set; }
public decimal? Prezzo { get; set; }
public string Codice_Tecnico { get; set; }
public string Generato { get; set; }
public string Note { get; set; }
public string CodLotto { get; set; }
public string Matricola { get; set; }
public string? Codice_Tecnico { get; set; }
public string? Generato { get; set; }
public string? Note { get; set; }
public string? CodLotto { get; set; }
public string? Matricola { get; set; }
public int? Cprownum { get; set; }
public string Desc_Art { get; set; }
public string CodImp { get; set; }
public string Desc_Sup { get; set; }
public string? Desc_Art { get; set; }
public string? CodImp { get; set; }
public string? Desc_Sup { get; set; }
public string? Cpccchk { get; set; }
}