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_DIC所对应的实体类(生成工具:代码生成工具3.0) /// 作者:Chenxi-PC2 时间:2015-09-17 /// public class SlmOrdDesignStdDicEntity { /// /// DESGIN_KEY /// private string desginKey = ""; /// /// 探伤索引号 /// private string dic = ""; /// /// 协议或Alpha代码(用途码) /// private string useCode = ""; /// /// 协议或Alpha描述(用途描述) /// private string useDesc = ""; /// /// 是否特殊要求(0:交付标准;1:特殊要求;2:内控标准) /// private string speclFl = ""; /// /// 序号 /// private decimal? xh = null; /// /// 材质检验项代码 /// private string phyCode = ""; /// /// 材质检验项名称 /// private string phyName = ""; /// /// 探伤位置代码(4020) /// private string positionCode = ""; /// /// 探伤位置描述 /// private string positionDesc = ""; /// /// 探伤参考标准(4021) /// private string stdDesc = ""; /// /// 探伤级别代码(4022) /// private string lvCode = ""; /// /// 探伤级别描述 /// private string lvDesc = ""; /// /// 刻槽位置(4023) /// private string groovePos = ""; /// /// 刻槽方向(4024) /// private string grooveDir = ""; /// /// 探伤覆盖率(%) /// private string coverage = ""; /// /// 探伤频率代码(4011)(按比例、逐支) /// private string rate = ""; /// /// 探伤频率描述 /// private string descRate = ""; /// /// 频率值(按比例,具体百分比) /// private string descVal = ""; /// /// 分组索引号(同一分组的为多选一项) /// private string groupSeq = ""; /// /// 备注 /// private string memo = ""; /// /// 最小外径 /// private string minD = ""; /// /// 最大外径 /// private string maxD = ""; /// /// 最小壁厚 /// private string minH = ""; /// /// 最大壁厚 /// private string maxH = ""; /// /// 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 Dic { get { return dic; } set { dic = 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(5)] public string PhyCode { get { return phyCode; } set { phyCode = value; } } /// /// 材质检验项名称 /// [Description("材质检验项名称")] [Nullable(true)] [DataLength(100)] public string PhyName { get { return phyName; } set { phyName = value; } } /// /// 探伤位置代码(4020) /// [Description("探伤位置代码")] [Nullable(true)] [DataLength(20)] public string PositionCode { get { return positionCode; } set { positionCode = value; } } /// /// 探伤位置描述 /// [Description("探伤位置描述")] [Nullable(true)] [DataLength(100)] public string PositionDesc { get { return positionDesc; } set { positionDesc = value; } } /// /// 探伤参考标准(4021) /// [Description("探伤参考标准")] [Nullable(true)] [DataLength(100)] public string StdDesc { get { return stdDesc; } set { stdDesc = value; } } /// /// 探伤级别代码(4022) /// [Description("探伤级别代码")] [Nullable(true)] [DataLength(20)] public string LvCode { get { return lvCode; } set { lvCode = value; } } /// /// 探伤级别描述 /// [Description("探伤级别描述")] [Nullable(true)] [DataLength(100)] public string LvDesc { get { return lvDesc; } set { lvDesc = value; } } /// /// 刻槽位置(4023) /// [Description("刻槽位置")] [Nullable(true)] [DataLength(20)] public string GroovePos { get { return groovePos; } set { groovePos = value; } } /// /// 刻槽方向(4024) /// [Description("刻槽方向")] [Nullable(true)] [DataLength(20)] public string GrooveDir { get { return grooveDir; } set { grooveDir = value; } } /// /// 探伤覆盖率(%) /// [Description("探伤覆盖率(%)")] [Nullable(true)] [DataLength(20)] public string Coverage { get { return coverage; } set { coverage = value; } } /// /// 探伤频率代码(4011)(按比例、逐支) /// [Description("探伤频率代码")] [Nullable(true)] [DataLength(20)] public string Rate { get { return rate; } set { rate = value; } } /// /// 探伤频率描述 /// [Description("探伤频率描述")] [Nullable(true)] [DataLength(200)] public string DescRate { get { return descRate; } set { descRate = value; } } /// /// 频率值(按比例,具体百分比) /// [Description("频率值")] [Nullable(true)] [DataLength(20)] public string DescVal { get { return descVal; } set { descVal = 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; } } /// /// 最小外径 /// [Description("最小外径")] [Nullable(true)] [DataLength(10)] public string MinD { get { return minD; } set { minD = value; } } /// /// 最大外径 /// [Description("最大外径")] [Nullable(true)] [DataLength(10)] public string MaxD { get { return maxD; } set { maxD = value; } } /// /// 最小壁厚 /// [Description("最小壁厚")] [Nullable(true)] [DataLength(10)] public string MinH { get { return minH; } set { minH = value; } } /// /// 最大壁厚 /// [Description("最大壁厚")] [Nullable(true)] [DataLength(10)] public string MaxH { get { return maxH; } set { maxH = value; } } } }