using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ComponentModel; using Core.Mes.Client.Comm.Attribute; namespace com.steering.pss.plnsaleord.bldeal.model { class PlnBlReqOrdInfEntity { /// /// 备料需求号 /// private string reqBlId = ""; /// /// 备料类型(接箍料、短节备料) /// private string bltype = ""; /// /// 接箍合同号(跟销售合同排他性) /// private string jgOrderno = ""; /// /// 钢级(牌号)代码 /// private string steelcode = ""; /// /// 钢级(牌号)名称 /// private string steelname = ""; /// /// 备料外径 /// private decimal? outdiameter = null; /// /// 备料壁厚 /// private decimal? wallthick = null; /// /// 控制壁厚 /// private decimal? aimwallthick = null; /// /// 最大长度 /// private decimal? lengthmax = null; /// /// 最小长度 /// private decimal? lengthmin = null; /// /// 控制长度 /// private decimal? aimlength = null; /// /// 短节备料码 /// private string codeDjBl = ""; /// /// 接箍备料码 /// private string codeJgBl = ""; /// /// 标准代码 /// private string stdCode = ""; /// /// 标准名称 /// private string stdName = ""; /// /// 备料单重 /// private decimal? singleweight = null; /// /// 备料需求重量 /// private decimal? jgblReqWeight = null; /// /// 备料需求支数 /// private decimal? jgblReqNum = null; /// /// 利库充当量 /// private decimal? matchweight = null; /// /// 利库支数 /// private decimal? matchnum = null; /// /// 接箍切断计划重量 /// private decimal? jgcutplanWt = null; /// /// 接箍切断计划支数 /// private decimal? jgcutplanNum = null; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 修改人 /// private string updateName = ""; /// /// 修改时间 /// private string updateTime = ""; /// /// 交货编码PK(备料需求号) /// private string ordLnDlyPk = ""; /// /// 排产流水号 /// private string plnDivideId = ""; /// /// 合同来源(销售合同、备料需求、补量需求) /// private string orderSource = ""; /// /// 合同号 /// private string orderNo = ""; /// /// 合同行号 /// private string orderSeq = ""; /// /// 交货编码 /// private string deliveryNo = ""; /// /// 补量要求编码 /// private string rNumId = ""; /// /// 产品规范码 /// private string psc = ""; /// /// 工艺文件号 /// private string craftFileNo = ""; /// /// 工艺文件责任人 /// private string craftFileMan = ""; /// /// 冶金规范码 /// private string msc = ""; /// /// 制程索引号 /// private string indexSeq = ""; /// /// 成品工序号(全程途径码) /// private string processSeq = ""; /// /// 默认BOM /// private string bom = ""; /// /// 钢种可选 /// private string gradecodeAll = ""; /// /// 钢种默认 /// private string gradecode = ""; /// /// 管加工是否确认 /// private string gIsOk = ""; /// /// 加工组 /// private string groupJgx = ""; /// /// 热处理是否确认 /// private string fIsOk = ""; /// /// 热处理组 /// private string groupRcl = ""; /// /// 轧管机组可选 /// private string groupRollAll = ""; /// /// 默认轧管机组编号 /// private string groupRoll = ""; /// /// 变径类型 /// private string bjType = ""; /// /// 镦拔扩投入物料编码 /// private string eInMaterialNo = ""; /// /// 镦拔扩投入物料描述 /// private string eInMaterialDesc = ""; /// /// 原料管外径 /// private string dimaterYlg = ""; /// /// 原料管壁厚 /// private string heightYlg = ""; /// /// 成品物料编码 /// private string materialNo = ""; /// /// 成品物料描述 /// private string materialDesc = ""; /// /// 坯料属性(锻坯、轧批、铸坯) /// private string stuffProperty = ""; /// /// 钢种是否确认 /// private string gradecodeIsOk = ""; /// /// 轧管是否确认 /// private string dIsOk = ""; /// /// 镦拔扩是否确认 /// private string eIsOk = ""; /// /// 成品米单重 /// private decimal? weightPerM = null; /// /// 分配排产重 /// private decimal? planWtD = null; /// /// 分配排产支 /// private decimal? planNumD = null; /// /// 成品完成重量 /// private decimal? finishWt = null; /// /// 是否变更排产 /// private string ifChange = ""; /// /// 初始分配量 /// private decimal? planWtBegin = null; /// /// 初始分配支 /// private decimal? planNumBegin = null; /// /// 排产状态(1计划,2已下发,3生产中,4生产完成,5关闭,6取消) /// private string planstatus = ""; /// /// 是否允许下发(1-是,0-否) /// private string ifAllowIssue = ""; /// /// 下发时间 /// private string issuedTime = ""; /// /// 下发人 /// private string issuedMan = ""; /// /// 备料需求号 /// [Description("备料需求号")] [Nullable(false)] [DataLength(20)] public string ReqBlId { get { return reqBlId; } set { reqBlId = value; } } /// /// 备料类型(接箍料、短节备料) /// [Description("备料类型")] [Nullable(true)] [DataLength(20)] public string Bltype { get { return bltype; } set { bltype = value; } } /// /// 接箍合同号(跟销售合同排他性) /// [Description("接箍合同号")] [Nullable(true)] [DataLength(40)] public string JgOrderno { get { return jgOrderno; } set { jgOrderno = 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("备料外径(mm)")] [Nullable(true)] [DataLength(10)] public decimal? Outdiameter { get { return outdiameter; } set { outdiameter = value; } } /// /// 备料壁厚 /// [Description("备料壁厚(mm)")] [Nullable(true)] [DataLength(10)] public decimal? Wallthick { get { return wallthick; } set { wallthick = value; } } /// /// 控制壁厚 /// [Description("控制壁厚(mm)")] [Nullable(true)] [DataLength(10)] public decimal? Aimwallthick { get { return aimwallthick; } set { aimwallthick = value; } } /// /// 最大长度 /// [Description("最大长度(m)")] [Nullable(true)] [DataLength(10)] public decimal? Lengthmax { get { return lengthmax; } set { lengthmax = value; } } /// /// 最小长度 /// [Description("最小长度(m)")] [Nullable(true)] [DataLength(10)] public decimal? Lengthmin { get { return lengthmin; } set { lengthmin = value; } } /// /// 控制长度 /// [Description("控制长度(m)")] [Nullable(true)] [DataLength(10)] public decimal? Aimlength { get { return aimlength; } set { aimlength = value; } } /// /// 短节备料码 /// [Description("短节备料码")] [Nullable(true)] [DataLength(20)] public string CodeDjBl { get { return codeDjBl; } set { codeDjBl = value; } } /// /// 接箍备料码 /// [Description("接箍备料码")] [Nullable(true)] [DataLength(20)] public string CodeJgBl { get { return codeJgBl; } set { codeJgBl = value; } } /// /// 标准代码 /// [Description("标准代码")] [Nullable(true)] [DataLength(20)] public string StdCode { get { return stdCode; } set { stdCode = value; } } /// /// 标准名称 /// [Description("标准名称")] [Nullable(true)] [DataLength(200)] public string StdName { get { return stdName; } set { stdName = value; } } /// /// 备料单重 /// [Description("备料单重")] [Nullable(true)] [DataLength(10)] public decimal? Singleweight { get { return singleweight; } set { singleweight = value; } } /// /// 备料需求重量 /// [Description("备料需求重量")] [Nullable(true)] [DataLength(10)] public decimal? JgblReqWeight { get { return jgblReqWeight; } set { jgblReqWeight = value; } } /// /// 备料需求支数 /// [Description("备料需求支数")] [Nullable(true)] [DataLength(10)] public decimal? JgblReqNum { get { return jgblReqNum; } set { jgblReqNum = value; } } /// /// 利库充当量 /// [Description("利库充当量")] [Nullable(true)] [DataLength(10)] public decimal? Matchweight { get { return matchweight; } set { matchweight = value; } } /// /// 利库支数 /// [Description("利库支数")] [Nullable(true)] [DataLength(10)] public decimal? Matchnum { get { return matchnum; } set { matchnum = value; } } /// /// 接箍切断计划重量 /// [Description("接箍切断计划重量")] [Nullable(true)] [DataLength(10)] public decimal? JgcutplanWt { get { return jgcutplanWt; } set { jgcutplanWt = value; } } /// /// 接箍切断计划支数 /// [Description("接箍切断计划支数")] [Nullable(true)] [DataLength(10)] public decimal? JgcutplanNum { get { return jgcutplanNum; } set { jgcutplanNum = value; } } /// /// 创建人 /// [Description("创建人")] [Nullable(true)] [DataLength(20)] public string CreateName { get { return createName; } set { createName = value; } } /// /// 创建时间 /// [Description("创建时间")] [Nullable(true)] public string CreateTime { get { return createTime; } set { createTime = value; } } /// /// 修改人 /// [Description("修改人")] [Nullable(true)] [DataLength(20)] public string UpdateName { get { return updateName; } set { updateName = value; } } /// /// 修改时间 /// [Description("修改时间")] [Nullable(true)] public string UpdateTime { get { return updateTime; } set { updateTime = value; } } /// /// 交货编码PK(备料需求号) /// [Description("备料需求号")] [Nullable(false)] [DataLength(40)] public string OrdLnDlyPk { get { return ordLnDlyPk; } set { ordLnDlyPk = value; } } /// /// 排产流水号 /// [Description("排产流水号")] [Nullable(false)] [DataLength(10)] public string PlnDivideId { get { return plnDivideId; } set { plnDivideId = value; } } /// /// 合同来源(销售合同、备料需求、补量需求) /// [Description("合同来源")] [Nullable(true)] [DataLength(20)] public string OrderSource { get { return orderSource; } set { orderSource = value; } } /// /// 合同号 /// [Description("合同号")] [Nullable(true)] [DataLength(20)] public string OrderNo { get { return orderNo; } set { orderNo = value; } } /// /// 合同行号 /// [Description("合同行号")] [Nullable(true)] [DataLength(3)] public string OrderSeq { get { return orderSeq; } set { orderSeq = value; } } /// /// 交货编码 /// [Description("交货编码")] [Nullable(true)] [DataLength(3)] public string DeliveryNo { get { return deliveryNo; } set { deliveryNo = value; } } /// /// 补量要求编码 /// [Description("补量要求编码")] [Nullable(true)] [DataLength(20)] public string RNumId { get { return rNumId; } set { rNumId = value; } } /// /// 产品规范码 /// [Description("产品规范码")] [Nullable(true)] [DataLength(20)] public string Psc { get { return psc; } set { psc = 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(20)] public string Msc { get { return msc; } set { msc = value; } } /// /// 制程索引号 /// [Description("制程索引号")] [Nullable(true)] [DataLength(32)] public string IndexSeq { get { return indexSeq; } set { indexSeq = value; } } /// /// 成品工序号(全程途径码) /// [Description("全程途径码")] [Nullable(true)] [DataLength(40)] public string ProcessSeq { get { return processSeq; } set { processSeq = value; } } /// /// 默认BOM /// [Description("默认BOM")] [Nullable(true)] [DataLength(40)] public string Bom { get { return bom; } set { bom = value; } } /// /// 钢种可选 /// [Description("钢种可选")] [Nullable(true)] [DataLength(200)] public string GradecodeAll { get { return gradecodeAll; } set { gradecodeAll = value; } } /// /// 钢种默认 /// [Description("钢种默认")] [Nullable(true)] [DataLength(20)] public string Gradecode { get { return gradecode; } set { gradecode = value; } } /// /// 管加工是否确认 /// [Description("管加工确认")] [Nullable(true)] [DataLength(1)] public string GIsOk { get { return gIsOk; } set { gIsOk = value; } } /// /// 加工组 /// [Description("加工组")] [Nullable(true)] [DataLength(20)] public string GroupJgx { get { return groupJgx; } set { groupJgx = value; } } /// /// 热处理是否确认 /// [Description("热处理确认")] [Nullable(true)] [DataLength(1)] public string FIsOk { get { return fIsOk; } set { fIsOk = value; } } /// /// 热处理组 /// [Description("热处理组")] [Nullable(true)] [DataLength(20)] public string GroupRcl { get { return groupRcl; } set { groupRcl = value; } } /// /// 轧管机组可选 /// [Description("轧管机组可选")] [Nullable(true)] [DataLength(40)] public string GroupRollAll { get { return groupRollAll; } set { groupRollAll = value; } } /// /// 默认轧管机组编号 /// [Description("默认轧管机组")] [Nullable(true)] [DataLength(20)] public string GroupRoll { get { return groupRoll; } set { groupRoll = value; } } /// /// 变径类型 /// [Description("变径类型")] [Nullable(true)] [DataLength(20)] public string BjType { get { return bjType; } set { bjType = value; } } /// /// 镦拔扩投入物料编码 /// [Description("镦拔扩投入物料编码")] [Nullable(true)] [DataLength(30)] public string EInMaterialNo { get { return eInMaterialNo; } set { eInMaterialNo = value; } } /// /// 镦拔扩投入物料描述 /// [Description("镦拔扩投入物料")] [Nullable(true)] [DataLength(100)] public string EInMaterialDesc { get { return eInMaterialDesc; } set { eInMaterialDesc = value; } } /// /// 原料管外径 /// [Description("原料管外径(mm)")] [Nullable(true)] [DataLength(10)] public string DimaterYlg { get { return dimaterYlg; } set { dimaterYlg = value; } } /// /// 原料管壁厚 /// [Description("原料管壁厚(mm)")] [Nullable(true)] [DataLength(10)] public string HeightYlg { get { return heightYlg; } set { heightYlg = value; } } /// /// 成品物料编码 /// [Description("成品物料编码")] [Nullable(true)] [DataLength(30)] public string MaterialNo { get { return materialNo; } set { materialNo = value; } } /// /// 成品物料描述 /// [Description("成品物料")] [Nullable(true)] [DataLength(100)] public string MaterialDesc { get { return materialDesc; } set { materialDesc = value; } } /// /// 坯料属性(锻坯、轧批、铸坯) /// [Description("坯料属性")] [Nullable(true)] [DataLength(20)] public string StuffProperty { get { return stuffProperty; } set { stuffProperty = value; } } /// /// 钢种是否确认 /// [Description("钢种确认")] [Nullable(true)] [DataLength(1)] public string GradecodeIsOk { get { return gradecodeIsOk; } set { gradecodeIsOk = value; } } /// /// 轧管是否确认 /// [Description("轧管确认")] [Nullable(true)] [DataLength(1)] public string DIsOk { get { return dIsOk; } set { dIsOk = value; } } /// /// 镦拔扩是否确认 /// [Description("镦拔扩确认")] [Nullable(true)] [DataLength(1)] public string EIsOk { get { return eIsOk; } set { eIsOk = value; } } /// /// 成品米单重 /// [Description("成品米单重(t/m)")] [Nullable(true)] [DataLength(16)] public decimal? WeightPerM { get { return weightPerM; } set { weightPerM = value; } } /// /// 分配排产重 /// [Description("分配排产重(t)")] [Nullable(true)] [DataLength(10)] public decimal? PlanWtD { get { return planWtD; } set { planWtD = value; } } /// /// 分配排产支 /// [Description("分配排产支")] [Nullable(true)] [DataLength(10)] public decimal? PlanNumD { get { return planNumD; } set { planNumD = value; } } /// /// 成品完成重量 /// [Description("成品完成重量(t)")] [Nullable(true)] [DataLength(10)] public decimal? FinishWt { get { return finishWt; } set { finishWt = value; } } /// /// 是否变更排产 /// [Description("变更排产")] [Nullable(true)] [DataLength(1)] public string IfChange { get { return ifChange; } set { ifChange = value; } } /// /// 初始分配量 /// [Description("初始分配量(t)")] [Nullable(true)] [DataLength(10)] public decimal? PlanWtBegin { get { return planWtBegin; } set { planWtBegin = value; } } /// /// 初始分配支 /// [Description("初始分配支")] [Nullable(true)] [DataLength(10)] public decimal? PlanNumBegin { get { return planNumBegin; } set { planNumBegin = value; } } /// /// 排产状态(1计划,2已下发,3生产中,4生产完成,5关闭,6取消) /// [Description("排产状态")] [Nullable(true)] [DataLength(20)] public string Planstatus { get { return planstatus; } set { planstatus = value; } } /// /// 是否允许下发(1-是,0-否) /// [Description("允许下发")] [Nullable(true)] [DataLength(1)] public string IfAllowIssue { get { return ifAllowIssue; } set { ifAllowIssue = value; } } /// /// 下发时间 /// [Description("下发时间")] [Nullable(true)] public string IssuedTime { get { return issuedTime; } set { issuedTime = value; } } /// /// 下发人 /// [Description("下发人")] [Nullable(true)] [DataLength(20)] public string IssuedMan { get { return issuedMan; } set { issuedMan = value; } } } }