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