using SOA.Persistent; using System; using System.ComponentModel; namespace SlabHandle { [Serializable, Table("TB_MED_SLAB")] public class TB_MED_SLAB { //板坯号 [Persistent("SLAB_NO"), DisplayName("板坯号")] public string SLAB_NO { get; set; } //位置 [Persistent("LOC"), DisplayName("位置")] public string LOC { get; set; } //钢种 [Persistent("STLGRD"), DisplayName("钢种")] public string STLGRD { get; set; } //应用钢种 [Persistent("APLY_STDSPEC"), DisplayName("应用钢种")] public string APLY_STDSPEC { get; set; } //订单用途 [Persistent("APLY_ENDUSE_CD"), DisplayName("订单用途")] public string APLY_ENDUSE_CD { get; set; } //厚度 [Persistent("THK"), DisplayName("厚度")] public string THK { get; set; } //宽度 [Persistent("WID"), DisplayName("宽度")] public string WID { get; set; } //长度 [Persistent("LEN"), DisplayName("长度")] public string LEN { get; set; } //重量 [Persistent("WGT"), DisplayName("重量")] public string WGT { get; set; } //仓库 [Persistent("CUR_INV"), DisplayName("仓库")] public string CUR_INV { get; set; } //生产日期 [Persistent("PROD_DATE"), DisplayName("生产日期")] public string PROD_DATE { get; set; } //余坯原因 [Persistent("WOO_RSN"), DisplayName("余坯原因")] public string WOO_RSN { get; set; } //原订单号 [Persistent("ORG_ORD_NO"), DisplayName("原订单号")] public string ORG_ORD_NO { get; set; } //原订单项次号 [Persistent("ORG_ORD_ITEM"), DisplayName("原订单项次号")] public string ORG_ORD_ITEM { get; set; } //最终原因 [Persistent("LAST_RES"), DisplayName("最终原因")] public string LAST_RES { get; set; } //最终结果 [Persistent("LAST_RSL"), DisplayName("最终结果")] public string LAST_RSL { get; set; } //头尾标记 [Persistent("OVER_FL"), DisplayName("头尾标记")] public string OVER_FL { get; set; } //炉号 [Persistent("HEAT_NO"), DisplayName("炉号")] public string HEAT_NO { get; set; } //真空标识 [Persistent("VAC_FLG"), DisplayName("真空标识")] public string VAC_FLG { get; set; } } }