using Core.Mes.Client.Comm.Attribute; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; namespace Core.StlMes.Client.PlnSaleOrd.JGGXPln.Entity { /// /// 作者:PC-20180117CCCC 时间:2018-06-25 /// public class PlnOrderGxJgCEntity { /// /// 接箍工序订单编号 /// private string proPlanId = ""; /// /// 订单属性分组号 /// private string jgGroupId = ""; /// /// 工序排产序号 /// private string gxPlanNo = ""; /// /// 接箍产线代码 /// private string plineCode = ""; /// /// 接箍产线描述 /// private string plineName = ""; /// /// 产线内生产顺序号 /// private string gxProSeq = ""; /// /// 接箍码 /// private string codeJg = ""; /// /// 接箍规格描述 /// private string specJgDesc = ""; /// /// 接箍备料码 /// private string codeJgBl = ""; /// /// 钢级(牌号)名称 /// private string steelname = ""; /// /// 钢种名称 /// private string gradename = ""; /// /// 接箍料物料编码 /// private string blWlId = ""; /// /// 接箍料物料描述 /// private string blWlDesc = ""; /// /// 目标切管长 /// private decimal? aimCutLen = null; /// /// 接箍扣型描述 /// private string modelDesc = ""; /// /// 探伤要求(408401) /// private string demandDetection = ""; /// /// 磷化镀铜要求(408402) /// private string demandBonderizing = ""; /// /// 压印喷标 /// private string demandCopper = ""; /// /// 喷砂要求 /// private string demandBlast = ""; /// /// 单支可切个数 /// private decimal? singleCutNun = null; /// /// 执行状态(0计划,1生产中,2完成,3关闭A,4关闭) /// private string exeStatus = ""; /// /// 炉计划下发状态(0未下发,1已下发) /// private string isStoveIssued = ""; /// /// 是否接箍监制 /// private string ifMonitorJg = ""; /// /// 监制编号 /// private string prdcrNo = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 炉计划下发时间 /// private string stoveIssuedTime = ""; /// /// 炉计划下发人 /// private string stoveIssuedMan = ""; /// /// 主交货编码PK /// private string ordLnDlyPk = ""; /// /// 主排产流水号 /// private string plnDivideId = ""; /// /// 接箍料需求号 /// private string reqBlId = ""; /// /// 产出物料编码 /// private string outwlId = ""; /// /// 产出物料描述 /// private string outwlDesc = ""; /// /// 本工序监制点 /// private string monitorPoint = ""; /// /// 工艺文件号 /// private string craftFileNo = ""; /// /// 工艺文件责任人 /// private string craftFileMan = ""; /// /// 工艺序号 /// private decimal? craftSeq = null; /// /// 本工序点路径 /// private string stationRoad = ""; /// /// 中孔类别(I、II、III、IV...) /// private string styleJg = ""; /// /// 接箍标准名称 /// private string stdName = ""; /// /// 接箍标准类别描述(I、II、III) /// private string stdStyleDesc = ""; /// /// 接箍品种描述 /// private string produccodeJgDesc = ""; /// /// 备料码集合 /// private string codeBlAll = ""; /// /// 接箍工序订单编号 /// [Description("订单编号")] [Nullable(false)] [DataLength(20)] public string ProPlanId { get { return proPlanId; } set { proPlanId = value; } } /// /// 订单属性分组号 /// [Description("属性分组")] [Nullable(false)] [DataLength(10)] public string JgGroupId { get { return jgGroupId; } set { jgGroupId = value; } } /// /// 工序排产序号 /// [Description("排产序号")] [Nullable(false)] [DataLength(10)] public string GxPlanNo { get { return gxPlanNo; } set { gxPlanNo = value; } } /// /// 接箍产线代码 /// [Description("接箍产线代码")] [Nullable(true)] [DataLength(20)] public string PlineCode { get { return plineCode; } set { plineCode = value; } } /// /// 接箍产线描述 /// [Description("产线描述")] [Nullable(true)] [DataLength(100)] public string PlineName { get { return plineName; } set { plineName = value; } } /// /// 产线内生产顺序号 /// [Description("生产顺序号")] [Nullable(true)] [DataLength(20)] public string GxProSeq { get { return gxProSeq; } set { gxProSeq = value; } } /// /// 接箍码 /// [Description("接箍码")] [Nullable(true)] [DataLength(7)] public string CodeJg { get { return codeJg; } set { codeJg = value; } } /// /// 接箍规格描述 /// [Description("规格")] [Nullable(true)] [DataLength(100)] public string SpecJgDesc { get { return specJgDesc; } set { specJgDesc = value; } } /// /// 接箍备料码 /// [Description("备料码")] [Nullable(true)] [DataLength(20)] public string CodeJgBl { get { return codeJgBl; } set { codeJgBl = value; } } /// /// 钢级(牌号)名称 /// [Description("钢级")] [Nullable(true)] [DataLength(100)] public string Steelname { get { return steelname; } set { steelname = value; } } /// /// 钢种名称 /// [Description("钢种")] [Nullable(true)] [DataLength(100)] public string Gradename { get { return gradename; } set { gradename = value; } } /// /// 接箍料物料编码 /// [Description("接箍料物料编码")] [Nullable(true)] [DataLength(40)] public string BlWlId { get { return blWlId; } set { blWlId = value; } } /// /// 接箍料物料描述 /// [Description("投入物料")] [Nullable(true)] [DataLength(40)] public string BlWlDesc { get { return blWlDesc; } set { blWlDesc = value; } } /// /// 目标切管长 /// [Description("目标切管长")] [Nullable(true)] [DataLength(10)] public decimal? AimCutLen { get { return aimCutLen; } set { aimCutLen = value; } } /// /// 接箍扣型描述 /// [Description("扣型")] [Nullable(true)] [DataLength(100)] public string ModelDesc { get { return modelDesc; } set { modelDesc = value; } } /// /// 探伤要求(408401) /// [Description("是否探伤")] [Nullable(true)] [DataLength(200)] public string DemandDetection { get { return demandDetection; } set { demandDetection = value; } } /// /// 磷化镀铜要求(408402) /// [Description("是否磷化镀铜")] [Nullable(true)] [DataLength(200)] public string DemandBonderizing { get { return demandBonderizing; } set { demandBonderizing = value; } } /// /// 压印喷标 /// [Description("是否压印喷标")] [Nullable(true)] [DataLength(400)] public string DemandCopper { get { return demandCopper; } set { demandCopper = value; } } /// /// 喷砂要求 /// [Description("是否喷砂")] [Nullable(true)] [DataLength(200)] public string DemandBlast { get { return demandBlast; } set { demandBlast = value; } } /// /// 单支可切个数 /// [Description("单支可切个数")] [Nullable(true)] [DataLength(10)] public decimal? SingleCutNun { get { return singleCutNun; } set { singleCutNun = value; } } /// /// 执行状态(0计划,1生产中,2完成,3关闭A,4关闭) /// [Description("7+1订单状态")] [Nullable(true)] [DataLength(10)] public string ExeStatus { get { return exeStatus; } set { exeStatus = value; } } /// /// 炉计划下发状态(0未下发,1已下发) /// [Description("是否下发")] [Nullable(true)] [DataLength(1)] public string IsStoveIssued { get { return isStoveIssued; } set { isStoveIssued = value; } } /// /// 是否监制 /// [Description("是否监制")] [Nullable(true)] [DataLength(1)] public string IfMonitorJg { get { return ifMonitorJg; } set { ifMonitorJg = value; } } /// /// 监制编号 /// [Description("监制编号")] [Nullable(true)] [DataLength(40)] public string PrdcrNo { get { return prdcrNo; } set { prdcrNo = value; } } /// /// 炉计划下发时间 /// [Description("下发时间")] [Nullable(true)] public string StoveIssuedTime { get { return stoveIssuedTime; } set { stoveIssuedTime = value; } } /// /// 炉计划下发人 /// [Description("下发人")] [Nullable(true)] [DataLength(20)] public string StoveIssuedMan { get { return stoveIssuedMan; } set { stoveIssuedMan = value; } } /// /// 主交货编码PK /// [Description("主交货编码PK")] [Nullable(true)] [DataLength(40)] public string OrdLnDlyPk { get { return ordLnDlyPk; } set { ordLnDlyPk = value; } } /// /// 主排产流水号 /// [Description("主排产流水号")] [Nullable(true)] [DataLength(10)] public string PlnDivideId { get { return plnDivideId; } set { plnDivideId = value; } } /// /// 接箍料需求号 /// [Description("备料需求号")] [Nullable(true)] [DataLength(20)] public string ReqBlId { get { return reqBlId; } set { reqBlId = value; } } /// /// 产出物料编码 /// [Description("产出物料编码")] [Nullable(true)] [DataLength(40)] public string OutwlId { get { return outwlId; } set { outwlId = value; } } /// /// 产出物料描述 /// [Description("产出物料")] [Nullable(true)] [DataLength(100)] public string OutwlDesc { get { return outwlDesc; } set { outwlDesc = value; } } /// /// 工艺文件号 /// [Description("工艺文件号")] [Nullable(true)] [DataLength(400)] public string CraftFileNo { get { return craftFileNo; } set { craftFileNo = value; } } /// /// 工艺文件责任人 /// [Description("工艺文件责任人")] [Nullable(true)] [DataLength(20)] public string CraftFileMan { get { return craftFileMan; } set { craftFileMan = value; } } /// /// 工艺序号 /// [Description("工艺序号")] [Nullable(true)] [DataLength(5)] public decimal? CraftSeq { get { return craftSeq; } set { craftSeq = value; } } /// /// 本工序点路径 /// [Description("本工序点路径")] [Nullable(true)] [DataLength(200)] public string StationRoad { get { return stationRoad; } set { stationRoad = value; } } /// /// 中孔类别(I、II、III、IV...) /// [Description("中孔类别")] [Nullable(true)] [DataLength(8)] public string StyleJg { get { return styleJg; } set { styleJg = value; } } /// /// 接箍标准名称 /// [Description("标准名称")] [Nullable(true)] [DataLength(200)] public string StdName { get { return stdName; } set { stdName = value; } } /// /// 接箍标准类别描述(I、II、III) /// [Description("标准类别")] [Nullable(true)] [DataLength(10)] public string StdStyleDesc { get { return stdStyleDesc; } set { stdStyleDesc = value; } } /// /// 接箍品种描述 /// [Description("品种")] [Nullable(true)] [DataLength(100)] public string ProduccodeJgDesc { get { return produccodeJgDesc; } set { produccodeJgDesc = value; } } /// /// 备料码集合 /// [Description("备料码集合")] [Nullable(true)] [DataLength(200)] public string CodeBlAll { get { return codeBlAll; } set { codeBlAll = value; } } private string groupNumS = ""; [Description("排产接箍个")] public string GroupNumS { get { return groupNumS; } set { groupNumS = value; } } private string groupWts = ""; [Description("排产接箍吨")] public string GroupWts { get { return groupWts; } set { groupWts = value; } } private string plansNum = ""; [Description("轧管计划产出个")] public string PlansNum { get { return plansNum; } set { plansNum = value; } } private string expectNum = ""; [Description("预计成品个")] public string ExpectNum { get { return expectNum; } set { expectNum = value; } } private string planTimeB = ""; [Description("生产时间Min")] public string PlanTimeB { get { return planTimeB; } set { planTimeB = value; } } private string kcCount = ""; [Description("库存个")] public string KcCount { get { return kcCount; } set { kcCount = value; } } private string type = ""; [Description("是否成品接箍")] public string Type { get { return type; } set { type = value; } } private string planNum = ""; [Description("排产支")] public string PlanNum { get { return planNum; } set { planNum = value; } } private string planWt = ""; [Description("排产吨")] public string PlanWt { get { return planWt; } set { planWt = value; } } private string key = ""; [Description("订单从表编号")] public string Key { get { return key; } set { key = value; } } private string workNum = ""; [Description("可做工单个")] public string WorkNum { get { return workNum; } set { workNum = value; } } //private string prodNum = ""; //[Description("可排产支")] //public string ProdNum //{ // get { return prodNum; } // set { prodNum = value; } //} private string workNumTrant = ""; [Description("工单在途支")] public string WorkNumTrant { get { return workNumTrant; } set { workNumTrant = value; } } private string workNumTranta = ""; [Description("工单在途个")] public string WorkNumTranta { get { return workNumTranta; } set { workNumTranta = value; } } //private string workWt = ""; //[Description("可做工单吨")] //public string WorkWt //{ // get { return workWt; } // set { workWt = value; } //} private string proPlanIdJgx = ""; [Description("加工排产订单")] public string ProPlanIdJgx { get { return proPlanIdJgx; } set { proPlanIdJgx = value; } } private string plineNameJgx = ""; [Description("加工产线")] public string PlineNameJgx { get { return plineNameJgx; } set { plineNameJgx = value; } } private string orderNoSeq = ""; [Description("成品合同")] public string OrderNoSeq { get { return orderNoSeq; } set { orderNoSeq = value; } } private string finalUserDesc = ""; [Description("用户")] public string FinalUserDesc { get { return finalUserDesc; } set { finalUserDesc = value; } } private string producname = ""; [Description("品名")] public string Producname { get { return producname; } set { producname = value; } } private string judgeCount = ""; [Description("有无炉计划")] public string JudgeCount { get { return judgeCount; } set { judgeCount = value; } } private string craftNoJg2 = ""; [Description("二级工艺文件")] public string CraftNoJg2 { get { return craftNoJg2; } set { craftNoJg2 = value; } } private string craftSeq2 = ""; [Description("工艺序号")] public string CraftSeq2 { get { return craftSeq2; } set { craftSeq2 = value; } } private string craftPath = ""; [Description("工艺路径")] public string CraftPath { get { return craftPath; } set { craftPath = value; } } private string xqJgNum = ""; [Description("接箍需求个")] public string XqJgNum { get { return xqJgNum; } set { xqJgNum = value; } } private string cpExeStatus = ""; [Description("成品合同状态")] public string CpExeStatus { get { return cpExeStatus; } set { cpExeStatus = value; } } private string planIndoubleNum = ""; [Description("成品装炉支")] public string PlanIndoubleNum { get { return planIndoubleNum; } set { planIndoubleNum = value; } } private string numS = ""; [Description("成品排产支")] public string NumS { get { return numS; } set { numS = value; } } private string planBlNum = ""; [Description("备料码炉计划支")] public string PlanBlNum { get { return planBlNum; } set { planBlNum = value; } } private string jgOrderno = ""; [Description("接箍合同号")] public string JgOrderno { get { return jgOrderno; } set { jgOrderno = value; } } } }