using Core.Mes.Client.Comm.Attribute; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; namespace Core.StlMes.Client.SaleOrder {/// /// 数据库表SLM_ORD_DESIGN_GIC_DIFF所对应的实体类(生成工具:代码生成工具3.0) /// 作者:DESKTOP-DG6B81Q 时间:2015-12-26 /// public class SlmOrdDesignGicDiffEntity { /// /// 质量主键 /// private string designKey = ""; /// /// 合同PK /// private string ordPk = ""; /// /// 合同行PK /// private string ordLnPk = ""; /// /// 工序代码 /// private string processCode = ""; /// /// 工序名称 /// private string processName = ""; /// /// 工序点代码 /// private string stationCode = ""; /// /// 工序点名称 /// private string stationName = ""; /// /// 文本值(标) /// private string valueText = ""; /// /// 数值(标) /// private string valueNum = ""; /// /// 文本值(客) /// private string valueText1 = ""; /// /// 数值(客) /// private string valueNum1 = ""; /// /// 索引号(标) /// private string gic = ""; /// /// 索引号(客) /// private string gic1 = ""; /// /// 差值 /// private string diffValue = ""; /// /// 质量主键 /// [Description("质量主键")] [Nullable(false)] [DataLength(40)] public string DesignKey { get { return designKey; } set { designKey = value; } } /// /// 合同PK /// [Description("合同PK")] [Nullable(false)] [DataLength(40)] public string OrdPk { get { return ordPk; } set { ordPk = value; } } /// /// 合同行PK /// [Description("合同行PK")] [Nullable(false)] [DataLength(40)] public string OrdLnPk { get { return ordLnPk; } set { ordLnPk = value; } } /// /// 工序代码 /// [Description("工序代码")] [Nullable(false)] [DataLength(200)] public string ProcessCode { get { return processCode; } set { processCode = value; } } /// /// 工序名称 /// [Description("工序名称")] [Nullable(true)] [DataLength(2)] public string ProcessName { get { return processName; } set { processName = value; } } /// /// 工序点代码 /// [Description("工序点代码")] [Nullable(true)] [DataLength(100)] public string StationCode { get { return stationCode; } set { stationCode = value; } } /// /// 工序点名称 /// [Description("工序点名称")] [Nullable(true)] [DataLength(2)] public string StationName { get { return stationName; } set { stationName = value; } } /// /// 文本值(标) /// [Description("文本值")] [Nullable(true)] [DataLength(100)] public string ValueText { get { return valueText; } set { valueText = value; } } /// /// 数值(标) /// [Description("数值")] [Nullable(true)] [DataLength(2)] public string ValueNum { get { return valueNum; } set { valueNum = value; } } /// /// 文本值(客) /// [Description("文本值")] [Nullable(true)] [DataLength(100)] public string ValueText1 { get { return valueText1; } set { valueText1 = value; } } /// /// 数值(客) /// [Description("数值")] [Nullable(true)] [DataLength(100)] public string ValueNum1 { get { return valueNum1; } set { valueNum1 = value; } } /// /// 索引号(标) /// [Description("索引号")] [Nullable(true)] [DataLength(20)] public string Gic { get { return gic; } set { gic = value; } } /// /// 索引号(客) /// [Description("索引号(客)")] [Nullable(true)] [DataLength(20)] public string Gic1 { get { return gic1; } set { gic1 = value; } } /// /// 差值 /// [Description("差值")] [Nullable(true)] [DataLength(20)] public string DiffValue { get { return diffValue; } set { diffValue = value; } } } }