using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ComponentModel; using Core.Mes.Client.Comm.Attribute; namespace Core.StlMes.Client.Mcp.Entity {/// /// 数据库表COUPLING_LOADING_RESULT所对应的实体类(生成工具:代码生成工具3.0) /// 作者:PC-20180117CCCC 时间:2018-07-21 /// public class CouplingLoadingResultEntity { /// /// 实绩编号 /// private string resultNo = ""; /// /// 工单号(炉次计划号+01流水) /// private string woId = ""; /// /// 判定炉号 /// private string judgeStoveNo = ""; /// /// 批号 /// private string batchNo = ""; /// /// 组号 /// private string batchGroudNo = ""; /// /// 上料支数 /// private decimal? loadPieces = null; /// /// 上料重量 /// private decimal? loadWeight = null; /// /// 上料班次 /// private string loadShift = ""; /// /// 上料班组 /// private string loadGroup = ""; /// /// 操作人 /// private string loadUser = ""; /// /// 上料时间 /// private string loadTime = ""; /// /// 产线代码 /// private string plineCode = ""; /// /// 产线描述 /// private string plineName = ""; /// /// 操作时间 /// private string createTime = ""; /// /// 生产时间 /// private string proTime = ""; /// /// 钢种代码 /// private string gradecode = ""; /// /// 钢种名称 /// private string gradename = ""; /// /// 钢级(牌号)代码 /// private string steelcode = ""; /// /// 钢级(牌号)名称 /// private string steelname = ""; /// /// 规格描述 /// private string specJgDesc = ""; /// /// 规格代码 /// private string specJg = ""; /// /// 中孔类别(I、II、III、IV...) /// private string styleJg = ""; /// /// 标准代码 /// private string stdCode = ""; /// /// 标准名称 /// private string stdName = ""; /// /// 标准类别代码 /// private string stdStyle = ""; /// /// 标准类别描述(I、II、III) /// private string stdStyleDesc = ""; /// /// 品种代码 /// private string produccodeJg = ""; /// /// 品种描述 /// private string produccodeJgDesc = ""; /// /// 接箍码 /// private string codeJg = ""; /// /// 接箍备料码 /// private string codeJgBl = ""; /// /// 扣型代码 /// private string modelCode = ""; /// /// 扣型描述 /// private string modelDesc = ""; /// /// 是否监制 /// private string ifMonitorJg = ""; /// /// 监制编号 /// private string prdcrNo = ""; ///机床 private string machineNo = ""; //废品数 private string failNum = ""; [Description("废品数")] [Nullable(true)] [DataLength(400)] public string FailNum { get { return failNum; } set { failNum = value; } } [Description("机床")] [Nullable(true)] [DataLength(400)] public string MachineNo { get { return machineNo; } set { machineNo = value; } } ///地点 private string place = ""; [Description("地点")] [Nullable(true)] [DataLength(400)] public string Place { get { return place; } set { place = value; } } ///是否确认 private string confirm = ""; [Description("是否确认")] [Nullable(true)] [DataLength(1)] public string Confirm { get { return confirm; } set { confirm = value; } } ///离线支数 private string offNum = ""; [Description("离线支数")] [Nullable(true)] [DataLength(20)] public string OffNum { get { return offNum; } set { offNum = value; } } ///备注 private string memo = ""; [Description("备注")] [Nullable(true)] [DataLength(20)] public string Memo { get { return memo; } set { memo = value; } } /// /// 实绩编号 /// [Description("实绩编号")] [Nullable(false)] [DataLength(20)] public string ResultNo { get { return resultNo; } set { resultNo = value; } } /// /// 工单号(炉次计划号+01流水) /// [Description("工单号")] [Nullable(false)] [DataLength(20)] public string WoId { get { return woId; } set { woId = value; } } /// /// 判定炉号 /// [Description("判定炉号")] [Nullable(true)] [DataLength(6)] public string JudgeStoveNo { get { return judgeStoveNo; } set { judgeStoveNo = value; } } /// /// 批号 /// [Description("批号")] [Nullable(true)] [DataLength(20)] public string BatchNo { get { return batchNo; } set { batchNo = value; } } /// /// 组号 /// [Description("组号")] [Nullable(true)] [DataLength(3)] public string BatchGroudNo { get { return batchGroudNo; } set { batchGroudNo = value; } } /// /// 上料支数 /// [Description("上料支数")] [Nullable(true)] [DataLength(6)] public decimal? LoadPieces { get { return loadPieces; } set { loadPieces = value; } } /// /// 上料重量 /// [Description("上料重量")] [Nullable(true)] [DataLength(9)] public decimal? LoadWeight { get { return loadWeight; } set { loadWeight = value; } } /// /// 上料班次 /// [Description("班次")] [Nullable(true)] [DataLength(2)] public string LoadShift { get { return loadShift; } set { loadShift = value; } } /// /// 上料班组 /// [Description("班组")] [Nullable(true)] [DataLength(2)] public string LoadGroup { get { return loadGroup; } set { loadGroup = value; } } /// /// 操作人 /// [Description("操作人")] [Nullable(true)] [DataLength(20)] public string LoadUser { get { return loadUser; } set { loadUser = value; } } /// /// 上料时间 /// [Description("上料时间")] [Nullable(true)] public string LoadTime { get { return loadTime; } set { loadTime = 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)] public string CreateTime { get { return createTime; } set { createTime = value; } } /// /// 生产时间 /// [Description("生产时间")] [Nullable(true)] public string ProTime { get { return proTime; } set { proTime = 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 string Steelcode { get { return steelcode; } set { steelcode = value; } } /// /// 钢级(牌号)名称 /// [Description("钢级")] [Nullable(true)] [DataLength(100)] public string Steelname { get { return steelname; } set { steelname = value; } } /// /// 规格描述 /// [Description("规格描述")] [Nullable(true)] [DataLength(100)] public string SpecJgDesc { get { return specJgDesc; } set { specJgDesc = value; } } /// /// 规格代码 /// [Description("规格代码")] [Nullable(true)] [DataLength(10)] public string SpecJg { get { return specJg; } set { specJg = value; } } /// /// 中孔类别(I、II、III、IV...) /// [Description("中孔类别")] [Nullable(true)] [DataLength(8)] public string StyleJg { get { return styleJg; } set { styleJg = value; } } /// /// 标准代码 /// [Description("标准代码")] [Nullable(true)] [DataLength(20)] public string StdCode { get { return stdCode; } set { stdCode = value; } } /// /// 标准名称 /// [Description("标准名称")] [Nullable(true)] [DataLength(200)] public string StdName { get { return stdName; } set { stdName = value; } } /// /// 标准类别代码 /// [Description("标准类别代码")] [Nullable(true)] [DataLength(10)] public string StdStyle { get { return stdStyle; } set { stdStyle = value; } } /// /// 标准类别描述(I、II、III) /// [Description("标准类别")] [Nullable(true)] [DataLength(10)] public string StdStyleDesc { get { return stdStyleDesc; } set { stdStyleDesc = value; } } /// /// 品种代码 /// [Description("品种代码")] [Nullable(true)] [DataLength(20)] public string ProduccodeJg { get { return produccodeJg; } set { produccodeJg = value; } } /// /// 品种描述 /// [Description("品种")] [Nullable(true)] [DataLength(100)] public string ProduccodeJgDesc { get { return produccodeJgDesc; } set { produccodeJgDesc = value; } } /// /// 接箍码 /// [Description("接箍码")] [Nullable(true)] [DataLength(7)] public string CodeJg { get { return codeJg; } set { codeJg = value; } } /// /// 接箍备料码 /// [Description("备料码")] [Nullable(true)] [DataLength(20)] public string CodeJgBl { get { return codeJgBl; } set { codeJgBl = value; } } /// /// 扣型代码 /// [Description("扣型代码")] [Nullable(true)] [DataLength(20)] public string ModelCode { get { return modelCode; } set { modelCode = value; } } /// /// 扣型描述 /// [Description("扣型")] [Nullable(true)] [DataLength(100)] public string ModelDesc { get { return modelDesc; } set { modelDesc = value; } } /// /// 是否监制 /// [Description("是否监制")] [Nullable(true)] [DataLength(1)] public string IfMonitorJg { get { return ifMonitorJg; } set { ifMonitorJg = value; } } /// /// 监制编号 /// [Description("监制编号")] [Nullable(true)] [DataLength(40)] public string PrdcrNo { get { return prdcrNo; } set { prdcrNo = value; } } } }