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 { /// /// 制程 /// public class CraftOrdDesignMscPlEntity { private string craftNo; [Description("工艺文件号")] public string CraftNo { get { return craftNo; } set { craftNo = value; } } /// /// 工艺序号 /// private string craftSeq = ""; /// /// 工艺序号 /// [Description("工艺序号")] [Nullable(true)] [DataLength(5)] public string CraftSeq { get { return craftSeq; } set { craftSeq = value; } } /// /// 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 validflag = ""; /// /// 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; } } /// /// 有效标志 /// [Description("有效标志")] [Nullable(true)] [DataLength(1)] public string Validflag { get { return validflag; } set { validflag = value; } } } }