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 { /// /// 数据库表STL_CONTROL_LOG所对应的实体类(生成工具:代码生成工具3.0) /// 作者:PC-20160918TFRG 时间:2019-05-14 /// public class StlControlLogEntity { /// /// GUID主键 /// private string controlId = ""; /// /// 日志开始时间(‘YYYYMMDDhhmm’) /// private string logsBeg = ""; /// /// 日志结束时间(‘YYYYMMDDhhmm’) /// private string logsEnd = ""; /// /// 电炉产线编码 /// private string efPlineCode = ""; /// /// 电炉产线描述 /// private string efPlineName = ""; /// /// 铸造产线编码 /// private string plineCode = ""; /// /// 铸造产线描述 /// private string plineName = ""; /// /// 投入物料编码 /// private string wlidIn = ""; /// /// 投入物料描述 /// private string wldescIn = ""; /// /// 产出物料编码 /// private string materialNo = ""; /// /// 产出物料描述 /// private string materialName = ""; /// /// 钢种代码 /// private string gradecode = ""; /// /// 钢种名称 /// private string gradename = ""; /// /// 成分标准索引号(内控) /// private string cic = ""; /// /// 出钢量 /// private decimal? mouldbalewgt = null; /// /// 生产班次 /// private string proBc = ""; /// /// 生产班组 /// private string proBz = ""; /// /// 生产分类(1正常、2停机) /// private string proType = ""; /// /// 停机分类 /// private string stopType = ""; /// /// 停机原因 /// private string stopReason = ""; /// /// 操作日期 /// private string userDate = ""; /// /// 操作人姓名 /// private string userName = ""; /// /// 停机小类 /// private string stopSmall = ""; /// /// 确认时间 /// private string confirmTime = ""; /// /// 确认人 /// private string confirmName = ""; /// /// 确认状态(1.确认,0.未确认) /// private string confirmFlag = ""; /// /// 备注 /// private string memo = ""; /// /// 结算日期(年月) /// private string balYearMonth = ""; /// /// 生产年月日 /// private string procDate = ""; /// /// 冶炼炉号(电炉号) /// private string stoveNo = ""; /// /// GUID主键 /// [Description("GUID主键")] [Nullable(false)] [DataLength(40)] public string ControlId { get { return controlId; } set { controlId = value; } } /// /// 日志开始时间(‘YYYYMMDDhhmm’) /// [Description("日志开始时间")] [Nullable(true)] [DataLength(12)] public string LogsBeg { get { return logsBeg; } set { logsBeg = value; } } /// /// 日志结束时间(‘YYYYMMDDhhmm’) /// [Description("日志结束时间")] [Nullable(true)] [DataLength(12)] public string LogsEnd { get { return logsEnd; } set { logsEnd = value; } } /// /// 电炉产线编码 /// [Description("电炉产线编码")] [Nullable(true)] [DataLength(20)] public string EfPlineCode { get { return efPlineCode; } set { efPlineCode = value; } } /// /// 电炉产线描述 /// [Description("电炉产线描述")] [Nullable(true)] [DataLength(100)] public string EfPlineName { get { return efPlineName; } set { efPlineName = value; } } /// /// 铸造产线编码 /// [Description("铸造产线编码")] [Nullable(true)] [DataLength(20)] public string PlineCode { get { return plineCode; } set { plineCode = value; } } /// /// 铸造产线描述 /// [Description("铸造产线描述")] [Nullable(true)] [DataLength(50)] public string PlineName { get { return plineName; } set { plineName = 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(40)] public string MaterialNo { get { return materialNo; } set { materialNo = value; } } /// /// 产出物料描述 /// [Description("产出物料描述")] [Nullable(true)] [DataLength(100)] public string MaterialName { get { return materialName; } set { materialName = 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(100)] public string Cic { get { return cic; } set { cic = value; } } /// /// 出钢量 /// [Description("出钢量")] [Nullable(true)] [DataLength(22)] public decimal? Mouldbalewgt { get { return mouldbalewgt; } set { mouldbalewgt = value; } } /// /// 生产班次 /// [Description("生产班次")] [Nullable(true)] [DataLength(1)] public string ProBc { get { return proBc; } set { proBc = value; } } /// /// 生产班组 /// [Description("生产班组")] [Nullable(true)] [DataLength(1)] public string ProBz { get { return proBz; } set { proBz = value; } } /// /// 生产分类(1正常、2停机) /// [Description("生产分类(1正常、2停机)")] [Nullable(true)] [DataLength(1)] public string ProType { get { return proType; } set { proType = value; } } /// /// 停机分类 /// [Description("停机分类")] [Nullable(true)] [DataLength(10)] public string StopType { get { return stopType; } set { stopType = value; } } /// /// 停机原因 /// [Description("停机原因")] [Nullable(true)] [DataLength(100)] public string StopReason { get { return stopReason; } set { stopReason = value; } } /// /// 操作日期 /// [Description("操作日期")] [Nullable(true)] public string UserDate { get { return userDate; } set { userDate = value; } } /// /// 操作人姓名 /// [Description("操作人姓名")] [Nullable(true)] [DataLength(20)] public string UserName { get { return userName; } set { userName = value; } } /// /// 停机小类 /// [Description("停机小类")] [Nullable(true)] [DataLength(10)] public string StopSmall { get { return stopSmall; } set { stopSmall = value; } } /// /// 确认时间 /// [Description("确认时间")] [Nullable(true)] public string ConfirmTime { get { return confirmTime; } set { confirmTime = value; } } /// /// 确认人 /// [Description("确认人")] [Nullable(true)] [DataLength(20)] public string ConfirmName { get { return confirmName; } set { confirmName = value; } } /// /// 确认状态(1.确认,0.未确认) /// [Description("确认状态(1.确认,0.未确认)")] [Nullable(true)] [DataLength(1)] public string ConfirmFlag { get { return confirmFlag; } set { confirmFlag = value; } } /// /// 备注 /// [Description("备注")] [Nullable(true)] [DataLength(200)] public string Memo { get { return memo; } set { memo = value; } } /// /// 结算日期(年月) /// [Description("结算日期(年月)")] [Nullable(true)] [DataLength(6)] public string BalYearMonth { get { return balYearMonth; } set { balYearMonth = value; } } /// /// 生产年月日 /// [Description("生产年月日")] [Nullable(true)] [DataLength(8)] public string ProcDate { get { return procDate; } set { procDate = value; } } /// /// 冶炼炉号(电炉号) /// [Description("冶炼炉号(电炉号)")] [Nullable(true)] [DataLength(20)] public string StoveNo { get { return stoveNo; } set { stoveNo = value; } } /// /// 停机分类 /// private string stopSmallm = ""; /// ///停机分类 /// [Description("停机小类")] [Nullable(true)] [DataLength(10)] public string StopSmallm { get { return stopSmallm; } set { stopSmallm = value; } } /// /// 停机原因 /// private string stopReasonm = ""; /// ///停机原因 /// /// [Description("停机原因")] [Nullable(true)] [DataLength(10)] public string StopReasonm { get { return stopReasonm; } set { stopReasonm = value; } } /// /// 生产时长 /// private double? sjc; /// /// 生产时长 /// /// [Description("生产时长(分钟)")] public double? Sjc { get { return sjc; } set { sjc = value; } } /// /// 停机时长 /// private double? tjsc; /// /// 停机时长 /// [Description("停机时长(分钟)")] public double? Tjsc { get { return tjsc; } set { tjsc = value; } } /// /// 生产周期 /// private double? sczq; /// /// 生产周期 /// [Description("生产周期(分钟)")] public double? Sczq { get { return sczq; } set { sczq = value; } } } }