using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using Newtonsoft.Json; namespace Core.StlMes.Client.Mcp.Mch.Entity { /// /// 数据库表MCH_GROUP_RESULT所对应的实体类(生成工具:代码生成工具4.0 访问地址:http://172.16.2.128/tool/) /// 作者:tgcx-test 时间:2018-10-17 /// public class MchGroupResultEntity { /// /// 组炉操作编号ID /// private string groupId = ""; /// /// 组炉操作编号ID序号 /// private string groupXh = ""; /// /// 离线实绩编号(被组炉对应的实绩) /// private string lxResultNo = ""; /// /// 组炉主炉号 /// private string zpJudgeStoveNo = ""; /// /// 组炉主批号 /// private string zpBatchNo = ""; /// /// 判定炉号(原始炉号) /// private string judgeStoveNo = ""; /// /// 批号(原始炉批号) /// private string batchNo = ""; /// /// 组炉支数 /// private decimal? groupNum = null; /// /// 组炉重量 /// private decimal? groupWt = null; /// /// 品名描述 /// private string producname = ""; /// /// 钢级(牌号)名称 /// private string steelname = ""; /// /// 钢种名称 /// private string gradename = ""; /// /// 扣型代码 /// private string modelDesc = ""; /// /// 标准名称 /// private string stdName = ""; /// /// 标准类别代码 /// private string stdStyle = ""; /// /// 标准类别描述(PSL1....) /// private string stdStyleDesc = ""; /// /// 外径(实际) /// private decimal? actDimater = null; /// /// 壁厚(实际) /// private decimal? actHeight = null; /// /// 长度(实际) /// private decimal? actLen = null; /// /// 长度下限(实际) /// private string actLenMin = ""; /// /// 长度上限(实际) /// private string actLenMax = ""; /// /// 操作人 /// private string proUser = ""; /// /// 操作班次 /// private string proShift = ""; /// /// 操作班组 /// private string proGroup = ""; /// /// 操作时间 /// private string proTime = ""; /// /// 作业日期(年月日) /// private string proYearMonthDay = ""; /// /// 结算日期(年月) /// private string balYearMonth = ""; /// /// 组炉操作编号ID /// [Description("组炉ID")] [JsonProperty("groupId")] public string GroupId { get { return groupId; } set { groupId = value; } } /// /// 组炉操作编号ID序号 /// [Description("序号")] [JsonProperty("groupXh")] public string GroupXh { get { return groupXh; } set { groupXh = value; } } /// /// 离线实绩编号(被组炉对应的实绩) /// [Description("离线实绩编号")] [JsonProperty("lxResultNo")] public string LxResultNo { get { return lxResultNo; } set { lxResultNo = value; } } /// /// 组炉主炉号 /// [Description("组炉主炉号")] [JsonProperty("zpJudgeStoveNo")] public string ZpJudgeStoveNo { get { return zpJudgeStoveNo; } set { zpJudgeStoveNo = value; } } /// /// 组炉主批号 /// [Description("组炉主批号")] [JsonProperty("zpBatchNo")] public string ZpBatchNo { get { return zpBatchNo; } set { zpBatchNo = value; } } /// /// 判定炉号(原始炉号) /// [Description("判定炉号(原始炉号)")] [JsonProperty("judgeStoveNo")] public string JudgeStoveNo { get { return judgeStoveNo; } set { judgeStoveNo = value; } } /// /// 批号(原始炉批号) /// [Description("批号(原始炉批号)")] [JsonProperty("batchNo")] public string BatchNo { get { return batchNo; } set { batchNo = value; } } /// /// 组炉支数 /// [Description("组炉支数")] [JsonProperty("groupNum")] public decimal? GroupNum { get { return groupNum; } set { groupNum = value; } } /// /// 组炉重量 /// [Description("组炉重量")] [JsonProperty("groupWt")] public decimal? GroupWt { get { return groupWt; } set { groupWt = value; } } /// /// 品名描述 /// [Description("品名")] public string Producname { get { return producname; } set { producname = value; } } /// /// 钢级(牌号)名称 /// [Description("钢级")] public string Steelname { get { return steelname; } set { steelname = value; } } /// /// 钢种名称 /// [Description("钢种")] public string Gradename { get { return gradename; } set { gradename = value; } } /// /// 扣型代码 /// [Description("扣型")] public string ModelDesc { get { return modelDesc; } set { modelDesc = value; } } /// /// 标准名称 /// [Description("标准名称")] public string StdName { get { return stdName; } set { stdName = value; } } /// /// 标准类别代码 /// [Description("标准类别")] public string StdStyle { get { return stdStyle; } set { stdStyle = value; } } /// /// 外径(实际) /// [Description("外径")] public decimal? ActDimater { get { return actDimater; } set { actDimater = value; } } /// /// 壁厚(实际) /// [Description("壁厚")] public decimal? ActHeight { get { return actHeight; } set { actHeight = value; } } /// /// 长度(实际) /// [Description("长度")] public decimal? ActLen { get { return actLen; } set { actLen = value; } } /// /// 长度下限(实际) /// [Description("长度下限")] public string ActLenMin { get { return actLenMin; } set { actLenMin = value; } } /// /// 长度上限(实际) /// [Description("长度上限")] public string ActLenMax { get { return actLenMax; } set { actLenMax = value; } } /// /// 操作人 /// [Description("操作人")] [JsonProperty("proUser")] public string ProUser { get { return proUser; } set { proUser = value; } } /// /// 操作班次 /// [Description("操作班次")] [JsonProperty("proShift")] public string ProShift { get { return proShift; } set { proShift = value; } } /// /// 操作班组 /// [Description("操作班组")] [JsonProperty("proGroup")] public string ProGroup { get { return proGroup; } set { proGroup = value; } } /// /// 操作时间 /// [Description("操作时间")] [JsonProperty("proTime")] public string ProTime { get { return proTime; } set { proTime = value; } } /// /// 作业日期(年月日) /// [Description("作业日期(年月日)")] [JsonProperty("proYearMonthDay")] public string ProYearMonthDay { get { return proYearMonthDay; } set { proYearMonthDay = value; } } /// /// 结算日期(年月) /// [Description("结算日期(年月)")] [JsonProperty("balYearMonth")] public string BalYearMonth { get { return balYearMonth; } set { balYearMonth = value; } } } }