using Newtonsoft.Json; using SOA.Persistent; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SlabHandle.Enity { [Table("TB_YARD_SPE")] [JsonObject] public class TB_YARD_SPE { //主键 [Persistent("PK"), DisplayName("主键")] public string PK { get; set; } //炉号 [Persistent("LOC"), DisplayName("垛位号")] public string LOC { get; set; } //炉号 [Persistent("PLT"), DisplayName("工厂")] public string PLT { get; set; } //录入日期 [Persistent("REMARK"), DisplayName("备注")] public string REMARK { get; set; } //录入日期 [Persistent("INS_DATE"), DisplayName("录入日期")] public string INS_DATE { get; set; } //录入时刻 [Persistent("INS_TIME"), DisplayName("录入时刻")] public string INS_TIME { get; set; } //录入人员 [Persistent("INS_EMP"), DisplayName("录入人员")] public string INS_EMP { get; set; } //更新日期 [Persistent("UPD_DATE"), DisplayName("更新日期")] public string UPD_DATE { get; set; } //更新时刻 [Persistent("UPD_TIME"), DisplayName("更新时刻")] public string UPD_TIME { get; set; } //更新人员 [Persistent("UPD_EMP"), DisplayName("更新人员")] public string UPD_EMP { get; set; } } }