using SOA.Persistent; using System; using System.ComponentModel; namespace SinglePlateHandle.Enity { [Serializable, Table("TB_STLGRD_SPE")] public class TB_STLGRD_SPE { //主键 [Persistent("PK"), DisplayName("主键")] public string PK { get; set; } //钢种 [Persistent("STLGRD"), DisplayName("钢种")] public string STLGRD { get; set; } //备注 [Persistent("STLGRD_CON"), DisplayName("备注")] public string STLGRD_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("IS_FULL"), DisplayName("是否完全替代")] public string IS_FULL { get; set; } //是否部分替代 [Persistent("IS_PART"), DisplayName("是否部分替代")] public string IS_PART { get; set; } } }