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("MachineProdData")] public partial class MachProdDataModel { [Key, Column("IdxPD"), DatabaseGenerated(DatabaseGeneratedOption.Identity)] public int Id { get; set; } = 0; public DateTime DtEve { get; set; } = DateTime.Now; [StringLength(50)] public string IdxMacchina { get; set; } = ""; public string Action { get; set; } = ""; public string CodComm { get; set; } = ""; public int PzCount { get; set; } = 0; public int IdxPodl { get; set; } = 0; public int IdxOdl { get; set; } = 0; } }