using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace MP.Data.DbModels { // // This is here so CodeMaid doesn't reorganize this document // public partial class VMSFDModel { [Column("idxmacchina")] public string IdxMacchina { get; set; } = "ND"; [Column("codmacchina")] public string Codmacchina { get; set; } = "000"; [Column("palletChange")] public bool PalletChange { get; set; } = false; [Column("CodArticolo_A"), MaxLength(50)] public string CodArticoloA { get; set; } = "ND"; [Column("CodArticolo_B"), MaxLength(50)] public string CodArticoloB { get; set; } = "ND"; [Column("simplePallet")] public bool SimplePallet { get; set; } = true; [Column("insEnabled")] public bool InsEnabled { get; set; } = true; [Column("sLogEnabled")] public bool SLogEnabled { get; set; } = false; public int IsManual { get; set; } = 0; public int IdxFamigliaIngresso { get; set; } public int Multi { get; set; } public int BitFilt { get; set; } public int MaxVal { get; set; } [Column("BSR")] public int Bsr { get; set; } public bool ExplodeBit { get; set; } public int NumBit { get; set; } public int IdxMicroStato { get; set; } public int IdxFamiglia { get; set; } public int IdxStato { get; set; } [Column("lastVal")] public string LastVal { get; set; } [MaxLength(50)] public string CodArticolo { get; set; } public double TempoCicloBase { get; set; } public int PzPalletProd { get; set; } public int MatrOpr { get; set; } [Column("pallet")] public string Pallet { get; set; } [MaxLength(250)] public string CodMaccArticolo { get; set; } } }