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_YIELD_CONTROL")] [JsonObject] public class TB_YIELD_CONTROL { //主键 [Persistent("ID"), DisplayName("主键")] public string ID { get; set; } //录入日期 [Persistent("PLT"), DisplayName("工厂")] public string PLT { get; set; } //录入日期 [Persistent("STLGRD"), DisplayName("钢种")] public string STLGRD { get; set; } //录入日期 [Persistent("REMLEN"), DisplayName("剩余长度")] public string REMLEN { get; set; } //录入日期 [Persistent("REMLEN_MIN"), DisplayName("剩余长度")] public string REMLEN_MIN { get; set; } //录入日期 [Persistent("YIELD"), DisplayName("成材率")] public string YIELD { 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; } } }