| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758 |
- 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>
- /// 数据库表T_Po_Demand_Plan所对应的实体类(手敲的)
- /// 作者:TZH 时间:2024-8-8
- /// </summary>
- public class TPoDemandPlanEntity
- {
-
- /// <summary>
- /// 计划号
- /// </summary>
- private string planNo = "";
- /// <summary>
- /// 计划号
- /// </summary>
- [Description("计划号")]
- [Nullable(true)]
- [DataLength(20)]
- public string PlanNo
- {
- get { return planNo; }
- set { planNo = value; }
- }
- /// <summary>
- /// 钢种名称
- /// </summary>
- private string sgGrade = "";
- /// <summary>
- /// 钢种名称
- /// </summary>
- [Description("钢种名称")]
- [Nullable(true)]
- [DataLength(20)]
- public string SgGrade
- {
- get { return sgGrade; }
- set { sgGrade = value; }
- }
- /// <summary>
- /// 壁厚(mm)
- /// </summary>
- private decimal? wallThickness = null;
- /// <summary>
- /// 壁厚(mm)
- /// </summary>
- [Description("壁厚(mm)")]
- [Nullable(true)]
- [DataLength(20)]
- public decimal? WallThickness
- {
- get { return wallThickness; }
- set { wallThickness = value; }
- }
- /// <summary>
- /// 产品类别编码
- /// </summary>
- private string productCategoryCode = "";
- /// <summary>
- /// 产品类别编码
- /// </summary>
- [Description("产品类别编码")]
- [Nullable(true)]
- [DataLength(20)]
- public string ProductCategoryCode
- {
- get { return productCategoryCode; }
- set { productCategoryCode = value; }
- }
- /// <summary>
- /// 产品类别名称
- /// </summary>
- private string productCategory = "";
- /// <summary>
- /// 产品类别名称
- /// </summary>
- [Description("产品类别名称")]
- [Nullable(true)]
- [DataLength(20)]
- public string ProductCategory
- {
- get { return productCategory; }
- set { productCategory = value; }
- }
- /// <summary>
- /// 外径(mm)
- /// </summary>
- private decimal? outerDiam = null;
- /// <summary>
- /// 外径(mm)
- /// </summary>
- [Description("外径(mm)")]
- [Nullable(true)]
- [DataLength(20)]
- public decimal? OuterDiam
- {
- get { return outerDiam; }
- set { outerDiam = value; }
- }
- /// <summary>
- /// 长度(m)
- /// </summary>
- private decimal? length = null;
- /// <summary>
- /// 长度(m)
- /// </summary>
- [Description("长度(m)")]
- [Nullable(true)]
- [DataLength(20)]
- public decimal? Length
- {
- get { return length; }
- set { length = value; }
- }
- /// <summary>
- /// 倍尺长度(mm)
- /// </summary>
- private decimal? rulerLength = null;
- /// <summary>
- /// 倍尺长度(mm)
- /// </summary>
- [Description("倍尺长度(mm)")]
- [Nullable(true)]
- [DataLength(20)]
- public decimal? RulerLength
- {
- get { return rulerLength; }
- set { rulerLength = value; }
- }
- /// <summary>
- /// 坯料计划类型
- /// </summary>
- private string planType = "";
- /// <summary>
- /// 坯料计划类型
- /// </summary>
- [Description("坯料计划类型")]
- [Nullable(true)]
- [DataLength(20)]
- public string PlanType
- {
- get { return planType; }
- set { planType = value; }
- }
- /// <summary>
- /// 长度范围
- /// </summary>
- private string lengthRange = "";
- /// <summary>
- /// 长度范围
- /// </summary>
- [Description("长度范围")]
- [Nullable(true)]
- [DataLength(20)]
- public string LengthRange
- {
- get { return lengthRange; }
- set { lengthRange = value; }
- }
- /// <summary>
- /// 控制壁厚(mm)
- /// </summary>
- private decimal? controlsThickness = null;
- /// <summary>
- /// 控制壁厚(mm)
- /// </summary>
- [Description("控制壁厚(mm)")]
- [Nullable(true)]
- [DataLength(20)]
- public decimal? ControlsThickness
- {
- get { return controlsThickness; }
- set { controlsThickness = value; }
- }
- /// <summary>
- /// 孔型
- /// </summary>
- private string pass = "";
- /// <summary>
- /// 孔型
- /// </summary>
- [Description("孔型")]
- [Nullable(true)]
- [DataLength(20)]
- public string Pass
- {
- get { return pass; }
- set { pass = value; }
- }
- /// <summary>
- /// 品种
- /// </summary>
- private string breed = "";
- /// <summary>
- /// 品种
- /// </summary>
- [Description("品种")]
- [Nullable(true)]
- [DataLength(20)]
- public string Breed
- {
- get { return breed; }
- set { breed = value; }
- }
- /// <summary>
- /// 切头尾长度
- /// </summary>
- private string headTailLength = "";
- /// <summary>
- /// 切头尾长度
- /// </summary>
- [Description("切头尾长度")]
- [Nullable(true)]
- [DataLength(20)]
- public string HeadTailLength
- {
- get { return headTailLength; }
- set { headTailLength = value; }
- }
- /// <summary>
- /// 合同长度
- /// </summary>
- private string contractLengt = "";
- /// <summary>
- /// 合同长度
- /// </summary>
- [Description("合同长度")]
- [Nullable(true)]
- [DataLength(20)]
- public string ContractLengt
- {
- get { return contractLengt; }
- set { contractLengt = value; }
- }
- /// <summary>
- /// 合同量
- /// </summary>
- private decimal? contractedQuantity = null;
- /// <summary>
- /// 合同量
- /// </summary>
- [Description("合同量")]
- [Nullable(true)]
- [DataLength(20)]
- public decimal? ContractedQuantity
- {
- get { return contractedQuantity; }
- set { contractedQuantity = value; }
- }
- /// <summary>
- /// 采购量
- /// </summary>
- private decimal? quantityPurchased = null;
- /// <summary>
- /// 采购量
- /// </summary>
- [Description("采购量")]
- [Nullable(true)]
- [DataLength(20)]
- public decimal? QuantityPurchased
- {
- get { return quantityPurchased; }
- set { quantityPurchased = value; }
- }
- /// <summary>
- /// 交货状态
- /// </summary>
- private string deliveryStatus = "";
-
- /// <summary>
- /// 交货状态
- /// </summary>
- [Description("交货状态")]
- [Nullable(true)]
- [DataLength(20)]
- public string DeliveryStatus
- {
- get { return deliveryStatus; }
- set { deliveryStatus = value; }
- }
- /// <summary>
- /// 断面
- /// </summary>
- private decimal? section = null;
- /// <summary>
- /// 断面
- /// </summary>
- [Description("断面")]
- [Nullable(true)]
- [DataLength(20)]
- public decimal? Section
- {
- get { return section; }
- set { section = value; }
- }
- /// <summary>
- /// 合同厂家
- /// </summary>
- private string contractBuyer = "";
-
- /// <summary>
- /// 合同厂家
- /// </summary>
- [Description("合同厂家")]
- [Nullable(true)]
- [DataLength(20)]
- public string ContractBuyer
- {
- get { return contractBuyer; }
- set { contractBuyer = value; }
- }
- /// <summary>
- /// 交货期
- /// </summary>
- private string deliveryDate = "";
- /// <summary>
- /// 交货期
- /// </summary>
- [Description("交货期")]
- [Nullable(true)]
- public string DeliveryDate
- {
- get { return deliveryDate; }
- set { deliveryDate = value; }
- }
-
-
-
- //TZH
- /// <summary>
- /// 钢级
- /// </summary>
- private string gJ = "";
- /// <summary>
- /// 钢级
- /// </summary>
- [Description("钢级")]
- [Nullable(true)]
- [DataLength(20)]
- public string GJ
- {
- get { return gJ; }
- set { gJ = value; }
- }
- /// <summary>
- /// 毛管外径(mm)
- /// </summary>
- private string wgD = "";
- /// <summary>
- /// 毛管外径(mm)
- /// </summary>
- [Description("毛管外径(mm)")]
- [Nullable(true)]
- [DataLength(20)]
- public string WgD
- {
- get { return wgD; }
- set { wgD = value; }
- }
- /// <summary>
- /// 毛管壁厚(mm)
- /// </summary>
- private string wgH = "";
- /// <summary>
- /// 毛管壁厚(mm)
- /// </summary>
- [Description("毛管壁厚(mm)")]
- [Nullable(true)]
- [DataLength(20)]
- public string WgH
- {
- get { return wgH; }
- set { wgH = value; }
- }
- /// <summary>
- /// 毛管长度(m)
- /// </summary>
- private string mgcd = "";
- /// <summary>
- /// 毛管长度(m)
- /// </summary>
- [Description("毛管长度(m)")]
- [Nullable(true)]
- [DataLength(20)]
- public string Mgcd
- {
- get { return mgcd; }
- set { mgcd = value; }
- }
- /// <summary>
- /// 芯棒直径
- /// </summary>
- private string diameterMandrel = "";
- /// <summary>
- /// 芯棒直径
- /// </summary>
- [Description("芯棒直径")]
- [Nullable(true)]
- [DataLength(20)]
- public string DiameterMandrel
- {
- get { return diameterMandrel; }
- set { diameterMandrel = value; }
- }
- /// <summary>
- /// 轧制长度(m)
- /// </summary>
- private string zzcd = "";
- /// <summary>
- /// 轧制长度(m)
- /// </summary>
- [Description("轧制长度(m)")]
- [Nullable(true)]
- [DataLength(20)]
- public string Zzcd
- {
- get { return zzcd; }
- set { zzcd = value; }
- }
- /// <summary>
- /// 钢管分切数
- /// </summary>
- private string ggfqs = "";
- /// <summary>
- /// 钢管分切数
- /// </summary>
- [Description("钢管分切数")]
- [Nullable(true)]
- [DataLength(20)]
- public string Ggfqs
- {
- get { return ggfqs; }
- set { ggfqs = value; }
- }
- /// <summary>
- /// 成品长度(m)
- /// </summary>
- private string cpcd = "";
- /// <summary>
- /// 成品长度(m)
- /// </summary>
- [Description("成品长度(m)")]
- [Nullable(true)]
- [DataLength(20)]
- public string Cpcd
- {
- get { return cpcd; }
- set { cpcd = value; }
- }
- /// <summary>
- /// 切头
- /// </summary>
- private string qt = "";
- /// <summary>
- /// 切头
- /// </summary>
- [Description("切头(mm)")]
- [Nullable(true)]
- [DataLength(20)]
- public string Qt
- {
- get { return qt; }
- set { qt = value; }
- }
- /// <summary>
- /// 切尾
- /// </summary>
- private string qw = "";
- /// <summary>
- /// 切尾
- /// </summary>
- [Description("切尾(mm)")]
- [Nullable(true)]
- [DataLength(20)]
- public string Qw
- {
- get { return qw; }
- set { qw = value; }
- }
- /// <summary>
- /// 倍尺数
- /// </summary>
- private string bcs = "";
- /// <summary>
- /// 倍尺数
- /// </summary>
- [Description("倍尺数")]
- [Nullable(true)]
- [DataLength(20)]
- public string Bcs
- {
- get { return bcs; }
- set { bcs = value; }
- }
- /// <summary>
- /// 单倍尺坯料长度(mm)
- /// </summary>
- private string dbcplcd = "";
- /// <summary>
- /// 单倍尺坯料长度(mm)
- /// </summary>
- [Description("单倍尺坯料长度(mm)")]
- [Nullable(true)]
- [DataLength(20)]
- public string Dbcplcd
- {
- get { return dbcplcd; }
- set { dbcplcd = value; }
- }
- /// <summary>
- /// 单倍尺坯料重量
- /// </summary>
- private string dbcplzl = "";
- /// <summary>
- /// 单倍尺坯料重量
- /// </summary>
- [Description("单倍尺坯料重量")]
- [Nullable(true)]
- [DataLength(20)]
- public string Dbcplzl
- {
- get { return dbcplzl; }
- set { dbcplzl = value; }
- }
- /// <summary>
- /// 管坯直径
- /// </summary>
- private string gpzj = "";
- /// <summary>
- /// 管坯直径
- /// </summary>
- [Description("管坯直径")]
- [Nullable(true)]
- [DataLength(20)]
- public string Gpzj
- {
- get { return gpzj; }
- set { gpzj = value; }
- }
- /// <summary>
- /// 计算最大量
- /// </summary>
- private string htcgzlMax = "";
- /// <summary>
- /// 计算最大量
- /// </summary>
- [Description("计算最大量")]
- [Nullable(true)]
- [DataLength(20)]
- public string HtcgzlMax
- {
- get { return htcgzlMax; }
- set { htcgzlMax = value; }
- }
- /// <summary>
- /// 计算最小量
- /// </summary>
- private string htcgzlMin = "";
- /// <summary>
- /// 计算最小量
- /// </summary>
- [Description("计算最小量")]
- [Nullable(true)]
- [DataLength(20)]
- public string HtcgzlMin
- {
- get { return htcgzlMin; }
- set { htcgzlMin = value; }
- }
- ///// <summary>
- ///// 合同采购重量(新)
- ///// </summary>
- //private string htcgzl2 = "";
- ///// <summary>
- ///// 合同采购重量(新)
- ///// </summary>
- //[Description("合同量(新)")]
- //[Nullable(true)]
- //[DataLength(20)]
- //public string Htcgzl2
- //{
- // get { return htcgzl2; }
- // set { htcgzl2 = value; }
- //}
- /// <summary>
- /// 烧损率
- /// </summary>
- private string ssl = "";
- /// <summary>
- /// 烧损率
- /// </summary>
- [Description("烧损率")]
- [Nullable(true)]
- [DataLength(20)]
- public string Ssl
- {
- get { return ssl; }
- set { ssl = value; }
- }
- /// <summary>
- /// 米重
- /// </summary>
- private string mz = "";
- /// <summary>
- /// 米重
- /// </summary>
- [Description("米重")]
- [Nullable(true)]
- [DataLength(20)]
- public string Mz
- {
- get { return mz; }
- set { mz = value; }
- }
- /// <summary>
- /// 轧制重量
- /// </summary>
- private string zzzl = "";
- /// <summary>
- /// 轧制重量
- /// </summary>
- [Description("轧制重量")]
- [Nullable(true)]
- [DataLength(20)]
- public string Zzzl
- {
- get { return zzzl; }
- set { zzzl = value; }
- }
- /// <summary>
- /// 交货量差
- /// </summary>
- private string jhlc = "";
- /// <summary>
- /// 交货量差
- /// </summary>
- [Description("交货量差")]
- [Nullable(true)]
- [DataLength(20)]
- public string Jhlc
- {
- get { return jhlc; }
- set { jhlc = value; }
- }
- /// <summary>
- /// 是否上传产销
- /// </summary>
- private string cxFlag = "";
- /// <summary>
- /// 是否上传产销
- /// </summary>
- [Description("是否上传产销")]
- [Nullable(true)]
- [DataLength(20)]
- public string CxFlag
- {
- get { return cxFlag; }
- set { cxFlag = value; }
- }
- }
- }
|