using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace EgwProxy.SqlDb.DbModels { // // This is here so CodeMaid doesn't reorganize this document // [Table("MachinePODL")] public partial class MachPODLModel { [Key] public int IdxRec { get; set; } = 0; public int IdxPromessa { get; set; } = 0; [StringLength(50)] public string KeyRichiesta { get; set; } = ""; [StringLength(50)] public string KeyBCode { get; set; } = ""; public bool Attivabile { get; set; } = false; public int IdxODL { get; set; } = 0; [StringLength(50)] public string CodArticolo { get; set; } = ""; [StringLength(50)] public string CodGruppo { get; set; } = ""; [StringLength(50)] public string IdxMacchina { get; set; } = ""; public int NumPezzi { get; set; } = 0; public decimal TCAssegnato { get; set; } = 0; public DateTime DueDate { get; set; } = DateTime.Today; public int Priorita { get; set; } = 0; public int PzPallet { get; set; } = 0; [StringLength(2500)] public string Note { get; set; } = ""; [StringLength(50)] public string CodCli { get; set; } = ""; public DateTime InsertDate { get; set; } = DateTime.Today; } }