using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using Core.Mes.Client.Comm.Attribute; namespace Core.StlMes.Client.PlnSaleOrd.炼钢计划.entity { /// /// 数据库表PLN_BASE_PLINE_LG所对应的实体类(生成工具:代码生成工具3.0) /// 作者:USER-20150714WV 时间:2016-06-15 /// public class PlnBasePlineLgEntity { /// /// 产线代码 /// private string plineCode = ""; /// /// 产线描述 /// private string plineName = ""; /// /// 工序代码 /// private string processCode = ""; /// /// 工序描述 /// private string processDesc = ""; /// /// 电炉寿命(炉) /// private decimal? efMaxLife = null; /// /// 标准出钢量 /// private decimal? stdOutWt = null; /// /// 电炉留余 /// private decimal? efWtLeft = null; /// /// 出钢量上限(前50炉95%) /// private decimal? outWtMax = null; /// /// 出钢量下限 /// private decimal? outWtMin = null; /// /// 当前已排炉龄 /// private decimal? efAgeNow = null; /// /// 电炉状态重置人 /// private string efResetMan = ""; /// /// 电炉状态重置时间 /// private string efResetTime = ""; /// /// 排产简称 /// private string scheduleCode = ""; /// /// 创建时间 /// private string creatTime = ""; /// /// 创建人 /// private string createName = ""; /// /// 产线代码 /// [Description("产线代码")] [Nullable(false)] [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(20)] public string ProcessCode { get { return processCode; } set { processCode = value; } } /// /// 工序描述 /// [Description("工序描述")] [Nullable(true)] [DataLength(100)] public string ProcessDesc { get { return processDesc; } set { processDesc = value; } } /// /// 电炉寿命(炉) /// [Description("电炉寿命(炉)")] [Nullable(true)] [DataLength(6)] public decimal? EfMaxLife { get { return efMaxLife; } set { efMaxLife = value; } } /// /// 标准出钢量 /// [Description("标准出钢量")] [Nullable(true)] [DataLength(6)] public decimal? StdOutWt { get { return stdOutWt; } set { stdOutWt = value; } } /// /// 电炉留余 /// [Description("电炉留余")] [Nullable(true)] [DataLength(6)] public decimal? EfWtLeft { get { return efWtLeft; } set { efWtLeft = value; } } /// /// 出钢量上限(前50炉95%) /// [Description("出钢量上限")] [Nullable(true)] [DataLength(6)] public decimal? OutWtMax { get { return outWtMax; } set { outWtMax = value; } } /// /// 出钢量下限 /// [Description("出钢量下限")] [Nullable(true)] [DataLength(6)] public decimal? OutWtMin { get { return outWtMin; } set { outWtMin = value; } } /// /// 当前已排炉龄 /// [Description("当前已排炉龄")] [Nullable(true)] [DataLength(6)] public decimal? EfAgeNow { get { return efAgeNow; } set { efAgeNow = value; } } /// /// 电炉状态重置人 /// [Description("状态重置人")] [Nullable(true)] [DataLength(20)] public string EfResetMan { get { return efResetMan; } set { efResetMan = value; } } /// /// 电炉状态重置时间 /// [Description("状态重置时间")] [Nullable(true)] public string EfResetTime { get { return efResetTime; } set { efResetTime = value; } } /// /// 排产简称 /// [Description("排产简称")] [Nullable(true)] [DataLength(10)] public string ScheduleCode { get { return scheduleCode; } set { scheduleCode = value; } } /// /// 创建时间 /// [Description("创建时间")] [Nullable(true)] public string CreatTime { get { return creatTime; } set { creatTime = value; } } /// /// 创建人 /// [Description("创建人")] [Nullable(true)] [DataLength(20)] public string CreateName { get { return createName; } set { createName = value; } } } }