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_PIC_DIFF所对应的实体类(生成工具:代码生成工具3.0) /// 作者:DESKTOP-DG6B81Q 时间:2015-12-16 /// public class SlmOrdDesignPicDiffEntity { /// /// 质量主键 /// private string designKey = ""; /// /// 合同PK /// private string ordPk = ""; /// /// 合同行PK /// private string ordLnPk = ""; /// /// 项目名称 /// private string itemName = ""; /// /// 标准范围下限符号(标) /// private string stdminSign = ""; /// /// 标准范围下限(标) /// private string stdmin = ""; /// /// 标准范围上限符号(标) /// private string stdmaxSign = ""; /// /// 标准范围上限(标) /// private string stdmax = ""; /// /// 标准范围下限符号(客) /// private string stdminSign1 = ""; /// /// 项目代码 /// private string itemCode = ""; /// /// 标准范围下限(客) /// private string stdmin1 = ""; /// /// 标准范围上限符号(客) /// private string stdmaxSign1 = ""; /// /// 标准范围上限(客) /// private string stdmax1 = ""; /// /// 上限差值 /// private string differentValueMax = ""; /// /// 索引号(标) /// private string pic = ""; /// /// 索引号(客) /// private string pic1 = ""; /// /// 下限差值 /// private string differentValueMin = ""; /// /// 质量主键 /// [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 ItemName { get { return itemName; } set { itemName = value; } } /// /// 标准范围下限符号(标) /// [Description("下限符号")] [Nullable(true)] [DataLength(2)] public string StdminSign { get { return stdminSign; } set { stdminSign = value; } } /// /// 标准范围下限(标) /// [Description("下限")] [Nullable(true)] [DataLength(100)] public string Stdmin { get { return stdmin; } set { stdmin = value; } } /// /// 标准范围上限符号(标) /// [Description("上限符号")] [Nullable(true)] [DataLength(2)] public string StdmaxSign { get { return stdmaxSign; } set { stdmaxSign = value; } } /// /// 标准范围上限(标) /// [Description("上限")] [Nullable(true)] [DataLength(100)] public string Stdmax { get { return stdmax; } set { stdmax = value; } } /// /// 标准范围下限符号(客) /// [Description("下限符号")] [Nullable(true)] [DataLength(2)] public string StdminSign1 { get { return stdminSign1; } set { stdminSign1 = value; } } /// /// 项目代码 /// [Description("项目代码")] [Nullable(true)] [DataLength(100)] public string ItemCode { get { return itemCode; } set { itemCode = value; } } /// /// 标准范围下限(客) /// [Description("下限")] [Nullable(true)] [DataLength(100)] public string Stdmin1 { get { return stdmin1; } set { stdmin1 = value; } } /// /// 标准范围上限符号(客) /// [Description("上限符号")] [Nullable(true)] [DataLength(2)] public string StdmaxSign1 { get { return stdmaxSign1; } set { stdmaxSign1 = value; } } /// /// 标准范围上限(客) /// [Description("上限")] [Nullable(true)] [DataLength(100)] public string Stdmax1 { get { return stdmax1; } set { stdmax1 = value; } } /// /// 上限差值 /// [Description("上限差值")] [Nullable(true)] [DataLength(100)] public string DifferentValueMax { get { return differentValueMax; } set { differentValueMax = value; } } /// /// 索引号(标) /// [Description("索引号(标)")] [Nullable(true)] [DataLength(12)] public string Pic { get { return pic; } set { pic = value; } } /// /// 索引号(客) /// [Description("索引号(客)")] [Nullable(true)] [DataLength(12)] public string Pic1 { get { return pic1; } set { pic1 = value; } } /// /// 下限差值 /// [Description("下限差值")] [Nullable(true)] [DataLength(100)] public string DifferentValueMin { get { return differentValueMin; } set { differentValueMin = value; } } } }