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_STD_GIC所对应的实体类(生成工具:代码生成工具3.0) /// 作者:Chenxi-PC2 时间:2015-09-17 /// public class SlmOrdDesignStdGicEntity { /// /// DESGIN_KEY /// private string desginKey = ""; /// /// 加工索引号 /// private string gic = ""; /// /// 协议或Alpha代码(用途码) /// private string useCode = ""; /// /// 协议或Alpha描述(用途描述) /// private string useDesc = ""; /// /// 是否特殊要求(0:交付标准;1:特殊要求;2:内控标准) /// private string speclFl = ""; /// /// 序号 /// private decimal? xh = null; /// /// 工序代码 /// private string processCdoe = ""; /// /// 工序名称 /// private string processDesc = ""; /// /// 二级工序代码 /// private string processCdoeC = ""; /// /// 二级工序名称 /// private string processDescC = ""; /// /// 工序点代码(工序='加工线' and工序点类型='403208') /// private string stationCode = ""; /// /// 工序点名称 /// private string stationDesc = ""; /// /// 值(文本型的) /// private string valueText = ""; /// /// 值(数值型的) /// private decimal? valueNum = null; /// /// 值(对值的追加说明) /// private string valueMemo = ""; /// /// 分组索引号(同一分组的为多选一项) /// private string groupSeq = ""; /// /// 备注 /// private string memo = ""; /// /// DESGIN_KEY /// [Description("DESGIN_KEY")] [Nullable(false)] [DataLength(40)] public string DesginKey { get { return desginKey; } set { desginKey = value; } } /// /// 加工索引号 /// [Description("加工索引号")] [Nullable(false)] [DataLength(20)] public string Gic { get { return gic; } set { gic = value; } } /// /// 协议或Alpha代码(用途码) /// [Description("用途码")] [Nullable(true)] [DataLength(20)] public string UseCode { get { return useCode; } set { useCode = value; } } /// /// 协议或Alpha描述(用途描述) /// [Description("用途描述")] [Nullable(true)] [DataLength(100)] public string UseDesc { get { return useDesc; } set { useDesc = value; } } /// /// 是否特殊要求(0:交付标准;1:特殊要求;2:内控标准) /// [Description("是否特殊要求")] [Nullable(false)] [DataLength(1)] public string SpeclFl { get { return speclFl; } set { speclFl = value; } } /// /// 序号 /// [Description("序号")] [Nullable(false)] [DataLength(22)] public decimal? Xh { get { return xh; } set { xh = value; } } /// /// 工序代码 /// [Description("工序代码")] [Nullable(true)] [DataLength(8)] public string ProcessCdoe { get { return processCdoe; } set { processCdoe = value; } } /// /// 工序名称 /// [Description("工序名称")] [Nullable(true)] [DataLength(50)] public string ProcessDesc { get { return processDesc; } set { processDesc = value; } } /// /// 二级工序代码 /// [Description("二级工序代码")] [Nullable(true)] [DataLength(8)] public string ProcessCdoeC { get { return processCdoeC; } set { processCdoeC = value; } } /// /// 二级工序名称 /// [Description("二级工序名称")] [Nullable(true)] [DataLength(50)] public string ProcessDescC { get { return processDescC; } set { processDescC = value; } } /// /// 工序点代码(工序='加工线' and工序点类型='403208') /// [Description("工序点代码")] [Nullable(true)] [DataLength(10)] public string StationCode { get { return stationCode; } set { stationCode = value; } } /// /// 工序点名称 /// [Description("工序点名称")] [Nullable(true)] [DataLength(50)] public string StationDesc { get { return stationDesc; } set { stationDesc = value; } } /// /// 值(文本型的) /// [Description("值(文本型的)")] [Nullable(true)] [DataLength(200)] public string ValueText { get { return valueText; } set { valueText = value; } } /// /// 值(数值型的) /// [Description("值(数值型的)")] [Nullable(true)] [DataLength(22)] public decimal? ValueNum { get { return valueNum; } set { valueNum = value; } } /// /// 值(对值的追加说明) /// [Description("值(对值的追加说明)")] [Nullable(true)] [DataLength(500)] public string ValueMemo { get { return valueMemo; } set { valueMemo = value; } } /// /// 分组索引号(同一分组的为多选一项) /// [Description("分组索引号")] [Nullable(true)] [DataLength(6)] public string GroupSeq { get { return groupSeq; } set { groupSeq = value; } } /// /// 备注 /// [Description("备注")] [Nullable(true)] [DataLength(500)] public string Memo { get { return memo; } set { memo = value; } } } }