using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; #nullable disable // // This is here so CodeMaid doesn't reorganize this document // namespace MP.Data.DatabaseModels { [Table("ElencoLotti")] public partial class ElencoLottiModel { #region Public Properties [Key] public string Lotto { get; set; } = ""; public int IdxODL { get; set; } = 0; [MaxLength(50)] public string RifExt { get; set; } = ""; [MaxLength(50)] public string TipoLotto { get; set; } = ""; [MaxLength(50), Column("CodArt")] public string CodArticolo { get; set; } = ""; [MaxLength(50)] public string CodStato { get; set; } = ""; [MaxLength(50)] public string Origine { get; set; } = ""; public DateTime? DtCrea { get; set; } [MaxLength(250)] public string Note { get; set; } = ""; public decimal QtaOrig { get; set; } = 0; public int NumUdc { get; set; } = 1; public decimal QtaCurr { get; set; } = 0; public DateTime? DtMod { get; set; } public bool Attivo { get; set; } = false; [MaxLength(250)] public string DescrArt { get; set; } = ""; [MaxLength(50)] public string CodArtExt { get; set; } = ""; [MaxLength(50)] public string DescStato { get; set; } = ""; #endregion Public Properties } }