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.SaleOrder { /// /// 数据库表SLM_ORD_DESIGN_MSC_PL_GZ所对应的实体类(生成工具:代码生成工具3.0) /// 作者:Chenxi-PC2 时间:2015-09-17 /// public class SlmOrdDesignMscPlGzEntity { /// /// DESGIN_KEY /// private string desginKey = ""; /// /// 全程产线号(COM_MSC_BACKLOG) /// private string mscPline = ""; /// /// 全程途径码 /// private string wholeBacklog = ""; /// /// 全程途径描述 /// private string wholeBacklogDesc = ""; /// /// 钢种代码(COM_MSC_GRADE) /// private string gradecode = ""; /// /// 钢种名称 /// private string gradename = ""; /// /// 钢种分类代码 /// private string assortmentCode = ""; /// /// 钢种分类名称 /// private string assortmentName = ""; /// /// DESGIN_KEY /// [Description("DESGIN_KEY")] [Nullable(false)] [DataLength(40)] public string DesginKey { get { return desginKey; } set { desginKey = value; } } /// /// 全程产线号(COM_MSC_BACKLOG) /// [Description("全程产线号")] [Nullable(false)] [DataLength(6)] public string MscPline { get { return mscPline; } set { mscPline = value; } } /// /// 全程途径码 /// [Description("全程途径码")] [Nullable(true)] [DataLength(100)] public string WholeBacklog { get { return wholeBacklog; } set { wholeBacklog = value; } } /// /// 全程途径描述 /// [Description("全程途径描述")] [Nullable(true)] [DataLength(500)] public string WholeBacklogDesc { get { return wholeBacklogDesc; } set { wholeBacklogDesc = value; } } /// /// 钢种代码(COM_MSC_GRADE) /// [Description("钢种代码")] [Nullable(false)] [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(10)] public string AssortmentCode { get { return assortmentCode; } set { assortmentCode = value; } } /// /// 钢种分类名称 /// [Description("钢种分类")] [Nullable(true)] [DataLength(200)] public string AssortmentName { get { return assortmentName; } set { assortmentName = value; } } } }