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.ZGMil.Entity { /// /// 数据库表MIL_FURNACES_GROUP所对应的实体类(生成工具:代码生成工具3.0) /// 作者:PC-20160918TFRG 时间:2016-12-27 /// public class MilFurnacesGroupEntity { private List milFurnacesReslutDetiaEntity = null; public List MilFurnacesReslutDetiaEntity { get { return milFurnacesReslutDetiaEntity; } set { milFurnacesReslutDetiaEntity = value; } } /// /// 组批炉号 /// private string zpJudgeStoveNo = ""; /// /// 组批批号 /// private string zpLotNo = ""; /// /// 支数 /// private decimal? zpCount = null; /// /// 判定标准 /// private string zpStandrad = ""; /// /// 组批钢级 /// private string zpSteel = ""; /// /// 组批钢种 /// private string zpGrade = ""; /// /// 组批长度 /// private decimal? zpLength = null; /// /// 组批重量 /// private decimal? zpHeight = null; /// /// 组批长度范围 /// private string zpLengthRange = ""; /// /// 组批等级 /// private decimal? zpLevel = null; /// /// 组批规格 /// private string zpSize = ""; /// /// 组批时间 /// private string zpTime = ""; /// /// 备注 /// private string remark = ""; /// /// 操作人 /// private string colUser = ""; /// /// 操作班次 /// private string colShift = ""; /// /// 操作班组 /// private string colGroup = ""; /// /// 外径 /// private decimal? diameter = null; /// /// 壁厚 /// private decimal? thickness = null; /// /// 品种 /// private string varieties = ""; /// /// 厂线代码 /// private string plineCode = ""; /// /// 机组 /// private string plineName = ""; [Description("机组")] [Nullable(true)] [DataLength(20)] public string PlineName { get { return plineName; } set { plineName = value; } } /// /// 扣型 /// private string modelDesc = ""; /// /// 操作ID(年月日+5位流水) /// private string operationId = ""; /// /// 组批炉号 /// [Description("组批炉号")] [Nullable(false)] [DataLength(20)] public string ZpJudgeStoveNo { get { return zpJudgeStoveNo; } set { zpJudgeStoveNo = value; } } /// /// 组批批号 /// [Description("组批批号")] [Nullable(true)] [DataLength(20)] public string ZpLotNo { get { return zpLotNo; } set { zpLotNo = value; } } /// /// 支数 /// [Description("支数")] [Nullable(true)] [DataLength(6)] public decimal? ZpCount { get { return zpCount; } set { zpCount = value; } } /// /// 判定标准 /// [Description("判定标准")] [Nullable(true)] [DataLength(100)] public string ZpStandrad { get { return zpStandrad; } set { zpStandrad = value; } } /// /// 组批钢级 /// [Description("组批钢级")] [Nullable(true)] [DataLength(20)] public string ZpSteel { get { return zpSteel; } set { zpSteel = value; } } /// /// 组批钢种 /// [Description("组批钢种")] [Nullable(true)] [DataLength(20)] public string ZpGrade { get { return zpGrade; } set { zpGrade = value; } } /// /// 组批长度 /// [Description("组批长度")] [Nullable(true)] [DataLength(8)] public decimal? ZpLength { get { return zpLength; } set { zpLength = value; } } /// /// 组批重量 /// [Description("组批重量")] [Nullable(true)] [DataLength(8)] public decimal? ZpHeight { get { return zpHeight; } set { zpHeight = value; } } /// /// 组批长度范围 /// [Description("组批长度范围")] [Nullable(true)] [DataLength(20)] public string ZpLengthRange { get { return zpLengthRange; } set { zpLengthRange = value; } } /// /// 组批等级 /// [Description("组批等级")] [Nullable(true)] [DataLength(1)] public decimal? ZpLevel { get { return zpLevel; } set { zpLevel = value; } } /// /// 组批规格 /// [Description("组批规格")] [Nullable(true)] [DataLength(20)] public string ZpSize { get { return zpSize; } set { zpSize = value; } } /// /// 组批时间 /// [Description("组批时间")] [Nullable(true)] public string ZpTime { get { return zpTime; } set { zpTime = value; } } /// /// 备注 /// [Description("备注")] [Nullable(true)] [DataLength(100)] public string Remark { get { return remark; } set { remark = value; } } /// /// 操作人 /// [Description("操作人")] [Nullable(true)] [DataLength(20)] public string ColUser { get { return colUser; } set { colUser = value; } } /// /// 操作班次 /// [Description("操作班次")] [Nullable(true)] [DataLength(1)] public string ColShift { get { return colShift; } set { colShift = value; } } /// /// 操作班组 /// [Description("操作班组")] [Nullable(true)] [DataLength(1)] public string ColGroup { get { return colGroup; } set { colGroup = value; } } /// /// 外径 /// [Description("外径")] [Nullable(true)] [DataLength(8)] public decimal? Diameter { get { return diameter; } set { diameter = value; } } /// /// 壁厚 /// [Description("壁厚")] [Nullable(true)] [DataLength(8)] public decimal? Thickness { get { return thickness; } set { thickness = value; } } /// /// 品种 /// [Description("品种")] [Nullable(true)] [DataLength(20)] public string Varieties { get { return varieties; } set { varieties = value; } } /// /// 厂线代码 /// [Description("厂线代码")] [Nullable(true)] [DataLength(20)] public string PlineCode { get { return plineCode; } set { plineCode = value; } } /// /// 扣型 /// [Description("扣型")] [Nullable(true)] [DataLength(100)] public string ModelDesc { get { return modelDesc; } set { modelDesc = value; } } /// /// 操作ID(年月日+5位流水) /// [Description("操作ID(年月日+5位流水)")] [Nullable(false)] [DataLength(20)] public string OperationId { get { return operationId; } set { operationId = value; } } } }