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所对应的实体类(生成工具:代码生成工具3.0) /// 作者:Chenxi-PC2 时间:2015-09-16 /// public class CraftOrdDesignMscPlEntity { /// /// DESGIN_KEY /// private string desginKey = ""; /// /// 全程产线号(COM_MSC_BACKLOG) /// private string mscPline = ""; /// /// 全程途径码 /// private string wholeBacklog = ""; /// /// 全程途径描述 /// private string wholeBacklogDesc = ""; /// /// 是否设定制程(0:否;1:是) /// private string setFl = ""; /// /// 警告信息 /// private string warnDesc = ""; /// /// 合同号 /// private string ordLnPk = ""; /// /// 描述 /// private string setFlDesc = ""; /// /// 设定制程 /// [Description("设定制程")] public string SetFlDesc { get { return setFlDesc; } set { setFlDesc = value; } } /// /// 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; } } /// /// 是否设定制程(0:否;1:是) /// [Description("是否设定制程")] [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; } } } }