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_JG_PL所对应的实体类(生成工具:代码生成工具3.0) /// 作者:Chenxi-PC2 时间:2015-09-22 /// public class CraftOrdDesignMscJgPlEntity { /// /// DESGIN_KEY /// private string desginKey = ""; /// /// 接箍码(COM_MSC_R_JG) /// private string codeJg = ""; /// /// 全程产线号(COM_MSC_BACKLOG) /// private string mscPline = ""; /// /// 全程途径码 /// private string wholeBacklog = ""; /// /// 全程途径描述 /// private string wholeBacklogDesc = ""; /// /// 是否设定制程(0:否;1:是) /// private string setFl = ""; /// /// 警告信息 /// private string warnDesc = ""; /// /// 合同号 /// private string ordLnPk = ""; /// /// DESGIN_KEY /// [Description("DESGIN_KEY")] [Nullable(false)] [DataLength(40)] public string DesginKey { get { return desginKey; } set { desginKey = value; } } /// /// 接箍码(COM_MSC_R_JG) /// [Description("接箍码(COM_MSC_R_JG)")] [Nullable(false)] [DataLength(7)] public string CodeJg { get { return codeJg; } set { codeJg = value; } } /// /// 全程产线号(COM_MSC_BACKLOG) /// [Description("全程产线号(COM_MSC_BACKLOG)")] [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; } } /// /// 是否设定制程(0:否;1:是) /// [Description("是否设定制程(0:否;1:是)")] [Nullable(true)] [DataLength(1)] public string SetFl { get { return setFl; } set { setFl = value; } } /// /// 警告信息 /// [Description("警告信息")] [Nullable(true)] [DataLength(100)] public string WarnDesc { get { return warnDesc; } set { warnDesc = value; } } /// /// 合同号 /// [Description("合同号")] [Nullable(true)] [DataLength(40)] public string OrdLnPk { get { return ordLnPk; } set { ordLnPk = value; } } } }