using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using Core.Mes.Client.Comm.Attribute; using Newtonsoft.Json; namespace Core.StlMes.Client.SaleOrder { /// /// 数据库表CRAFT_ORD_DESIGN_STD_DIC所对应的实体类(生成工具:代码生成工具4.0 访问地址:http://172.16.2.128/tool/) /// 作者:tgcx-test 时间:2017-01-11 /// public class CraftOrdDesignStdDicEntity { /// /// 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 = ""; /// /// 制程号(内控用) /// private string mscPline = ""; /// /// 工序号(内控用) /// private string processCode = ""; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 数据来源 '0':冶金规范 1:轧管排产录入 /// private string craftSource = ""; /// /// 修改人 /// private string updateName = ""; /// /// 修改时间 /// private string updateTime = ""; /// /// 删除人 /// private string deleteName = ""; /// /// 删除时间 /// private string deleteTime = ""; private string processDesc = ""; private bool? chk = false; /// /// 选择 /// [Description("选择")] public bool? Chk { get { return chk; } set { chk = value; } } /// /// 工序 /// [Description("工序")] public string ProcessDesc { get { return processDesc; } set { processDesc = value; } } private string processCodeC = ""; /// /// 二级工序 /// [Description("二级工序")] public string ProcessCodeC { get { return processCodeC; } set { processCodeC = value; } } private string processDescC = ""; /// /// 二级工序 /// [Description("二级工序")] public string ProcessDescC { get { return processDescC; } set { processDescC = value; } } /// /// DESGIN_KEY /// [Description("DESGIN_KEY")] [Nullable(false)] [DataLength(40)] [JsonProperty("desginKey")] public string DesginKey { get { return desginKey; } set { desginKey = value; } } /// /// 探伤索引号 /// [Description("探伤索引号")] [Nullable(false)] [DataLength(20)] [JsonProperty("dic")] public string Dic { get { return dic; } set { dic = value; } } /// /// 协议或Alpha代码(用途码) /// [Description("协议或Alpha")] [Nullable(true)] [DataLength(20)] [JsonProperty("useCode")] public string UseCode { get { return useCode; } set { useCode = value; } } /// /// 协议或Alpha描述(用途描述) /// [Description("协议或Alpha")] [Nullable(true)] [DataLength(100)] [JsonProperty("useDesc")] public string UseDesc { get { return useDesc; } set { useDesc = value; } } /// /// 是否特殊要求(0:交付标准;1:特殊要求;2:内控标准) /// [Description("数据类型")] [Nullable(false)] [DataLength(1)] [JsonProperty("speclFl")] public string SpeclFl { get { return speclFl; } set { speclFl = value; } } /// /// 序号 /// [Description("序号")] [Nullable(false)] [DataLength(22)] [JsonProperty("xh")] public decimal? Xh { get { return xh; } set { xh = value; } } /// /// 材质检验项代码 /// [Description("材质检验项")] [Nullable(true)] [DataLength(5)] [JsonProperty("phyCode")] public string PhyCode { get { return phyCode; } set { phyCode = value; } } /// /// 材质检验项名称 /// [Description("材质检验项")] [Nullable(true)] [DataLength(100)] [JsonProperty("phyName")] public string PhyName { get { return phyName; } set { phyName = value; } } /// /// 探伤位置代码(4020) /// [Description("探伤位置")] [Nullable(true)] [DataLength(20)] [JsonProperty("positionCode")] public string PositionCode { get { return positionCode; } set { positionCode = value; } } /// /// 探伤位置描述 /// [Description("探伤位置")] [Nullable(true)] [DataLength(100)] [JsonProperty("positionDesc")] public string PositionDesc { get { return positionDesc; } set { positionDesc = value; } } /// /// 探伤参考标准(4021) /// [Description("参考标准")] [Nullable(true)] [DataLength(100)] [JsonProperty("stdDesc")] public string StdDesc { get { return stdDesc; } set { stdDesc = value; } } /// /// 探伤级别代码(4022) /// [Description("探伤级别")] [Nullable(true)] [DataLength(20)] [JsonProperty("lvCode")] public string LvCode { get { return lvCode; } set { lvCode = value; } } /// /// 探伤级别描述 /// [Description("探伤级别")] [Nullable(true)] [DataLength(100)] [JsonProperty("lvDesc")] public string LvDesc { get { return lvDesc; } set { lvDesc = value; } } /// /// 刻槽位置(4023) /// [Description("刻槽位置")] [Nullable(true)] [DataLength(20)] [JsonProperty("groovePos")] public string GroovePos { get { return groovePos; } set { groovePos = value; } } /// /// 刻槽方向(4024) /// [Description("刻槽方向")] [Nullable(true)] [DataLength(20)] [JsonProperty("grooveDir")] public string GrooveDir { get { return grooveDir; } set { grooveDir = value; } } /// /// 探伤覆盖率(%) /// [Description("覆盖率(%)")] [Nullable(true)] [DataLength(20)] [JsonProperty("coverage")] public string Coverage { get { return coverage; } set { coverage = value; } } /// /// 探伤频率代码(4011)(按比例、逐支) /// [Description("探伤频次")] [Nullable(true)] [DataLength(20)] [JsonProperty("rate")] public string Rate { get { return rate; } set { rate = value; } } /// /// 探伤频率描述 /// [Description("探伤频次")] [Nullable(true)] [DataLength(200)] [JsonProperty("descRate")] public string DescRate { get { return descRate; } set { descRate = value; } } /// /// 频率值(按比例,具体百分比) /// [Description("频率值%")] [Nullable(true)] [DataLength(20)] [JsonProperty("descVal")] public string DescVal { get { return descVal; } set { descVal = value; } } /// /// 分组索引号(同一分组的为多选一项) /// [Description("分组索引号")] [Nullable(true)] [DataLength(6)] [JsonProperty("groupSeq")] public string GroupSeq { get { return groupSeq; } set { groupSeq = value; } } /// /// 备注 /// [Description("备注")] [Nullable(true)] [DataLength(500)] [JsonProperty("memo")] public string Memo { get { return memo; } set { memo = value; } } /// /// 最小外径 /// [Description("外径下限")] [Nullable(true)] [DataLength(10)] [JsonProperty("minD")] public string MinD { get { return minD; } set { minD = value; } } /// /// 最大外径 /// [Description("外径上限")] [Nullable(true)] [DataLength(10)] [JsonProperty("maxD")] public string MaxD { get { return maxD; } set { maxD = value; } } /// /// 最小壁厚 /// [Description("壁厚下限")] [Nullable(true)] [DataLength(10)] [JsonProperty("minH")] public string MinH { get { return minH; } set { minH = value; } } /// /// 最大壁厚 /// [Description("壁厚上限")] [Nullable(true)] [DataLength(10)] [JsonProperty("maxH")] public string MaxH { get { return maxH; } set { maxH = value; } } /// /// 制程号(内控用) /// [Description("制程号(内控用)")] [Nullable(false)] [DataLength(10)] [JsonProperty("mscPline")] public string MscPline { get { return mscPline; } set { mscPline = value; } } /// /// 工序号(内控用) /// [Description("工序号(内控用)")] [Nullable(false)] [DataLength(1)] [JsonProperty("processCode")] public string ProcessCode { get { return processCode; } set { processCode = value; } } /// /// 创建人 /// [Description("创建人")] [Nullable(true)] [DataLength(20)] [JsonProperty("createName")] public string CreateName { get { return createName; } set { createName = value; } } /// /// 创建时间 /// [Description("创建时间")] [Nullable(true)] [JsonProperty("createTime")] public string CreateTime { get { return createTime; } set { createTime = value; } } /// /// 数据来源 '0':冶金规范 1:轧管排产录入 /// [Description("数据来源")] [Nullable(true)] [DataLength(1)] [JsonProperty("craftSource")] public string CraftSource { get { return craftSource; } set { craftSource = value; } } /// /// 修改人 /// [Description("修改人")] [Nullable(true)] [DataLength(20)] [JsonProperty("updateName")] public string UpdateName { get { return updateName; } set { updateName = value; } } /// /// 修改时间 /// [Description("修改时间")] [Nullable(true)] [JsonProperty("updateTime")] public string UpdateTime { get { return updateTime; } set { updateTime = value; } } /// /// 删除人 /// [Description("删除人")] [Nullable(true)] [DataLength(20)] [JsonProperty("deleteName")] public string DeleteName { get { return deleteName; } set { deleteName = value; } } /// /// 删除时间 /// [Description("删除时间")] [Nullable(true)] [JsonProperty("deleteTime")] public string DeleteTime { get { return deleteTime; } set { deleteTime = value; } } } }