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 { /// /// 数据库表PLN_ORDER_DZ_S所对应的实体类(生成工具:代码生成工具3.0) /// 作者:DESKTOP-LI8OG3P 时间:2016-08-18 /// public class PlnOrderDzSEntity { /// /// 锻造订单编号 /// private string proPlanId = ""; /// /// 工序排产序号 /// private string gxPlanNo = ""; /// /// 产线编码 /// private string plineCode = ""; /// /// 产线描述 /// private string plineName = ""; /// /// 铸造类型(1连铸2模铸) /// private string castingtype = ""; /// /// 钢种代码 /// private string gradecode = ""; /// /// 钢种名称 /// private string gradename = ""; /// /// 锻坯直径 /// private decimal? diameterOut = null; /// /// 锻坯长度 /// private decimal? lengthOut = null; /// /// 锻坯产出物料编码 /// private string outwlId = ""; /// /// 锻坯产出物料描述 /// private string outwlDesc = ""; /// /// 锻坯单重 /// private decimal? outWtOne = null; /// /// 计划产出总重量 /// private decimal? outWtTot = null; /// /// 计划产出支数 /// private decimal? outNumTot = null; /// /// 原料直径(模铸无) /// private string diameterIn = ""; /// /// 原料长度(模铸无) /// private decimal? lengthIn = null; /// /// 原料单重 /// private decimal? wtOneIn = null; /// /// 投入物料编码 /// private string wlidIn = ""; /// /// 投入物料描述 /// private string wldescIn = ""; /// /// 待投入重量 /// private decimal? inWeightS = null; /// /// 待投入支数 /// private decimal? inNumS = null; /// /// 排产重量 /// private decimal? weigthS = null; /// /// 排产支数 /// private decimal? numS = null; /// /// 加投重量 /// private decimal? addWtIn = null; /// /// 加投支数 /// private decimal? addNumIn = null; /// /// 投入利库重量 /// private decimal? matchWtIn = null; /// /// 投入利库支数 /// private decimal? matchNumIn = null; /// /// 锻造加工余量(直径mm) /// private decimal? dzLoseAdd = null; /// /// 锻造切头尾量(mm) /// private decimal? dzCutHeadEnd = null; /// /// 锻造每火次烧损(%) /// private decimal? dzBurnLose = null; /// /// 成分标准索引号集合(内控) /// private string cic = ""; /// /// 材质标准索引号集合(内控) /// private string pic = ""; /// /// 公差标准索引号集合(内控) /// private string sic = ""; /// /// 探伤索引号集合(内控) /// private string dic = ""; /// /// 水压索引码集合(内控) /// private string wic = ""; /// /// 加工标准索引号集合(内控) /// private string gic = ""; /// /// 产线内生产顺序号 /// private string gxProSeq = ""; /// /// 生产年月 /// private string proMonth = ""; /// /// 计划耗时(分) /// private decimal? planUsetime = null; /// /// 计划开始时间 /// private string planTimeB = ""; /// /// 计划结束时间 /// private string planTimeE = ""; /// /// 炉计划已排重量 /// private decimal? batchedWt = null; /// /// 炉计划已排支数 /// private decimal? batchedNum = null; /// /// 生产完成重量 /// private decimal? finishweight = null; /// /// 生产完成支数 /// private decimal? finishnum = null; /// /// 执行状态(0计划,1生产中,2完成,3关闭A) /// private string exeStatus = ""; /// /// 是否检修计划 /// private string isRepairPln; /// /// 检修类型 /// private string repairType = ""; /// /// 是否确认下发 /// private string isPlanOk; /// /// 锻造作业批次号 /// private string zyBatchId = ""; /// /// 下发时间 /// private string issuedTime = ""; /// /// 下发人 /// private string issuedMan = ""; /// /// 最近取消下发时间 /// private string lastUndownTime = ""; /// /// 最近取消下发人 /// private string lastUndownMan = ""; /// /// 加工成本 /// private decimal? processingCost = null; /// /// 完全成本 /// private decimal? totalCost = null; /// /// 锻造订单编号 /// [Description("订单编号")] [Nullable(false)] [DataLength(20)] public string ProPlanId { get { return proPlanId; } set { proPlanId = value; } } /// /// 工序排产序号 /// [Description("排产序号")] [Nullable(false)] [DataLength(10)] public string GxPlanNo { get { return gxPlanNo; } set { gxPlanNo = value; } } /// /// 产线编码 /// [Description("锻造产线")] [Nullable(true)] [DataLength(20)] public string PlineCode { get { return plineCode; } set { plineCode = value; } } /// /// 产线描述 /// [Description("产线描述")] [Nullable(true)] [DataLength(100)] public string PlineName { get { return plineName; } set { plineName = value; } } /// /// 铸造类型(1连铸2模铸) /// [Description("铸造类型")] [Nullable(true)] [DataLength(20)] public string Castingtype { get { return castingtype; } set { castingtype = value; } } /// /// 钢种代码 /// [Description("钢种代码")] [Nullable(true)] [DataLength(10)] public string Gradecode { get { return gradecode; } set { gradecode = value; } } /// /// 钢种名称 /// [Description("钢种名称")] [Nullable(true)] [DataLength(100)] public string Gradename { get { return gradename; } set { gradename = value; } } /// /// 锻坯直径 /// [Description("锻坯直径")] [Nullable(true)] [DataLength(10)] public decimal? DiameterOut { get { return diameterOut; } set { diameterOut = value; } } /// /// 锻坯长度 /// [Description("锻坯长度")] [Nullable(true)] [DataLength(10)] public decimal? LengthOut { get { return lengthOut; } set { lengthOut = value; } } /// /// 锻坯产出物料编码 /// [Description("锻坯产出物料编码")] [Nullable(true)] [DataLength(40)] public string OutwlId { get { return outwlId; } set { outwlId = value; } } /// /// 锻坯产出物料描述 /// [Description("锻坯产出物料")] [Nullable(true)] [DataLength(40)] public string OutwlDesc { get { return outwlDesc; } set { outwlDesc = value; } } /// /// 锻坯单重 /// [Description("锻坯单重")] [Nullable(true)] [DataLength(10)] public decimal? OutWtOne { get { return outWtOne; } set { outWtOne = value; } } /// /// 计划产出总重量 /// [Description("计划产出重量")] [Nullable(true)] [DataLength(10)] public decimal? OutWtTot { get { return outWtTot; } set { outWtTot = value; } } /// /// 计划产出支数 /// [Description("计划产出支数")] [Nullable(true)] [DataLength(10)] public decimal? OutNumTot { get { return outNumTot; } set { outNumTot = value; } } /// /// 原料直径(模铸无) /// [Description("原料直径")] [Nullable(true)] [DataLength(10)] public string DiameterIn { get { return diameterIn; } set { diameterIn = value; } } /// /// 原料长度(模铸无) /// [Description("原料长度")] [Nullable(true)] [DataLength(10)] public decimal? LengthIn { get { return lengthIn; } set { lengthIn = value; } } /// /// 原料单重 /// [Description("原料单重")] [Nullable(true)] [DataLength(10)] public decimal? WtOneIn { get { return wtOneIn; } set { wtOneIn = value; } } /// /// 投入物料编码 /// [Description("投入物料编码")] [Nullable(true)] [DataLength(20)] public string WlidIn { get { return wlidIn; } set { wlidIn = value; } } /// /// 投入物料描述 /// [Description("投入物料")] [Nullable(true)] [DataLength(40)] public string WldescIn { get { return wldescIn; } set { wldescIn = value; } } /// /// 待投入重量 /// [Description("待投入重量")] [Nullable(true)] [DataLength(10)] public decimal? InWeightS { get { return inWeightS; } set { inWeightS = value; } } /// /// 待投入支数 /// [Description("待投入支数")] [Nullable(true)] [DataLength(10)] public decimal? InNumS { get { return inNumS; } set { inNumS = value; } } /// /// 排产重量 /// [Description("排产重量")] [Nullable(true)] [DataLength(10)] public decimal? WeigthS { get { return weigthS; } set { weigthS = value; } } /// /// 排产支数 /// [Description("排产支数")] [Nullable(true)] [DataLength(10)] public decimal? NumS { get { return numS; } set { numS = value; } } /// /// 加投重量 /// [Description("加投重量")] [Nullable(true)] [DataLength(10)] public decimal? AddWtIn { get { return addWtIn; } set { addWtIn = value; } } /// /// 加投支数 /// [Description("加投支数")] [Nullable(true)] [DataLength(10)] public decimal? AddNumIn { get { return addNumIn; } set { addNumIn = value; } } /// /// 投入利库重量 /// [Description("投入利库重量")] [Nullable(true)] [DataLength(10)] public decimal? MatchWtIn { get { return matchWtIn; } set { matchWtIn = value; } } /// /// 投入利库支数 /// [Description("投入利库支数")] [Nullable(true)] [DataLength(10)] public decimal? MatchNumIn { get { return matchNumIn; } set { matchNumIn = value; } } /// /// 锻造加工余量(直径mm) /// [Description("锻造加工余量(直径mm)")] [Nullable(true)] [DataLength(10)] public decimal? DzLoseAdd { get { return dzLoseAdd; } set { dzLoseAdd = value; } } /// /// 锻造切头尾量(mm) /// [Description("锻造切头尾量(mm)")] [Nullable(true)] [DataLength(10)] public decimal? DzCutHeadEnd { get { return dzCutHeadEnd; } set { dzCutHeadEnd = value; } } /// /// 锻造每火次烧损(%) /// [Description("锻造每火次烧损(%)")] [Nullable(true)] [DataLength(5)] public decimal? DzBurnLose { get { return dzBurnLose; } set { dzBurnLose = value; } } /// /// 成分标准索引号集合(内控) /// [Description("成分标准(内控)")] [Nullable(true)] [DataLength(400)] public string Cic { get { return cic; } set { cic = value; } } /// /// 材质标准索引号集合(内控) /// [Description("材质标准(内控)")] [Nullable(true)] [DataLength(400)] public string Pic { get { return pic; } set { pic = value; } } /// /// 公差标准索引号集合(内控) /// [Description("公差标准(内控)")] [Nullable(true)] [DataLength(400)] public string Sic { get { return sic; } set { sic = value; } } /// /// 探伤索引号集合(内控) /// [Description("探伤标准(内控)")] [Nullable(true)] [DataLength(400)] public string Dic { get { return dic; } set { dic = value; } } /// /// 水压索引码集合(内控) /// [Description("水压标准(内控)")] [Nullable(true)] [DataLength(400)] public string Wic { get { return wic; } set { wic = value; } } /// /// 加工标准索引号集合(内控) /// [Description("加工标准(内控)")] [Nullable(true)] [DataLength(400)] public string Gic { get { return gic; } set { gic = value; } } /// /// 产线内生产顺序号 /// [Description("生产顺序")] [Nullable(true)] [DataLength(20)] public string GxProSeq { get { return gxProSeq; } set { gxProSeq = value; } } /// /// 生产年月 /// [Description("生产年月")] [Nullable(true)] [DataLength(20)] public string ProMonth { get { return proMonth; } set { proMonth = value; } } /// /// 计划耗时(分) /// [Description("计划耗时(h)")] [Nullable(true)] [DataLength(10)] public decimal? PlanUsetime { get { return planUsetime; } set { planUsetime = value; } } /// /// 计划开始时间 /// [Description("计划开始时间")] [Nullable(true)] public string PlanTimeB { get { return planTimeB; } set { planTimeB = value; } } /// /// 计划结束时间 /// [Description("计划结束时间")] [Nullable(true)] public string PlanTimeE { get { return planTimeE; } set { planTimeE = value; } } /// /// 炉计划已排重量 /// [Description("炉计划吨")] [Nullable(true)] [DataLength(10)] public decimal? BatchedWt { get { return batchedWt; } set { batchedWt = value; } } /// /// 炉计划已排支数 /// [Description("炉计划支")] [Nullable(true)] [DataLength(10)] public decimal? BatchedNum { get { return batchedNum; } set { batchedNum = value; } } /// /// 生产完成重量 /// [Description("生产吨")] [Nullable(true)] [DataLength(10)] public decimal? Finishweight { get { return finishweight; } set { finishweight = value; } } /// /// 生产完成支数 /// [Description("生产支")] [Nullable(true)] [DataLength(10)] public decimal? Finishnum { get { return finishnum; } set { finishnum = value; } } /// /// 执行状态(0计划,1生产中,2完成,3关闭A) /// [Description("执行状态")] [Nullable(true)] [DataLength(10)] public string ExeStatus { get { return exeStatus; } set { exeStatus = value; } } /// /// 是否检修计划 /// [Description("是否检修")] [Nullable(true)] [DataLength(1)] public string IsRepairPln { get { return isRepairPln; } set { isRepairPln = value; } } /// /// 检修类型 /// [Description("检修类型")] [Nullable(true)] [DataLength(40)] public string RepairType { get { return repairType; } set { repairType = value; } } /// /// 是否确认下发 /// [Description("是否确认")] [Nullable(true)] [DataLength(1)] public string IsPlanOk { get { return isPlanOk; } set { isPlanOk = value; } } /// /// 锻造作业批次号 /// [Description("锻造作业批次号")] [Nullable(true)] [DataLength(20)] public string ZyBatchId { get { return zyBatchId; } set { zyBatchId = value; } } /// /// 下发时间 /// [Description("确认时间")] [Nullable(true)] public string IssuedTime { get { return issuedTime; } set { issuedTime = value; } } /// /// 下发人 /// [Description("确认人")] [Nullable(true)] [DataLength(20)] public string IssuedMan { get { return issuedMan; } set { issuedMan = value; } } /// /// 最近取消下发时间 /// [Description("取消确认时间")] [Nullable(true)] public string LastUndownTime { get { return lastUndownTime; } set { lastUndownTime = value; } } /// /// 最近取消下发人 /// [Description("取消确认人")] [Nullable(true)] [DataLength(20)] public string LastUndownMan { get { return lastUndownMan; } set { lastUndownMan = value; } } /// /// 加工成本 /// [Description("加工成本")] [Nullable(true)] [DataLength(10)] public decimal? ProcessingCost { get { return processingCost; } set { processingCost = value; } } /// /// 完全成本 /// [Description("完全成本")] [Nullable(true)] [DataLength(10)] public decimal? TotalCost { get { return totalCost; } set { totalCost = value; } } /// /// 管坯需求编号 /// private string gpreqId = ""; [Description("管坯需求编号")] [Nullable(true)] [DataLength(10)] public string GpreqId { get { return gpreqId; } set { gpreqId = value; } } /// /// 创建时间 /// private string createTime = ""; [Description("创建时间")] [Nullable(true)] [DataLength(10)] public string CreateTime { get { return createTime; } set { createTime = value; } } /// /// 创建人 /// private string createName = ""; [Description("创建人")] [Nullable(true)] [DataLength(10)] public string CreateName { get { return createName; } set { createName = value; } } private string orderNoSeq = ""; [Description("合同号")] public string OrderNoSeq { get { return orderNoSeq; } set { orderNoSeq = value; } } private decimal? numLk = null; [Description("利库支")] public decimal? NumLk { get { return numLk; } set { numLk = value; } } private decimal? weightLk = null; [Description("利库吨")] public decimal? WeightLk { get { return weightLk; } set { weightLk = value; } } } }