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_PS { [Serializable] [Table("TB_PLATE_SPE")] [JsonObject] public class TB_PLATE_SPE { //主键 [Persistent("PK"), DisplayName("主键")] public string PK { get; set; } //钢板号 [Persistent("PLATE_NO"), DisplayName("钢板号")] public string PLATE_NO { get; set; } //钢板状态 [Persistent("PLATE_FLG"), DisplayName("钢板状态")] public string PLATE_FLG { get; set; } //备注 [Persistent("PLATE_CON"), DisplayName("备注")] public string PLATE_CON { 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; } //进程代码 [Persistent("PROC_CD"), DisplayName("进程代码")] public string PROC_CD { get; set; } //是否删除 [Persistent("IS_DELETE"), DisplayName("是否删除")] public string IS_DELETE { get; set; } } }