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_PIC所对应的实体类(生成工具:代码生成工具3.0) /// 作者:Chenxi-PC2 时间:2015-09-17 /// public class SlmOrdDesignStdPicEntity { /// /// DESGIN_KEY /// private string desginKey = ""; /// /// 材质标准索引号 /// private string pic = ""; /// /// 协议或Alpha代码(用途码) /// private string useCode = ""; /// /// 协议或Alpha描述(用途描述) /// private string useDesc = ""; /// /// 是否特殊要求(0:交付标准;1:特殊要求;2:内控标准) /// private string speclFl = ""; /// /// 序号 /// private decimal? indexSeq = null; /// /// 材质检验项代码(大类) /// private string phyCodeMax = ""; /// /// 材质检验项名称(大类) /// private string phyNameMax = ""; /// /// 取样码 /// private string phyCodeMin = ""; /// /// 取样码描述 /// private string phyNameMin = ""; /// /// 材质检验项代码 /// private string phyCode = ""; /// /// 材质检验项名称 /// private string phyName = ""; /// /// 试验方向代码 /// private string itemCodeF = ""; /// /// 试验方向描述 /// private string itemNameF = ""; /// /// 试验温度代码 /// private string itemCodeW = ""; /// /// 试验温度描述 /// private string itemNameW = ""; /// /// 试样尺寸代码 /// private string itemCodeS = ""; /// /// 试样尺寸描述 /// private string itemNameS = ""; /// /// 分组索引号(同一分组的为多选一项) /// private string groupSeq = ""; /// /// 是否检验(1:是,0:否 ) /// private string ischeck = ""; /// /// 是否报出(1:是,0:否 ) /// private string isquote = ""; /// /// 报出的结果条数 /// private decimal? resultCount = null; /// /// 是否判定(1:是,0:否 ) /// private string isjudge = ""; /// /// 是否是复合标准项(1:是,0:不是)(标准值通过公式进行计算) /// private string phyType = ""; /// /// 复合标准公式 /// private string phyFormula = ""; /// /// 标准范围下限符号 /// private string stdminSign = ""; /// /// 标准范围下限 /// private string stdmin = ""; /// /// 标准范围上限符号 /// private string stdmaxSign = ""; /// /// 标准范围上限 /// private string stdmax = ""; /// /// 判定依据(A:最小值,B:最大值,C:平均值,D:逐项值判) /// private string judgeBasis = ""; /// /// 交货状态 /// private string deliverystate = ""; /// /// 扣型代码(集合) /// private string modelCode = ""; /// /// 扣型描述(集合) /// private string modelDesc = ""; /// /// 标准备注 /// private string stdmemo = ""; /// /// 限制规格代码 /// private string sizeCode = ""; /// /// 限制规格描述(外径、壁厚、径壁比) /// private string sizeName = ""; /// /// 限制规格下限符号 /// private string sizeMinSign = ""; /// /// 限制规格下限 /// private string sizeMin = ""; /// /// 限制规格上限符号 /// private string sizeMaxSign = ""; /// /// 限制规格上限 /// private string sizeMax = ""; /// /// 限制规格代码 /// private string sizeCode2 = ""; /// /// 限制规格描述(外径、壁厚、径壁比) /// private string sizeName2 = ""; /// /// 限制规格下限符号 /// private string sizeMinSign2 = ""; /// /// 限制规格下限 /// private string sizeMin2 = ""; /// /// 限制规格上限符号 /// private string sizeMaxSign2 = ""; /// /// 限制规格上限 /// private string sizeMax2 = ""; /// /// 接箍规格代码(接箍专用,与外径壁厚只允许存在其一) /// private string specJg = ""; /// /// 接箍规格描述 /// private string specJgDesc = ""; /// /// 条件项(1:符合标准时,0:不符合标准时) /// private string addcondition = ""; /// /// 附加标准项代码 /// private string addstdconCode = ""; /// /// 附加标准下限符号 /// private string addstdMinSign = ""; /// /// 附加标准下限值 /// private string addstdMin = ""; /// /// 附加标准上限符号 /// private string addstdMaxSign = ""; /// /// 附加标准上限值 /// private string addstdMax = ""; /// /// 百分比 /// private decimal? addpercent = null; /// /// 标准范围下限符号(二) /// private string stdminSign2 = ""; /// /// 标准范围下限(二) /// private string stdmin2 = ""; /// /// 标准范围上限符号(二) /// private string stdmaxSign2 = ""; /// /// 标准范围上限(二) /// private string stdmax2 = ""; /// /// 标准选择分类(4071),二套标准情况下的选择分类 /// private string stdChoose = ""; /// /// 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 Pic { get { return pic; } set { pic = 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? IndexSeq { get { return indexSeq; } set { indexSeq = value; } } /// /// 材质检验项代码(大类) /// [Description("材质检验项代码(大类)")] [Nullable(false)] [DataLength(5)] public string PhyCodeMax { get { return phyCodeMax; } set { phyCodeMax = value; } } /// /// 材质检验项名称(大类) /// [Description("材质检验项目")] [Nullable(true)] [DataLength(100)] public string PhyNameMax { get { return phyNameMax; } set { phyNameMax = value; } } /// /// 取样码 /// [Description("取样码")] [Nullable(false)] [DataLength(5)] public string PhyCodeMin { get { return phyCodeMin; } set { phyCodeMin = value; } } /// /// 取样码描述 /// [Description("取样码")] [Nullable(true)] [DataLength(100)] public string PhyNameMin { get { return phyNameMin; } set { phyNameMin = value; } } /// /// 材质检验项代码 /// [Description("材质检验项代码")] [Nullable(false)] [DataLength(5)] public string PhyCode { get { return phyCode; } set { phyCode = value; } } /// /// 材质检验项名称 /// [Description("材质检验项")] [Nullable(true)] [DataLength(100)] public string PhyName { get { return phyName; } set { phyName = value; } } /// /// 试验方向代码 /// [Description("试验方向代码")] [Nullable(true)] [DataLength(5)] public string ItemCodeF { get { return itemCodeF; } set { itemCodeF = value; } } /// /// 试验方向描述 /// [Description("试验方向")] [Nullable(true)] [DataLength(100)] public string ItemNameF { get { return itemNameF; } set { itemNameF = value; } } /// /// 试验温度代码 /// [Description("试验温度代码")] [Nullable(true)] [DataLength(5)] public string ItemCodeW { get { return itemCodeW; } set { itemCodeW = value; } } /// /// 试验温度描述 /// [Description("试验温度")] [Nullable(true)] [DataLength(100)] public string ItemNameW { get { return itemNameW; } set { itemNameW = value; } } /// /// 试样尺寸代码 /// [Description("试样尺寸代码")] [Nullable(true)] [DataLength(5)] public string ItemCodeS { get { return itemCodeS; } set { itemCodeS = value; } } /// /// 试样尺寸描述 /// [Description("试样尺寸")] [Nullable(true)] [DataLength(100)] public string ItemNameS { get { return itemNameS; } set { itemNameS = value; } } /// /// 分组索引号(同一分组的为多选一项) /// [Description("分组索引号")] [Nullable(true)] [DataLength(6)] public string GroupSeq { get { return groupSeq; } set { groupSeq = value; } } /// /// 是否检验(1:是,0:否 ) /// [Description("是否检验")] [Nullable(true)] [DataLength(1)] public string Ischeck { get { return ischeck; } set { ischeck = value; } } /// /// 是否报出(1:是,0:否 ) /// [Description("是否报出")] [Nullable(true)] [DataLength(1)] public string Isquote { get { return isquote; } set { isquote = value; } } /// /// 报出的结果条数 /// [Description("报出的结果条数")] [Nullable(true)] [DataLength(22)] public decimal? ResultCount { get { return resultCount; } set { resultCount = value; } } /// /// 是否判定(1:是,0:否 ) /// [Description("是否判定")] [Nullable(true)] [DataLength(1)] public string Isjudge { get { return isjudge; } set { isjudge = value; } } /// /// 是否是复合标准项(1:是,0:不是)(标准值通过公式进行计算) /// [Description("是否是复合标准项")] [Nullable(true)] [DataLength(1)] public string PhyType { get { return phyType; } set { phyType = value; } } /// /// 复合标准公式 /// [Description("复合标准公式")] [Nullable(true)] [DataLength(100)] public string PhyFormula { get { return phyFormula; } set { phyFormula = value; } } /// /// 标准范围下限符号 /// [Description("下限符号")] [Nullable(true)] [DataLength(2)] public string StdminSign { get { return stdminSign; } set { stdminSign = value; } } /// /// 标准范围下限 /// [Description("下限")] [Nullable(true)] [DataLength(500)] 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; } } /// /// 判定依据(A:最小值,B:最大值,C:平均值,D:逐项值判) /// [Description("判定依据")] [Nullable(true)] [DataLength(1)] public string JudgeBasis { get { return judgeBasis; } set { judgeBasis = value; } } /// /// 交货状态 /// [Description("交货状态")] [Nullable(true)] [DataLength(20)] public string Deliverystate { get { return deliverystate; } set { deliverystate = value; } } /// /// 扣型代码(集合) /// [Description("扣型代码(集合)")] [Nullable(true)] [DataLength(200)] public string ModelCode { get { return modelCode; } set { modelCode = value; } } /// /// 扣型描述(集合) /// [Description("扣型描述(集合)")] [Nullable(true)] [DataLength(1000)] public string ModelDesc { get { return modelDesc; } set { modelDesc = value; } } /// /// 标准备注 /// [Description("标准备注")] [Nullable(true)] [DataLength(200)] public string Stdmemo { get { return stdmemo; } set { stdmemo = value; } } /// /// 限制规格代码 /// [Description("限制规格代码")] [Nullable(true)] [DataLength(20)] public string SizeCode { get { return sizeCode; } set { sizeCode = value; } } /// /// 限制规格描述(外径、壁厚、径壁比) /// [Description("限制规格")] [Nullable(true)] [DataLength(50)] public string SizeName { get { return sizeName; } set { sizeName = value; } } /// /// 限制规格下限符号 /// [Description("下限符号")] [Nullable(true)] [DataLength(2)] public string SizeMinSign { get { return sizeMinSign; } set { sizeMinSign = value; } } /// /// 限制规格下限 /// [Description("下限")] [Nullable(true)] [DataLength(10)] public string SizeMin { get { return sizeMin; } set { sizeMin = value; } } /// /// 限制规格上限符号 /// [Description("上限符号")] [Nullable(true)] [DataLength(2)] public string SizeMaxSign { get { return sizeMaxSign; } set { sizeMaxSign = value; } } /// /// 限制规格上限 /// [Description("上限")] [Nullable(true)] [DataLength(10)] public string SizeMax { get { return sizeMax; } set { sizeMax = value; } } /// /// 限制规格代码 /// [Description("限制规格代码")] [Nullable(true)] [DataLength(20)] public string SizeCode2 { get { return sizeCode2; } set { sizeCode2 = value; } } /// /// 限制规格描述(外径、壁厚、径壁比) /// [Description("限制规格")] [Nullable(true)] [DataLength(50)] public string SizeName2 { get { return sizeName2; } set { sizeName2 = value; } } /// /// 限制规格下限符号 /// [Description("下限符号")] [Nullable(true)] [DataLength(2)] public string SizeMinSign2 { get { return sizeMinSign2; } set { sizeMinSign2 = value; } } /// /// 限制规格下限 /// [Description("下限")] [Nullable(true)] [DataLength(10)] public string SizeMin2 { get { return sizeMin2; } set { sizeMin2 = value; } } /// /// 限制规格上限符号 /// [Description("上限符号")] [Nullable(true)] [DataLength(2)] public string SizeMaxSign2 { get { return sizeMaxSign2; } set { sizeMaxSign2 = value; } } /// /// 限制规格上限 /// [Description("上限")] [Nullable(true)] [DataLength(10)] public string SizeMax2 { get { return sizeMax2; } set { sizeMax2 = value; } } /// /// 接箍规格代码(接箍专用,与外径壁厚只允许存在其一) /// [Description("接箍规格代码")] [Nullable(true)] [DataLength(20)] public string SpecJg { get { return specJg; } set { specJg = value; } } /// /// 接箍规格描述 /// [Description("接箍规格描述")] [Nullable(true)] [DataLength(100)] public string SpecJgDesc { get { return specJgDesc; } set { specJgDesc = value; } } /// /// 条件项(1:符合标准时,0:不符合标准时) /// [Description("条件项")] [Nullable(true)] [DataLength(1)] public string Addcondition { get { return addcondition; } set { addcondition = value; } } /// /// 附加标准项代码 /// [Description("附加标准项代码")] [Nullable(true)] [DataLength(20)] public string AddstdconCode { get { return addstdconCode; } set { addstdconCode = value; } } /// /// 附加标准下限符号 /// [Description("下限符号")] [Nullable(true)] [DataLength(2)] public string AddstdMinSign { get { return addstdMinSign; } set { addstdMinSign = value; } } /// /// 附加标准下限值 /// [Description("下限值")] [Nullable(true)] [DataLength(10)] public string AddstdMin { get { return addstdMin; } set { addstdMin = value; } } /// /// 附加标准上限符号 /// [Description("上限符号")] [Nullable(true)] [DataLength(2)] public string AddstdMaxSign { get { return addstdMaxSign; } set { addstdMaxSign = value; } } /// /// 附加标准上限值 /// [Description("上限值")] [Nullable(true)] [DataLength(10)] public string AddstdMax { get { return addstdMax; } set { addstdMax = value; } } /// /// 百分比 /// [Description("百分比")] [Nullable(true)] [DataLength(22)] public decimal? Addpercent { get { return addpercent; } set { addpercent = value; } } /// /// 标准范围下限符号(二) /// [Description("下限符号")] [Nullable(true)] [DataLength(2)] public string StdminSign2 { get { return stdminSign2; } set { stdminSign2 = value; } } /// /// 标准范围下限(二) /// [Description("下限")] [Nullable(true)] [DataLength(100)] public string Stdmin2 { get { return stdmin2; } set { stdmin2 = value; } } /// /// 标准范围上限符号(二) /// [Description("上限符号")] [Nullable(true)] [DataLength(2)] public string StdmaxSign2 { get { return stdmaxSign2; } set { stdmaxSign2 = value; } } /// /// 标准范围上限(二) /// [Description("上限")] [Nullable(true)] [DataLength(100)] public string Stdmax2 { get { return stdmax2; } set { stdmax2 = value; } } /// /// 标准选择分类(4071),二套标准情况下的选择分类 /// [Description("标准选择分类")] [Nullable(true)] [DataLength(10)] public string StdChoose { get { return stdChoose; } set { stdChoose = value; } } } }