using Core.Mes.Client.Comm.Attribute; using Newtonsoft.Json; using System; using System.ComponentModel; namespace Core.StlMes.Client.Judge.Models { /// /// 数据库表CRAFT_ORD_DESIGN_STD所对应的实体类(生成工具:代码生成工具1.0.0.0) /// 作者:tgcx-test 时间:2016-05-11 /// public class CraftOrdDesignStdEntity { /// /// DESGIN_KEY /// private string desginKey = ""; /// /// 成分标准索引号(CICN000001) /// private string cic = ""; /// /// 材质标准索引号 /// private string pic = ""; /// /// 公差标准索引号 /// private string sic = ""; /// /// 探伤索引号 /// private string dic = ""; /// /// 水压索引码 /// private string wic = ""; /// /// 加工索引号 /// private string gic = ""; /// /// 熔炼成分套数 /// private decimal? smeltingCnt = null; /// /// 成品成分套数 /// private decimal? productCnt = null; /// /// 成分标准索引号(客户要求) /// private string cicN = ""; /// /// 材质标准索引号(客户要求) /// private string picN = ""; /// /// 公差标准索引号(客户要求) /// private string sicN = ""; /// /// 探伤索引号(客户要求) /// private string dicN = ""; /// /// 水压索引码(客户要求) /// private string wicN = ""; /// /// 加工索引号(客户要求) /// private string gicN = ""; /// /// 熔炼成分套数(客户要求) /// private decimal? smeltingCntN = null; /// /// 成品成分套数(客户要求) /// private decimal? productCntN = null; /// /// DESGIN_KEY /// [Description("DESGIN_KEY")] [Nullable(false)] [DataLength(40)] [JsonProperty("desginKey")] public string DesginKey { get { return desginKey; } set { desginKey = value; } } /// /// 成分标准索引号(CICN000001) /// [Description("成分标准索引号(CICN000001)")] [Nullable(true)] [DataLength(10)] [JsonProperty("cic")] public string Cic { get { return cic; } set { cic = value; } } /// /// 材质标准索引号 /// [Description("材质标准索引号")] [Nullable(true)] [DataLength(20)] [JsonProperty("pic")] public string Pic { get { return pic; } set { pic = value; } } /// /// 公差标准索引号 /// [Description("公差标准索引号")] [Nullable(true)] [DataLength(20)] [JsonProperty("sic")] public string Sic { get { return sic; } set { sic = value; } } /// /// 探伤索引号 /// [Description("探伤索引号")] [Nullable(true)] [DataLength(20)] [JsonProperty("dic")] public string Dic { get { return dic; } set { dic = value; } } /// /// 水压索引码 /// [Description("水压索引码")] [Nullable(true)] [DataLength(20)] [JsonProperty("wic")] public string Wic { get { return wic; } set { wic = value; } } /// /// 加工索引号 /// [Description("加工索引号")] [Nullable(true)] [DataLength(20)] [JsonProperty("gic")] public string Gic { get { return gic; } set { gic = value; } } /// /// 熔炼成分套数 /// [Description("熔炼成分套数")] [Nullable(true)] [DataLength(2)] [JsonProperty("smeltingCnt")] public decimal? SmeltingCnt { get { return smeltingCnt; } set { smeltingCnt = value; } } /// /// 成品成分套数 /// [Description("成品成分套数")] [Nullable(true)] [DataLength(2)] [JsonProperty("productCnt")] public decimal? ProductCnt { get { return productCnt; } set { productCnt = value; } } /// /// 成分标准索引号(客户要求) /// [Description("成分标准索引号(客户要求)")] [Nullable(true)] [DataLength(10)] [JsonProperty("cicN")] public string CicN { get { return cicN; } set { cicN = value; } } /// /// 材质标准索引号(客户要求) /// [Description("材质标准索引号(客户要求)")] [Nullable(true)] [DataLength(20)] [JsonProperty("picN")] public string PicN { get { return picN; } set { picN = value; } } /// /// 公差标准索引号(客户要求) /// [Description("公差标准索引号(客户要求)")] [Nullable(true)] [DataLength(20)] [JsonProperty("sicN")] public string SicN { get { return sicN; } set { sicN = value; } } /// /// 探伤索引号(客户要求) /// [Description("探伤索引号(客户要求)")] [Nullable(true)] [DataLength(20)] [JsonProperty("dicN")] public string DicN { get { return dicN; } set { dicN = value; } } /// /// 水压索引码(客户要求) /// [Description("水压索引码(客户要求)")] [Nullable(true)] [DataLength(20)] [JsonProperty("wicN")] public string WicN { get { return wicN; } set { wicN = value; } } /// /// 加工索引号(客户要求) /// [Description("加工索引号(客户要求)")] [Nullable(true)] [DataLength(20)] [JsonProperty("gicN")] public string GicN { get { return gicN; } set { gicN = value; } } /// /// 熔炼成分套数(客户要求) /// [Description("熔炼成分套数(客户要求)")] [Nullable(true)] [DataLength(2)] [JsonProperty("smeltingCntN")] public decimal? SmeltingCntN { get { return smeltingCntN; } set { smeltingCntN = value; } } /// /// 成品成分套数(客户要求) /// [Description("成品成分套数(客户要求)")] [Nullable(true)] [DataLength(2)] [JsonProperty("productCntN")] public decimal? ProductCntN { get { return productCntN; } set { productCntN = value; } } } }