using Core.Mes.Client.Comm.Attribute; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; namespace com.steering.pss.plnsaleord.order.model { class PlnDbkInOutInfoEntity { private string eIsOk = ""; /// /// 镦拔扩确认 /// [Description("镦拔扩确认")] [Nullable(false)] [DataLength(10)] [JsonProperty("EIsOk")] public string EIsOk { get { return eIsOk; } set { eIsOk = value; } } private string orderNoSeq = ""; /// /// 合同行 /// [Description("合同行")] [Nullable(false)] [DataLength(30)] [JsonProperty("orderNoSeq")] public string OrderNoSeq { get { return orderNoSeq; } set { orderNoSeq = value; } } private string deliveryNo = ""; /// /// 交货编码 /// [Description("交货编码")] [Nullable(false)] [DataLength(5)] [JsonProperty("deliveryNo")] public string DeliveryNo { get { return deliveryNo; } set { deliveryNo = value; } } /// /// 排产状态 /// private string planstatus = ""; /// /// 排产状态 /// [Description("排产状态")] [Nullable(false)] [DataLength(10)] [JsonProperty("planstatus")] public string Planstatus { get { return planstatus; } set { planstatus = value; } } private string specName = ""; /// /// 规格 /// [Description("规格")] [Nullable(false)] [DataLength(30)] [JsonProperty("specName")] public string SpecName { get { return specName; } set { specName = value; } } private string rollLength = ""; /// /// 轧制长度 /// [Description("轧制长度(m)")] [Nullable(false)] [DataLength(10)] [JsonProperty("rollLength")] public string RollLength { get { return rollLength; } set { rollLength = value; } } private string aimLenRoll = ""; /// /// 目标轧管转移长度 /// [Description("轧管目标长度(m)")] [Nullable(false)] [DataLength(10)] [JsonProperty("aimLenRoll")] public string AimLenRoll { get { return aimLenRoll; } set { aimLenRoll = value; } } private string aimLenEnd = ""; /// /// 目标成品长度 /// [Description("目标成品长度(m)")] [Nullable(false)] [DataLength(10)] [JsonProperty("aimLenEnd")] public string AimLenEnd { get { return aimLenEnd; } set { aimLenEnd = value; } } private string inspectionValue = ""; /// /// 探伤盲区切长 /// [Description("探伤盲区切长(mm)")] [Nullable(false)] [DataLength(10)] [JsonProperty("inspectionValue")] public string InspectionValue { get { return inspectionValue; } set { inspectionValue = value; } } private string checkJVal = ""; /// /// 接箍J值( /// [Description("接箍J值(mm)")] [Nullable(false)] [DataLength(10)] [JsonProperty("checkJVal")] public string CheckJVal { get { return checkJVal; } set { checkJVal = value; } } private string aimLenDbk = ""; /// /// 镦拔扩目标长度 /// [Description("目标长度")] [Nullable(false)] [DataLength(10)] [JsonProperty("aimLenDbk")] public string AimLenDbk { get { return aimLenDbk; } set { aimLenDbk = value; } } private string lenUnit = ""; /// /// 长度单位 /// [Description("长度单位")] [Nullable(false)] [DataLength(10)] [JsonProperty("lenUnit")] public string LenUnit { get { return lenUnit; } set { lenUnit = value; } } private string lengthmin = ""; /// /// 长度下限 /// [Description("下限")] [Nullable(false)] [DataLength(10)] [JsonProperty("lengthmin")] public string Lengthmin { get { return lengthmin; } set { lengthmin = value; } } private string lengthmax = ""; /// /// 长度上限 /// [Description("上限")] [Nullable(false)] [DataLength(10)] [JsonProperty("lengthmax")] public string Lengthmax { get { return lengthmax; } set { lengthmax = value; } } private string lengthdisc = ""; /// /// 长度描述 /// [Description("长度描述")] [Nullable(false)] [DataLength(10)] [JsonProperty("lengthdisc")] public string Lengthdisc { get { return lengthdisc; } set { lengthdisc = value; } } private string inWtDbk = ""; /// /// 镦拔扩投料量 /// [Description("投料量(t)")] [Nullable(false)] [DataLength(10)] [JsonProperty("inWtDbk")] public string InWtDbk { get { return inWtDbk; } set { inWtDbk = value; } } private string inNumDbk = ""; /// /// 镦拔扩投料支数 /// [Description("投料支数")] [Nullable(false)] [DataLength(10)] [JsonProperty("inNumDbk")] public string InNumDbk { get { return inNumDbk; } set { inNumDbk = value; } } private string outWtDbk = ""; /// /// 镦拔扩产出量 /// [Description("产出量(t)")] [Nullable(false)] [DataLength(10)] [JsonProperty("outWtDbk")] public string OutWtDbk { get { return outWtDbk; } set { outWtDbk = value; } } private string outNumDbk = ""; /// /// 镦拔扩产出支数 /// [Description("产出支数")] [Nullable(false)] [DataLength(10)] [JsonProperty("outNumDbk")] public string OutNumDbk { get { return outNumDbk; } set { outNumDbk = value; } } private string planWtD = ""; /// /// 合同量 /// [Description("合同量(t)")] [Nullable(false)] [DataLength(10)] [JsonProperty("planWtD")] public string PlanWtD { get { return planWtD; } set { planWtD = value; } } private string planNumD = ""; /// /// 合同支数 /// [Description("合同支数")] [Nullable(false)] [DataLength(10)] [JsonProperty("planNumD")] public string PlanNumD { get { return planNumD; } set { planNumD = value; } } private string bjType = ""; /// /// 变径类型 /// [Description("变径类型")] [Nullable(false)] [DataLength(10)] [JsonProperty("bjType")] public string BjType { get { return bjType; } set { bjType = value; } } private string ordLnDlyPk = ""; /// /// 交货编码Pk /// [Description("交货编码PK")] [Nullable(false)] [DataLength(40)] [JsonProperty("ordLnDlyPk")] public string OrdLnDlyPk { get { return ordLnDlyPk; } set { ordLnDlyPk = value; } } private string plnDivideId = ""; /// /// 排产流水号 /// [Description("排产流水号")] [Nullable(false)] [DataLength(5)] [JsonProperty("plnDivideId")] public string PlnDivideId { get { return plnDivideId; } set { plnDivideId = value; } } private string eInMaterialNo = ""; /// /// 镦拔扩投入物料编码 /// [Description("镦拔扩投入物料编码")] [Nullable(false)] [DataLength(50)] [JsonProperty("eInMaterialNo")] public string EInMaterialNo { get { return eInMaterialNo; } set { eInMaterialNo = value; } } private string eInMaterialDesc = ""; /// /// 镦拔扩投入物料 /// [Description("投入物料")] [Nullable(false)] [DataLength(50)] [JsonProperty("eInMaterialDesc")] public string EInMaterialDesc { get { return eInMaterialDesc; } set { eInMaterialDesc = value; } } private string eOutMaterialNo = ""; /// /// 镦拔扩产出物料编码 /// [Description("镦拔扩产出物料编码")] [Nullable(false)] [DataLength(50)] [JsonProperty("eOutMaterialNo")] public string EOutMaterialNo { get { return eOutMaterialNo; } set { eOutMaterialNo = value; } } private string eOutMaterialDesc = ""; /// /// 镦拔扩产出物料 /// [Description("产出物料")] [Nullable(false)] [DataLength(50)] [JsonProperty("eOutMaterialDesc")] public string EOutMaterialDesc { get { return eOutMaterialDesc; } set { eOutMaterialDesc = value; } } private string wholeBacklogDesc = ""; /// /// 全程途径 /// [Description("全程途径")] [Nullable(false)] [DataLength(200)] [JsonProperty("wholeBacklogDesc")] public string WholeBacklogDesc { get { return wholeBacklogDesc; } set { wholeBacklogDesc = value; } } /// /// 交货标准下限(%) /// private string heightOrdMin = ""; /// /// 交货标准下限(%) /// [Description("交货标准下限(%)")] [Nullable(false)] [DataLength(10)] [JsonProperty("heightOrdMin")] public string HeightOrdMin { get { return heightOrdMin; } set { heightOrdMin = value; } } /// /// 交货标准上限(%) /// private string heightOrdMax = ""; /// /// 交货标准上限(%) /// [Description("交货标准上限(%)")] [Nullable(false)] [DataLength(10)] [JsonProperty("heightOrdMax")] public string HeightOrdMax { get { return heightOrdMax; } set { heightOrdMax = value; } } /// /// 成品排产长度下限(m) /// private string lenDbkCalMin = ""; /// /// 成品排产长度下限(m) /// [Description("下限")] [Nullable(false)] [DataLength(10)] [JsonProperty("lenDbkCalMin")] public string LenDbkCalMin { get { return lenDbkCalMin; } set { lenDbkCalMin = value; } } /// ///成品排产长度上限(m) /// private string lenDbkCalMax = ""; /// /// 成品排产长度上限(m) /// [Description("上限")] [Nullable(false)] [DataLength(10)] [JsonProperty("lenDbkCalMax")] public string LenDbkCalMax { get { return lenDbkCalMax; } set { lenDbkCalMax = value; } } /// /// 轧管转移长度下限(m) /// private string lenZgCalMin = ""; /// /// 轧管转移长度下限(m) /// [Description("下限")] [Nullable(false)] [DataLength(10)] [JsonProperty("lenZgCalMin")] public string LenZgCalMin { get { return lenZgCalMin; } set { lenZgCalMin = value; } } /// /// 轧管转移长度上限(m) /// private string lenZgCalMax = ""; /// /// 轧管转移长度上限(m) /// [Description("上限")] [Nullable(false)] [DataLength(10)] [JsonProperty("lenZgCalMax")] public string LenZgCalMax { get { return lenZgCalMax; } set { lenZgCalMax = value; } } /// /// 镦粗影响长度(mm) /// private string lenDc = ""; /// /// 镦粗影响长度(m) /// [Description("镦粗影响长(mm)")] [Nullable(false)] [DataLength(10)] [JsonProperty("lenDc")] public string LenDc { get { return lenDc; } set { lenDc = value; } } /// /// 镦拔扩切头尾长度(mm) /// private string dbkCut = ""; /// /// 镦拔扩切头尾(mm) /// [Description("镦拔扩切头尾(mm)")] [Nullable(false)] [DataLength(10)] [JsonProperty("dbkCut")] public string DbkCut { get { return dbkCut; } set { dbkCut = value; } } /// /// 切头(mm) /// private string lenCutheadDbk = ""; [Description("切头(mm)")] public string LenCutheadDbk { get { return lenCutheadDbk; } set { lenCutheadDbk = value; } } /// /// 切尾(mm) /// private string lenCutendDbk = ""; [Description("切尾(mm)")] public string LenCutendDbk { get { return lenCutendDbk; } set { lenCutendDbk = value; } } /// /// 镦粗加长(mm) /// private string lenLongerDbk = ""; [Description("镦粗加长(mm)")] public string LenLongerDbk { get { return lenLongerDbk; } set { lenLongerDbk = value; } } /// /// 变径率 /// private string ratioDbk = ""; [Description("变径率")] public string RatioDbk { get { return ratioDbk; } set { ratioDbk = value; } } /// /// 烧损率 /// private string burning= ""; [Description("烧损率%")] public string Burning { get { return burning; } set { burning = value; } } /// /// 镦拔扩转移长度上限 /// private string lenDbkZyMax = ""; [Description("上限")] public string LenDbkZyMax { get { return lenDbkZyMax; } set { lenDbkZyMax = value; } } /// /// 镦拔扩转移长度下限 /// private string lenDbkZyMin = ""; [Description("下限")] public string LenDbkZyMin { get { return lenDbkZyMin; } set { lenDbkZyMin = value; } } /// /// 镦拔扩原料长度上限 /// private string lenDbkMax = ""; [Description("上限")] public string LenDbkMax { get { return lenDbkMax; } set { lenDbkMax = value; } } /// /// 镦拔扩原料长度下限 /// private string lenDbkMin = ""; [Description("下限")] public string LenDbkMin { get { return lenDbkMin; } set { lenDbkMin = value; } } /// /// 长度范围% /// private string lenScope = ""; [Description("长度加严率(%)")] public string LenScope { get { return lenScope; } set { lenScope = value; } } } }