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.工序排产.entity { public class PlnOrderRclSOEntity : PlnOrderRclSEntity { /// /// 小时能力(t/h) /// private string hrCapcty = ""; [Description("小时能力(支/h)")] public string HrCapcty { get { return hrCapcty; } set { hrCapcty = value; } } private string stockGroupName; [Description("去向(仓库分组)")] public string StockGroupName { get { return stockGroupName; } set { stockGroupName = value; } } private string beforeState = ""; [Description("前工序状态")] public string BeforeState { get { return beforeState; } set { beforeState = value; } } private string afterState = ""; [Description("后工序状态")] public string AfterState { get { return afterState; } set { afterState = value; } } private string zgStartTime; [Description("轧管启动时间")] public string ZgStartTime { get { return zgStartTime; } set { zgStartTime = value; } } private string outputNum; [Description("轧管预计成品产出支")] public string OutputNum { get { return outputNum; } set { outputNum = value; } } private string timeDiffer; [Description("时间差")] public string TimeDiffer { get { return timeDiffer; } set { timeDiffer = value; } } private string befProLin; [Description("前工序产线")] public string BefProLin { get { return befProLin; } set { befProLin = value; } } private string befProNum; [Description("前工序条数")] public string BefProNum { get { return befProNum; } set { befProNum = value; } } private string saleOrgDesc; [Description("销售组织")] public string SaleOrgDesc { get { return saleOrgDesc; } set { saleOrgDesc = value; } } private string finalUserDesc; [Description("合同用户")] public string FinalUserDesc { get { return finalUserDesc; } set { finalUserDesc = value; } } private string preInfo; [Description("前工序信息")] public string PreInfo { get { return preInfo; } set { preInfo = value; } } private string afInfo; [Description("后工序信息")] public string AfInfo { get { return afInfo; } set { afInfo = 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 finishWgt; //[Description("炼轧已完成吨")] //public string FinishWgt //{ // get { return finishWgt; } // set { finishWgt = value; } //} //private string unfinishWgt; //[Description("炼轧未完成吨")] //public string 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 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 = ""; private string modelCode; [Description("扣型代码")] public string ModelCode { get { return modelCode; } set { modelCode = value; } } private string modelDesc; [Description("扣型")] public string ModelDesc { get { return modelDesc; } set { modelDesc = value; } } /// /// 品名代码 /// [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(true)] [DataLength(10)] public string Steelcode { get { return steelcode; } set { steelcode = value; } } /// /// 钢级(牌号)名称 /// [Description("钢级名称")] [Nullable(true)] [DataLength(100)] public string Steelname { get { return steelname; } set { steelname = 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 stockNumLiku; [Description("库存可利库支")] public string StockNumLiku { get { return stockNumLiku; } set { stockNumLiku = value; } } private decimal? reallWt = null; [Description("可排产量")] public decimal? ReallWt { get { return reallWt; } set { reallWt = value; } } private string delvryEdate = ""; [Description("交货日期")] public string DelvryEdate { get { return delvryEdate; } set { delvryEdate = value; } } private string craftChangeMemo = ""; [Description("工艺变更说明")] public string CraftChangeMemo { get { return craftChangeMemo; } set { craftChangeMemo = value; } } private string penaltyDesc = ""; [Description("罚则条款")] [DataHidden(true)] public string PenaltyDesc { get { return penaltyDesc; } set { penaltyDesc = value; } } private string orderTeam = ""; [Description("是否协同")] [DataHidden(true)] public string OrderTeam { get { return orderTeam; } set { orderTeam = value; } } private string lenRollMin = ""; [Description("转移长度下限(m)")] [DataHidden(true)] public string LenRollMin { get { return lenRollMin; } set { lenRollMin = value; } } private string orderCreateName = ""; [Description("合同业务员")] [DataHidden(true)] public string OrderCreateName { get { return orderCreateName; } set { orderCreateName = value; } } private string orderDocumentaryName = ""; [Description("合同跟单员")] [DataHidden(true)] public string OrderDocumentaryName { get { return orderDocumentaryName; } set { orderDocumentaryName = value; } } } }