35 lines
1.1 KiB
C#
35 lines
1.1 KiB
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace ApiPolo.Models
|
|
{
|
|
public class Vt_Mag_New
|
|
{
|
|
[Key]
|
|
[Required]
|
|
public string? Azienda { get; set; }
|
|
[Key]
|
|
[Required]
|
|
public string? Seriale_Rapportino { get; set; }
|
|
[Key]
|
|
[Required]
|
|
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 int? Cprownum { get; set; }
|
|
public string? Desc_Art { get; set; }
|
|
public string? CodImp { get; set; }
|
|
public string? Desc_Sup { get; set; }
|
|
public string? Cpccchk { get; set; }
|
|
|
|
}
|
|
}
|