using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using Core.Mes.Client.Comm.Attribute; namespace Core.StlMes.Client.PlnSaleOrd.InventoryAdjustment.entity { public class PlnOrderZgSOEntity : PlnOrderZgSEntity { //private string difTime; //[Description("时间差(天)")] //public string DifTime //{ // get { return difTime; } // set { difTime = value; } //} private decimal? amountDifference = null; [Description("结转提示")] [Nullable(true)] [DataLength(10)] public decimal? AmountDifference { get { return amountDifference; } set { amountDifference = value; } } private string afPlanTimeB; [Description("后工序开始时间")] public string AfPlanTimeB { get { return afPlanTimeB; } set { afPlanTimeB = value; } } private string afInfo; [Description("后工序信息")] public string AfInfo { get { return afInfo; } set { afInfo = value; } } private string timeDiffer; [Description("后工序时间差")] public string TimeDiffer { get { return timeDiffer; } set { timeDiffer = value; } } private string afProLin; [Description("后工序产线")] public string AfProLin { get { return afProLin; } set { afProLin = value; } } private string afProNum; [Description("后工序条数")] public string AfProNum { get { return afProNum; } set { afProNum = value; } } private string stockGroupName; [Description("去向(仓库分组)")] public string StockGroupName { get { return stockGroupName; } set { stockGroupName = value; } } // private decimal? finishWgt; //[Description("炼轧已完成吨")] // public decimal? FinishWgt //{ // get { return finishWgt; } // set { finishWgt = value; } //} //private decimal? unfinishWgt; //[Description("炼轧未完成吨")] //public decimal? UnfinishWgt //{ // get { return unfinishWgt; } // set { unfinishWgt = value; } //} //private string unfinishTime; //[Description("炼轧未完成时间")] //public string UnfinishTime //{ // get { return unfinishTime; } // set { unfinishTime = value; } //} //private string unfinishNum; //[Description("炼轧未完成条数")] //public string UnfinishNum //{ // get { return unfinishNum; } // set { unfinishNum = value; } //} private string craftFileLv2G; [Description("二级工艺文件")] public string CraftFileLv2G { get { return craftFileLv2G; } set { craftFileLv2G = value; } } private string craftPath; public string CraftPath { get { return craftPath; } set { craftPath = value; } } private string proPlanNo; [Description("订单号")] public string ProPlanNo { get { return proPlanNo; } set { proPlanNo = value; } } /// /// 品名代码 /// private string produccode = ""; /// /// 品名描述 /// private string producname = ""; /// /// 标准代码 /// private string stdCode = ""; /// /// 标准名称 /// private string stdName = ""; /// /// 标准类别代码 /// private string stdStyle = ""; /// /// 标准类别描述 /// private string stdStyleDesc = ""; /// /// 钢级(牌号)代码 /// private string steelcode = ""; /// /// 钢级(牌号)名称 /// private string steelname = ""; /// /// 订货规格代码(用于合同、质保书、标牌、标识) /// private string orderSpecCode = ""; /// /// 订货规格描述(用于合同、质保书、标牌、标识) /// private string orderSpecDesc = ""; /// /// 产品规格代码 /// private string specCode = ""; /// /// 产品规格描述 /// private string specName = ""; /// /// 品名代码 /// [Description("品名代码")] [Nullable(false)] [DataLength(20)] public string Produccode { get { return produccode; } set { produccode = value; } } /// /// 品名描述 /// [Description("品名描述")] [Nullable(false)] [DataLength(100)] public string Producname { get { return producname; } set { producname = value; } } /// /// 标准代码 /// [Description("标准代码")] [Nullable(false)] [DataLength(20)] public string StdCode { get { return stdCode; } set { stdCode = value; } } /// /// 标准名称 /// [Description("订货标准")] [Nullable(false)] [DataLength(200)] public string StdName { get { return stdName; } set { stdName = value; } } /// /// 标准类别代码 /// [Description("标准类别代码")] [Nullable(true)] [DataLength(20)] public string StdStyle { get { return stdStyle; } set { stdStyle = value; } } /// /// 标准类别描述 /// [Description("标准类别")] [Nullable(true)] [DataLength(50)] public string StdStyleDesc { get { return stdStyleDesc; } set { stdStyleDesc = value; } } /// /// 订货规格代码(用于合同、质保书、标牌、标识) /// [Description("订货规格代码(用于合同、质保书、标牌、标识)")] [Nullable(false)] [DataLength(20)] public string OrderSpecCode { get { return orderSpecCode; } set { orderSpecCode = value; } } /// /// 订货规格描述(用于合同、质保书、标牌、标识) /// [Description("订货规格")] [Nullable(false)] [DataLength(200)] public string OrderSpecDesc { get { return orderSpecDesc; } set { orderSpecDesc = value; } } /// /// 产品规格代码 /// [Description("产品规格代码")] [Nullable(false)] [DataLength(20)] public string SpecCode { get { return specCode; } set { specCode = value; } } /// /// 产品规格描述 /// [Description("产品规格")] [Nullable(false)] [DataLength(100)] public string SpecName { get { return specName; } set { specName = value; } } /// /// 销售分类(油井管;专业管;普管) /// private string prdCls = ""; [Description("销售分类")] public string PrdCls { get { return prdCls; } set { prdCls = value; } } /// /// 生产分类 /// private string produceSort = ""; [Description("生产分类")] public string ProduceSort { get { return produceSort; } set { produceSort = value; } } /// /// 订货来源 /// private string orderfrom = ""; [Description("订货来源")] public string Orderfrom { get { return orderfrom; } set { orderfrom = value; } } } }