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.PlnSaleOrd.Entity {/// /// 数据库表SLM_ORDER_LEN所对应的实体类(生成工具:代码生成工具3.0) /// 作者:PC-20160925CXYF 时间:2017-05-26 /// public class SlmOrderLenEntity { /// /// 长度编码 /// private string lenNo = ""; /// /// 长度描述 /// private string lenDesc = ""; /// /// 长度分类 /// private string lenTyp = ""; /// /// 长度单位 /// private string lenUnit = ""; /// /// 下限 /// private decimal? lenMin = null; /// /// 上限 /// private decimal? lenMax = null; /// /// 短尺率(%) /// private decimal? shrtLenRato = null; /// /// 短尺最短 /// private decimal? shortest = null; /// /// 长尺率(%) /// private decimal? longLenRato = null; /// /// 长尺最长 /// private decimal? longest = null; /// /// 短尺随炉 /// private string shrtStove = ""; /// /// 平均长度大于 /// private decimal? avgLenMin = null; /// /// 最长最短差小于 /// private decimal? difrncLenMax = null; /// /// 单倍尺长 /// private decimal? siglLen = null; /// /// 成品公差 /// private decimal? endlenSpecstd = null; /// /// 使用次数 /// private string useTime = ""; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 修改人 /// private string updateName = ""; /// /// 修改时间 /// private string updateTime = ""; /// /// 删除人 /// private string deleteName = ""; /// /// 删除时间 /// private string deleteTime = ""; /// /// 长度编码 /// [Description("长度编码")] [Nullable(false)] [DataLength(20)] public string LenNo { get { return lenNo; } set { lenNo = value; } } /// /// 长度描述 /// [Description("长度描述")] [Nullable(false)] [DataLength(200)] public string LenDesc { get { return lenDesc; } set { lenDesc = value; } } /// /// 长度分类 /// [Description("长度分类")] [Nullable(false)] [DataLength(20)] public string LenTyp { get { return lenTyp; } set { lenTyp = value; } } /// /// 长度单位 /// [Description("长度单位")] [Nullable(false)] [DataLength(20)] public string LenUnit { get { return lenUnit; } set { lenUnit = value; } } /// /// 下限 /// [Description("下限")] [Nullable(false)] [DataLength(5)] public decimal? LenMin { get { return lenMin; } set { lenMin = value; } } /// /// 上限 /// [Description("上限")] [Nullable(false)] [DataLength(5)] public decimal? LenMax { get { return lenMax; } set { lenMax = value; } } /// /// 短尺率(%) /// [Description("短尺率(%)")] [Nullable(true)] [DataLength(2)] public decimal? ShrtLenRato { get { return shrtLenRato; } set { shrtLenRato = value; } } /// /// 短尺最短 /// [Description("短尺最短")] [Nullable(true)] [DataLength(5)] public decimal? Shortest { get { return shortest; } set { shortest = value; } } /// /// 长尺率(%) /// [Description("长尺率(%)")] [Nullable(true)] [DataLength(2)] public decimal? LongLenRato { get { return longLenRato; } set { longLenRato = value; } } /// /// 长尺最长 /// [Description("长尺最长")] [Nullable(true)] [DataLength(5)] public decimal? Longest { get { return longest; } set { longest = value; } } /// /// 短尺随炉 /// [Description("短尺随炉")] [Nullable(true)] [DataLength(20)] public string ShrtStove { get { return shrtStove; } set { shrtStove = value; } } /// /// 平均长度大于 /// [Description("平均长度大于")] [Nullable(true)] [DataLength(5)] public decimal? AvgLenMin { get { return avgLenMin; } set { avgLenMin = value; } } /// /// 最长最短差小于 /// [Description("最长最短差小于")] [Nullable(true)] [DataLength(5)] public decimal? DifrncLenMax { get { return difrncLenMax; } set { difrncLenMax = value; } } /// /// 单倍尺长 /// [Description("单倍尺长")] [Nullable(true)] [DataLength(6)] public decimal? SiglLen { get { return siglLen; } set { siglLen = value; } } /// /// 成品公差 /// [Description("成品公差")] [Nullable(true)] [DataLength(6)] public decimal? EndlenSpecstd { get { return endlenSpecstd; } set { endlenSpecstd = value; } } /// /// 使用次数 /// [Description("使用次数")] [Nullable(true)] [DataLength(20)] public string UseTime { get { return useTime; } set { useTime = 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; } } /// /// 删除人 /// [Description("删除人")] [Nullable(true)] [DataLength(20)] public string DeleteName { get { return deleteName; } set { deleteName = value; } } /// /// 删除时间 /// [Description("删除时间")] [Nullable(true)] public string DeleteTime { get { return deleteTime; } set { deleteTime = value; } } } }