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