using Core.Mes.Client.Comm.Attribute; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; namespace Core.StlMes.Client.YdmStuffManage.Entity { /// /// 数据库表FRG_LOADING_RESULT所对应的实体类(生成工具:代码生成工具3.0) /// 作者:DM22222 时间:2017-11-17 /// public class FrgLoadingResultEntity { /// /// 上料炉号 /// private string judgeStoveNoLg = ""; /// /// 实绩编号(机组+工序点代码+年月日+6位流水) /// private string resultNo = ""; /// /// 炉计划ID /// private string heatPlanNo = ""; /// /// 生产批次号 /// private string zyBatchId = ""; /// /// 冶炼炉号(电炉炉号) /// private string stoveNo = ""; /// /// 判定炉号 /// private string judgeStoveNo = ""; /// /// 标示炉号(打印炉号) /// private string flagStoveNo = ""; /// /// 锻造订单编号 /// private string proPlanId = ""; /// /// 锻造订单排产序号 /// private string gxPlanNo = ""; /// /// 产线代码 /// private string plineCode = ""; /// /// 产线描述 /// private string plineName = ""; /// /// 是否监制 /// private string ifMonitorRcl = ""; /// /// 监制要求 /// private string monitordemand = ""; /// /// 监制编号 /// private string prdcrNo = ""; /// /// 监制人 /// private string producer = ""; /// /// 监制到场时间 /// private string producerTime = ""; /// /// 材料来源代码 /// private string soureCode = ""; /// /// 材料来源名称 /// private string soureName = ""; /// /// 钢种代码 /// private string gradecode = ""; /// /// 钢种名称 /// private string gradename = ""; /// /// 分切数 /// private decimal? outnumCut = null; /// /// 原料直径 /// private string diameterIn = ""; /// /// 原料单倍坯长(mm) /// private decimal? lenSingleIn = null; /// /// 原料管长度 /// private decimal? lengthIn = null; /// /// 原料管最大长度 /// private decimal? lengthmaxIn = null; /// /// 原料管最小长度 /// private decimal? lengthminIn = null; /// /// 作业支数(有效生产数量) /// private decimal? proNum = null; /// /// 作业重量 /// private decimal? proWt = null; /// /// 废品支数 /// private decimal? failNum = null; /// /// 废品重量 /// private decimal? failWt = null; /// /// 废品缺陷编号 /// private string failBill = ""; /// /// 离线支数 /// private decimal? offlineNum = null; /// /// 离线重量 /// private decimal? offlineWt = null; /// /// 返线支数 /// private decimal? reNum = null; /// /// 返线重量 /// private decimal? reWt = null; /// /// 上料时间 /// private string loadTime = ""; /// /// 上料班次 /// private string loadShift = ""; /// /// 上料班组 /// private string loadGroup = ""; /// /// 出库单编号 /// private string outstockDoc = ""; /// /// 生产(年月日) /// private string proYearMonthDay = ""; /// /// 结算日期(年月) /// private string balYearMonth = ""; /// /// 采集方式(0-接口采集,1-人工录入) /// private string colMode = ""; /// /// 操作人 /// private string createtUser = ""; /// /// 操作时间 /// private string createTime = ""; /// /// 修改时间 /// private string updateTime = ""; /// /// 修改人 /// private string updateName = ""; /// /// 备注 /// private string memo = ""; /// /// 锻坯产出物料编码 /// private string outwlId = ""; /// /// 锻坯产出物料描述 /// private string outwlDesc = ""; /// /// 是否入库(0 未入库 1已入库) /// private string instoreFlag = ""; /// /// 产出直径 /// private decimal? diameterOut = null; /// /// 产出长度 /// private decimal? lengthOut = null; /// /// 产出单重 /// private decimal? outWtOne = null; /// /// 产出单倍坯长(mm) /// private decimal? lenGpSingleOut = null; /// /// 实绩编号(机组+工序点代码+年月日+6位流水) /// [Description("实绩编号(机组+工序点代码+年月日+6位流水)")] [Nullable(false)] [DataLength(24)] public string ResultNo { get { return resultNo; } set { resultNo = value; } } /// /// 炉计划ID /// [Description("炉计划ID")] [Nullable(true)] [DataLength(20)] public string HeatPlanNo { get { return heatPlanNo; } set { heatPlanNo = value; } } /// /// 生产批次号 /// [Description("生产批次号")] [Nullable(true)] [DataLength(20)] public string ZyBatchId { get { return zyBatchId; } set { zyBatchId = value; } } /// /// 冶炼炉号(电炉炉号) /// [Description("冶炼炉号")] [Nullable(true)] [DataLength(20)] public string StoveNo { get { return stoveNo; } set { stoveNo = value; } } /// /// 判定炉号 /// [Description("上料炉号")] [Nullable(true)] [DataLength(6)] public string JudgeStoveNoLg { get { return judgeStoveNoLg; } set { judgeStoveNoLg = value; } } /// /// 判定炉号 /// [Description("判定炉号")] [Nullable(true)] [DataLength(6)] public string JudgeStoveNo { get { return judgeStoveNo; } set { judgeStoveNo = value; } } /// /// 标示炉号(打印炉号) /// [Description("标示炉号(打印炉号)")] [Nullable(true)] [DataLength(20)] public string FlagStoveNo { get { return flagStoveNo; } set { flagStoveNo = value; } } /// /// 锻造订单编号 /// [Description("锻造订单编号")] [Nullable(true)] [DataLength(20)] public string ProPlanId { get { return proPlanId; } set { proPlanId = value; } } /// /// 锻造订单排产序号 /// [Description("锻造订单排产序号")] [Nullable(true)] [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; } } /// /// 是否监制 /// [Description("是否监制")] [Nullable(true)] [DataLength(1)] public string IfMonitorRcl { get { return ifMonitorRcl; } set { ifMonitorRcl = value; } } /// /// 监制要求 /// [Description("监制要求")] [Nullable(true)] [DataLength(200)] public string Monitordemand { get { return monitordemand; } set { monitordemand = value; } } /// /// 监制编号 /// [Description("监制编号")] [Nullable(true)] [DataLength(40)] public string PrdcrNo { get { return prdcrNo; } set { prdcrNo = value; } } /// /// 监制人 /// [Description("监制人")] [Nullable(true)] [DataLength(40)] public string Producer { get { return producer; } set { producer = value; } } /// /// 监制到场时间 /// [Description("监制到场时间")] [Nullable(true)] public string ProducerTime { get { return producerTime; } set { producerTime = value; } } /// /// 材料来源代码 /// [Description("材料来源代码")] [Nullable(true)] [DataLength(10)] public string SoureCode { get { return soureCode; } set { soureCode = value; } } /// /// 材料来源名称 /// [Description("材料来源名称")] [Nullable(true)] [DataLength(20)] public string SoureName { get { return soureName; } set { soureName = 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? OutnumCut { get { return outnumCut; } set { outnumCut = value; } } /// /// 原料直径 /// [Description("原料直径")] [Nullable(true)] [DataLength(10)] public string DiameterIn { get { return diameterIn; } set { diameterIn = value; } } /// /// 原料单倍坯长(mm) /// [Description("原料单倍坯长(mm)")] [Nullable(true)] [DataLength(10)] public decimal? LenSingleIn { get { return lenSingleIn; } set { lenSingleIn = value; } } /// /// 原料管长度 /// [Description("原料管长度")] [Nullable(true)] [DataLength(10)] public decimal? LengthIn { get { return lengthIn; } set { lengthIn = value; } } /// /// 原料管最大长度 /// [Description("原料管最大长度")] [Nullable(true)] [DataLength(10)] public decimal? LengthmaxIn { get { return lengthmaxIn; } set { lengthmaxIn = value; } } /// /// 原料管最小长度 /// [Description("原料管最小长度")] [Nullable(true)] [DataLength(10)] public decimal? LengthminIn { get { return lengthminIn; } set { lengthminIn = value; } } /// /// 作业支数(有效生产数量) /// [Description("支数")] [Nullable(true)] [DataLength(6)] public decimal? ProNum { get { return proNum; } set { proNum = value; } } /// /// 作业重量 /// [Description("重量")] [Nullable(true)] [DataLength(8)] public decimal? ProWt { get { return proWt; } set { proWt = value; } } /// /// 废品支数 /// [Description("废品支数")] [Nullable(true)] [DataLength(6)] public decimal? FailNum { get { return failNum; } set { failNum = value; } } /// /// 废品重量 /// [Description("废品重量")] [Nullable(true)] [DataLength(8)] public decimal? FailWt { get { return failWt; } set { failWt = value; } } /// /// 废品缺陷编号 /// [Description("废品缺陷编号")] [Nullable(true)] [DataLength(20)] public string FailBill { get { return failBill; } set { failBill = value; } } /// /// 离线支数 /// [Description("离线支数")] [Nullable(true)] [DataLength(6)] public decimal? OfflineNum { get { return offlineNum; } set { offlineNum = value; } } /// /// 离线重量 /// [Description("离线重量")] [Nullable(true)] [DataLength(8)] public decimal? OfflineWt { get { return offlineWt; } set { offlineWt = value; } } /// /// 返线支数 /// [Description("返线支数")] [Nullable(true)] [DataLength(6)] public decimal? ReNum { get { return reNum; } set { reNum = value; } } /// /// 返线重量 /// [Description("返线重量")] [Nullable(true)] [DataLength(8)] public decimal? ReWt { get { return reWt; } set { reWt = value; } } /// /// 上料时间 /// [Description("上料时间")] [Nullable(true)] public string LoadTime { get { return loadTime; } set { loadTime = value; } } /// /// 上料班次 /// [Description("上料班次")] [Nullable(true)] [DataLength(1)] public string LoadShift { get { return loadShift; } set { loadShift = value; } } /// /// 上料班组 /// [Description("上料班组")] [Nullable(true)] [DataLength(1)] public string LoadGroup { get { return loadGroup; } set { loadGroup = value; } } /// /// 出库单编号 /// [Description("出库单编号")] [Nullable(true)] [DataLength(40)] public string OutstockDoc { get { return outstockDoc; } set { outstockDoc = value; } } /// /// 生产(年月日) /// [Description("生产")] [Nullable(true)] [DataLength(8)] public string ProYearMonthDay { get { return proYearMonthDay; } set { proYearMonthDay = value; } } /// /// 结算日期(年月) /// [Description("结算日期")] [Nullable(true)] [DataLength(6)] public string BalYearMonth { get { return balYearMonth; } set { balYearMonth = value; } } /// /// 采集方式(0-接口采集,1-人工录入) /// [Description("采集方式(0-接口采集,1-人工录入)")] [Nullable(true)] [DataLength(1)] public string ColMode { get { return colMode; } set { colMode = value; } } /// /// 操作人 /// [Description("操作人")] [Nullable(true)] [DataLength(20)] public string CreatetUser { get { return createtUser; } set { createtUser = value; } } /// /// 操作时间 /// [Description("操作时间")] [Nullable(true)] public string CreateTime { get { return createTime; } set { createTime = value; } } /// /// 修改时间 /// [Description("修改时间")] [Nullable(true)] public string UpdateTime { get { return updateTime; } set { updateTime = value; } } /// /// 修改人 /// [Description("修改人")] [Nullable(true)] [DataLength(20)] public string UpdateName { get { return updateName; } set { updateName = value; } } /// /// 备注 /// [Description("备注")] [Nullable(true)] [DataLength(128)] public string Memo { get { return memo; } set { memo = 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; } } /// /// 是否入库(0 未入库 1已入库) /// [Description("是否入库")] [Nullable(true)] [DataLength(1)] public string InstoreFlag { get { return instoreFlag; } set { instoreFlag = 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(10)] public decimal? OutWtOne { get { return outWtOne; } set { outWtOne = value; } } /// /// 产出单倍坯长(mm) /// [Description("单倍坯长")] [Nullable(true)] [DataLength(10)] public decimal? LenGpSingleOut { get { return lenGpSingleOut; } set { lenGpSingleOut = value; } } } }