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_STI所对应的实体类(生成工具:代码生成工具3.0) /// 作者:Chenxi-PC2 时间:2015-09-22 /// public class CraftOrdDesignMscJgPlStiEntity { /// /// DESGIN_KEY /// private string desginKey = ""; /// /// 接箍码(COM_MSC_R_JG) /// private string codeJg = ""; /// /// 全程产线号(COM_MSC_BACKLOG) /// private string mscPline = ""; /// /// 全程途径码 /// private string wholeBacklog = ""; /// /// 全程途径描述 /// private string wholeBacklogDesc = ""; /// /// 全程工序顺序号(COM_MSC_PROCESS) /// private decimal? backlogSeq = null; /// /// 工序代码(COM_MSC_PROCESS) /// private string processCode = ""; /// /// 工序名称(COM_MSC_PROCESS) /// private string processDesc = ""; /// /// 同工序流水号 /// private decimal? processSeq = null; /// /// 二级工序代码(COM_MSC_PROCESS) /// private string processCodeC = ""; /// /// 二级工序名称(COM_MSC_PROCESS) /// private string processDescC = ""; /// /// 工序点顺序号(COM_MSC_STATION) /// private decimal? stationId = null; /// /// 工序点代码(COM_MSC_STATION) /// private string stationCode = ""; /// /// 工序点名称(COM_MSC_STATION) /// private string stationDesc = ""; /// /// 工序点类型(验验类、判定类、工艺类...)(COM_MSC_STATION) /// private string stationType = ""; /// /// DESGIN_KEY /// [Description("DESGIN_KEY")] [Nullable(false)] [DataLength(40)] public string DesginKey { get { return desginKey; } set { desginKey = value; } } /// /// 接箍码(COM_MSC_R_JG) /// [Description("接箍码")] [Nullable(false)] [DataLength(7)] public string CodeJg { get { return codeJg; } set { codeJg = value; } } /// /// 全程产线号(COM_MSC_BACKLOG) /// [Description("全程产线号")] [Nullable(false)] [DataLength(6)] public string MscPline { get { return mscPline; } set { mscPline = value; } } /// /// 全程途径码 /// [Description("全程途径码")] [Nullable(false)] [DataLength(100)] public string WholeBacklog { get { return wholeBacklog; } set { wholeBacklog = value; } } /// /// 全程途径描述 /// [Description("全程途径描述")] [Nullable(false)] [DataLength(500)] public string WholeBacklogDesc { get { return wholeBacklogDesc; } set { wholeBacklogDesc = value; } } /// /// 全程工序顺序号(COM_MSC_PROCESS) /// [Description("全程工序顺序号")] [Nullable(false)] [DataLength(22)] public decimal? BacklogSeq { get { return backlogSeq; } set { backlogSeq = value; } } /// /// 工序代码(COM_MSC_PROCESS) /// [Description("工序代码")] [Nullable(false)] [DataLength(8)] public string ProcessCode { get { return processCode; } set { processCode = value; } } /// /// 工序名称(COM_MSC_PROCESS) /// [Description("工序名称")] [Nullable(false)] [DataLength(50)] public string ProcessDesc { get { return processDesc; } set { processDesc = value; } } /// /// 同工序流水号 /// [Description("同工序流水号")] [Nullable(false)] [DataLength(22)] public decimal? ProcessSeq { get { return processSeq; } set { processSeq = value; } } /// /// 二级工序代码(COM_MSC_PROCESS) /// [Description("二级工序代码")] [Nullable(false)] [DataLength(8)] public string ProcessCodeC { get { return processCodeC; } set { processCodeC = value; } } /// /// 二级工序名称(COM_MSC_PROCESS) /// [Description("二级工序名称")] [Nullable(true)] [DataLength(50)] public string ProcessDescC { get { return processDescC; } set { processDescC = value; } } /// /// 工序点顺序号(COM_MSC_STATION) /// [Description("工序点顺序号")] [Nullable(false)] [DataLength(22)] public decimal? StationId { get { return stationId; } set { stationId = value; } } /// /// 工序点代码(COM_MSC_STATION) /// [Description("工序点代码")] [Nullable(false)] [DataLength(10)] public string StationCode { get { return stationCode; } set { stationCode = value; } } /// /// 工序点名称(COM_MSC_STATION) /// [Description("工序点名称")] [Nullable(true)] [DataLength(50)] public string StationDesc { get { return stationDesc; } set { stationDesc = value; } } /// /// 工序点类型(验验类、判定类、工艺类...)(COM_MSC_STATION) /// [Description("工序点类型")] [Nullable(true)] [DataLength(20)] public string StationType { get { return stationType; } set { stationType = value; } } } }