| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605 |
- 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
- {
- /// <summary>
- /// 数据库表PLN_ORDER_DBK_S所对应的实体类(生成工具:代码生成工具3.0)
- /// 作者:USER-20150714WV 时间:2016-03-15
- /// </summary>
- public class PlnOrderDbkSEntity
- {
- private string proPlanId;
- [Description("镦拔扩订单编号")]
- public string ProPlanId
- {
- get { return proPlanId; }
- set { proPlanId = value; }
- }
- private string stationNames;
- [Description("工序点集合")]
- public string StationNames
- {
- get { return stationNames; }
- set { stationNames = value; }
- }
- private string stationCodes;
- [Description("工序点集合")]
- public string StationCodes
- {
- get { return stationCodes; }
- set { stationCodes = value; }
- }
- private string repairType;
- [Description("检修类型")]
- public string RepairType
- {
- get { return repairType; }
- set { repairType = value; }
- }
- private Boolean isRepairPln;
- [Description("是否检修计划")]
- public Boolean IsRepairPln
- {
- get { return isRepairPln; }
- set { isRepairPln = value; }
- }
- private string modelDesc;
- [Description("扣型")]
- public string ModelDesc
- {
- get { return modelDesc; }
- set { modelDesc = value; }
- }
- private string stdName;
- [Description("标准名称")]
- public string StdName
- {
- get { return stdName; }
- set { stdName = value; }
- }
- private string stdStyleDesc;
- [Description("标准名称")]
- public string StdStyleDesc
- {
- get { return stdStyleDesc; }
- set { stdStyleDesc = value; }
- }
- private string producname;
- [Description("品名")]
- public string Producname
- {
- get { return producname; }
- set { producname = value; }
- }
- /// <summary>
- /// 钢级(牌号)代码
- /// </summary>
- private string steelcode = "";
- /// <summary>
- /// 钢级(牌号)名称
- /// </summary>
- private string steelname = "";
- /// <summary>
- /// 外径
- /// </summary>
- private decimal? outdiameter = null;
- /// <summary>
- /// 壁厚
- /// </summary>
- private decimal? wallthick = null;
- /// <summary>
- /// 目标壁厚
- /// </summary>
- private decimal? aimwallthick = null;
- /// <summary>
- /// 最大长度
- /// </summary>
- private decimal? lengthmax = null;
- /// <summary>
- /// 最小长度
- /// </summary>
- private decimal? lengthmin = null;
- /// <summary>
- /// 目标长度
- /// </summary>
- private decimal? aimlength = null;
- /// <summary>
- /// 原料外径
- /// </summary>
- private decimal? outdiameterIn = null;
- /// <summary>
- /// 原料壁厚
- /// </summary>
- private decimal? wallthickIn = null;
- /// <summary>
- /// 原料最大长度
- /// </summary>
- private decimal? lengthmaxIn = null;
- /// <summary>
- /// 原料最小长度
- /// </summary>
- private decimal? lengthminIn = null;
- /// <summary>
- /// 钢级(牌号)代码
- /// </summary>
- [Description("钢级(牌号)代码")]
- [Nullable(true)]
- [DataLength(10)]
- public string Steelcode
- {
- get { return steelcode; }
- set { steelcode = value; }
- }
- /// <summary>
- /// 钢级(牌号)名称
- /// </summary>
- [Description("钢级名称")]
- [Nullable(true)]
- [DataLength(100)]
- public string Steelname
- {
- get { return steelname; }
- set { steelname = value; }
- }
- /// <summary>
- /// 外径
- /// </summary>
- [Description("外径")]
- [Nullable(true)]
- [DataLength(10)]
- public decimal? Outdiameter
- {
- get { return outdiameter; }
- set { outdiameter = value; }
- }
- /// <summary>
- /// 壁厚
- /// </summary>
- [Description("壁厚")]
- [Nullable(true)]
- [DataLength(10)]
- public decimal? Wallthick
- {
- get { return wallthick; }
- set { wallthick = value; }
- }
- /// <summary>
- /// 目标壁厚
- /// </summary>
- [Description("目标壁厚")]
- [Nullable(true)]
- [DataLength(10)]
- public decimal? Aimwallthick
- {
- get { return aimwallthick; }
- set { aimwallthick = value; }
- }
- /// <summary>
- /// 最大长度
- /// </summary>
- [Description("最大长度")]
- [Nullable(true)]
- [DataLength(10)]
- public decimal? Lengthmax
- {
- get { return lengthmax; }
- set { lengthmax = value; }
- }
- /// <summary>
- /// 最小长度
- /// </summary>
- [Description("最小长度")]
- [Nullable(true)]
- [DataLength(10)]
- public decimal? Lengthmin
- {
- get { return lengthmin; }
- set { lengthmin = value; }
- }
- /// <summary>
- /// 目标长度
- /// </summary>
- [Description("目标长度")]
- [Nullable(true)]
- [DataLength(10)]
- public decimal? Aimlength
- {
- get { return aimlength; }
- set { aimlength = value; }
- }
- /// <summary>
- /// 原料外径
- /// </summary>
- [Description("原料外径")]
- [Nullable(true)]
- [DataLength(10)]
- public decimal? OutdiameterIn
- {
- get { return outdiameterIn; }
- set { outdiameterIn = value; }
- }
- /// <summary>
- /// 原料壁厚
- /// </summary>
- [Description("原料壁厚")]
- [Nullable(true)]
- [DataLength(10)]
- public decimal? WallthickIn
- {
- get { return wallthickIn; }
- set { wallthickIn = value; }
- }
- /// <summary>
- /// 原料最大长度
- /// </summary>
- [Description("原料最大长度")]
- [Nullable(true)]
- [DataLength(10)]
- public decimal? LengthmaxIn
- {
- get { return lengthmaxIn; }
- set { lengthmaxIn = value; }
- }
- /// <summary>
- /// 原料最小长度
- /// </summary>
- [Description("原料最小长度")]
- [Nullable(true)]
- [DataLength(10)]
- public decimal? LengthminIn
- {
- get { return lengthminIn; }
- set { lengthminIn = value; }
- }
- /// <summary>
- /// 镦拔扩合同编号
- /// </summary>
- private string proOrderNo = "";
- /// <summary>
- /// 工序排产序号
- /// </summary>
- private string gxPlanNo = "";
- /// <summary>
- /// 排产联动组号
- /// </summary>
- private string planGroupId = "";
- /// <summary>
- /// 合同来源(销售合同、备料需求、补量需求)
- /// </summary>
- private string orderSource = "";
- /// <summary>
- /// 交货编码PK
- /// </summary>
- private string ordLnDlyPk = "";
- /// <summary>
- /// 排产流水号
- /// </summary>
- private string plnDivideId = "";
- /// <summary>
- /// 合同号
- /// </summary>
- private string orderNo = "";
- /// <summary>
- /// 合同行号
- /// </summary>
- private string orderSeq = "";
- /// <summary>
- /// 交货编码
- /// </summary>
- private string deliveryNo = "";
- /// <summary>
- /// 备料需求号
- /// </summary>
- private string reqBlId = "";
- /// <summary>
- /// 产线编码
- /// </summary>
- private string plineCode = "";
- /// <summary>
- /// 产线描述
- /// </summary>
- private string plineName = "";
- /// <summary>
- /// 投入物料编码
- /// </summary>
- private string inwlId = "";
- /// <summary>
- /// 产出物料编码
- /// </summary>
- private string outwlId = "";
- /// <summary>
- /// 排产重量
- /// </summary>
- private decimal? weigthS = null;
- /// <summary>
- /// 排产支数
- /// </summary>
- private decimal? numS = null;
- /// <summary>
- /// 工序内生产顺序号
- /// </summary>
- private string gxProSeq = "";
- /// <summary>
- /// 计划耗时(分)
- /// </summary>
- private decimal? planUsetime = null;
- /// <summary>
- /// 计划开始时间
- /// </summary>
- private string planTimeB = "";
- /// <summary>
- /// 计划结束时间
- /// </summary>
- private string planTimeE = "";
- /// <summary>
- /// 执行状态
- /// </summary>
- private string exeStatus = "";
- /// <summary>
- /// 镦拔扩合同编号
- /// </summary>
- [Description("镦拔扩合同编号")]
- [Nullable(false)]
- [DataLength(20)]
- public string ProOrderNo
- {
- get { return proOrderNo; }
- set { proOrderNo = value; }
- }
- /// <summary>
- /// 工序排产序号
- /// </summary>
- [Description("工序排产序号")]
- [Nullable(false)]
- [DataLength(10)]
- public string GxPlanNo
- {
- get { return gxPlanNo; }
- set { gxPlanNo = value; }
- }
- /// <summary>
- /// 排产联动组号
- /// </summary>
- [Description("排产联动组号")]
- [Nullable(true)]
- [DataLength(40)]
- public string PlanGroupId
- {
- get { return planGroupId; }
- set { planGroupId = value; }
- }
- /// <summary>
- /// 合同来源(销售合同、备料需求、补量需求)
- /// </summary>
- [Description("合同来源")]
- [Nullable(true)]
- [DataLength(20)]
- public string OrderSource
- {
- get { return orderSource; }
- set { orderSource = value; }
- }
- /// <summary>
- /// 交货编码PK
- /// </summary>
- [Description("交货编码PK")]
- [Nullable(true)]
- [DataLength(40)]
- public string OrdLnDlyPk
- {
- get { return ordLnDlyPk; }
- set { ordLnDlyPk = value; }
- }
- /// <summary>
- /// 排产流水号
- /// </summary>
- [Description("排产流水号")]
- [Nullable(true)]
- [DataLength(10)]
- public string PlnDivideId
- {
- get { return plnDivideId; }
- set { plnDivideId = value; }
- }
- /// <summary>
- /// 合同号
- /// </summary>
- [Description("合同号")]
- [Nullable(true)]
- [DataLength(20)]
- public string OrderNo
- {
- get { return orderNo; }
- set { orderNo = value; }
- }
- /// <summary>
- /// 合同行号
- /// </summary>
- [Description("合同行号")]
- [Nullable(true)]
- [DataLength(3)]
- public string OrderSeq
- {
- get { return orderSeq; }
- set { orderSeq = value; }
- }
- /// <summary>
- /// 交货编码
- /// </summary>
- [Description("交货行号")]
- [Nullable(true)]
- [DataLength(3)]
- public string DeliveryNo
- {
- get { return deliveryNo; }
- set { deliveryNo = value; }
- }
- /// <summary>
- /// 备料需求号
- /// </summary>
- [Description("备料需求号")]
- [Nullable(true)]
- [DataLength(20)]
- public string ReqBlId
- {
- get { return reqBlId; }
- set { reqBlId = value; }
- }
- /// <summary>
- /// 产线编码
- /// </summary>
- [Description("产线编码")]
- [Nullable(true)]
- [DataLength(20)]
- public string PlineCode
- {
- get { return plineCode; }
- set { plineCode = value; }
- }
- /// <summary>
- /// 产线描述
- /// </summary>
- [Description("镦拔扩产线")]
- [Nullable(true)]
- [DataLength(100)]
- public string PlineName
- {
- get { return plineName; }
- set { plineName = value; }
- }
- /// <summary>
- /// 投入物料编码
- /// </summary>
- [Description("投入物料编码")]
- [Nullable(true)]
- [DataLength(40)]
- public string InwlId
- {
- get { return inwlId; }
- set { inwlId = value; }
- }
- /// <summary>
- /// 产出物料编码
- /// </summary>
- [Description("产出物料编码")]
- [Nullable(true)]
- [DataLength(40)]
- public string OutwlId
- {
- get { return outwlId; }
- set { outwlId = value; }
- }
- /// <summary>
- /// 排产重量
- /// </summary>
- [Description("排产重量")]
- [Nullable(true)]
- [DataLength(10)]
- public decimal? WeigthS
- {
- get { return weigthS; }
- set { weigthS = value; }
- }
- /// <summary>
- /// 排产支数
- /// </summary>
- [Description("排产支数")]
- [Nullable(true)]
- [DataLength(10)]
- public decimal? NumS
- {
- get { return numS; }
- set { numS = value; }
- }
- /// <summary>
- /// 工序内生产顺序号
- /// </summary>
- [Description("工序内生产顺序号")]
- [Nullable(true)]
- [DataLength(20)]
- public string GxProSeq
- {
- get { return gxProSeq; }
- set { gxProSeq = value; }
- }
- /// <summary>
- /// 计划耗时(分)
- /// </summary>
- [Description("计划耗时(分)")]
- [Nullable(true)]
- [DataLength(10)]
- public decimal? PlanUsetime
- {
- get { return planUsetime; }
- set { planUsetime = value; }
- }
- /// <summary>
- /// 计划开始时间
- /// </summary>
- [Description("计划开始时间")]
- [Nullable(true)]
- public string PlanTimeB
- {
- get { return planTimeB; }
- set { planTimeB = value; }
- }
- /// <summary>
- /// 计划结束时间
- /// </summary>
- [Description("计划结束时间")]
- [Nullable(true)]
- public string PlanTimeE
- {
- get { return planTimeE; }
- set { planTimeE = value; }
- }
- /// <summary>
- /// 执行状态
- /// </summary>
- [Description("执行状态")]
- [Nullable(true)]
- [DataLength(10)]
- public string ExeStatus
- {
- get { return exeStatus; }
- set { exeStatus = value; }
- }
- }
- }
|