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 ibk.IPD.Entity.IPD_MR.StdMgt { [Serializable, Table("MOLD_LIFE")] [JsonObject] public class MOLD_LIFE { [Persistent("PK"), DisplayName("主键ID")] public string PK { get; set; } //机号 1 [Persistent("PRC_LINE"), DisplayName("机号")] public string PRC_LINE { get; set; } //结晶器断面厚度 6 int [Persistent("SECTION_THICK"), DisplayName("结晶器断面厚度")] public string SECTION_THICK { get; set; } //更换次数 6 [Persistent("REPLACE_TIME"), DisplayName("更换次数")] public string REPLACE_TIME { get; set; } //使用时长 8 [Persistent("DURATION"), DisplayName("使用时长")] public string DURATION { 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; } } }