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_LZ_SPEC_CUT所对应的实体类(生成工具:代码生成工具3.0) /// 作者:USER-20150714WV 时间:2016-07-20 /// public class PlnBaseLzSpecCutEntity { /// /// 切头尾参数编号 /// private string cutParaId = ""; /// /// 连铸坯直径 /// private decimal? diameterLz = null; /// /// 首炉切头长(m) /// private decimal? cutLenBegin = null; /// /// 不换中包切尾长(m) /// private decimal? cutLenEndUnch = null; /// /// 换中包切尾长(m) /// private decimal? cutLenEndCh = null; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 修改人 /// private string updateName = ""; /// /// 修改时间 /// private string updateTime = ""; /// /// 切头尾参数编号 /// [Description("切头尾参数编号")] [Nullable(false)] [DataLength(20)] public string CutParaId { get { return cutParaId; } set { cutParaId = value; } } /// /// 连铸坯直径 /// [Description("连铸坯直径")] [Nullable(true)] [DataLength(10)] public decimal? DiameterLz { get { return diameterLz; } set { diameterLz = value; } } /// /// 首炉切头长(m) /// [Description("首炉切头长(m)")] [Nullable(true)] [DataLength(5)] public decimal? CutLenBegin { get { return cutLenBegin; } set { cutLenBegin = value; } } /// /// 不换中包切尾长(m) /// [Description("不换中包切尾长(m)")] [Nullable(true)] [DataLength(5)] public decimal? CutLenEndUnch { get { return cutLenEndUnch; } set { cutLenEndUnch = value; } } /// /// 换中包切尾长(m) /// [Description("换中包切尾长(m)")] [Nullable(true)] [DataLength(5)] public decimal? CutLenEndCh { get { return cutLenEndCh; } set { cutLenEndCh = value; } } /// /// 创建人 /// [Description("创建人")] [Nullable(true)] [DataLength(20)] public string CreateName { get { return createName; } set { createName = value; } } /// /// 创建时间 /// [Description("创建时间")] [Nullable(true)] public string CreateTime { get { return createTime; } set { createTime = value; } } /// /// 修改人 /// [Description("修改人")] [Nullable(true)] [DataLength(20)] public string UpdateName { get { return updateName; } set { updateName = value; } } /// /// 修改时间 /// [Description("修改时间")] [Nullable(true)] public string UpdateTime { get { return updateTime; } set { updateTime = value; } } } }