using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations; namespace ApiPolo.Models { /// /// Classe componenti per scrittura db /// public class Compo_Impia_Table { /// /// codice impianto /// [Key] public string? cocodimp { get; set; } /// /// codice impianto /// [Key] public string? cocodazi { get; set; } /// /// indice riga /// [Key] public int? cprownum { get; set; } /// /// codice articolo /// [Column(TypeName = "decimal(10, 6)")] public decimal? coqtaart { get; set; } /// /// codice articolo /// public string? cocodart { get; set; } /// /// note /// public string? co__note { get; set; } /// /// lotto articolo /// public string? pilotto { get; set; } /// /// matricola articolo /// public string? pimatric { get; set; } } }