using Newtonsoft.Json; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; namespace Core.StlMes.Client.SaleOrder { /// /// 数据库表CRAFT_ORD_FD_CIC_M所对应的实体类(生成工具:代码生成工具4.0 访问地址:http://172.16.2.128/tool/) /// 作者:tgcx-test 时间:2018-07-17 /// public class CraftOrdFdCicMEntity { /// /// ORD_LN_PK(ORD_PK+三位流失号) /// private string ordLnPk = ""; /// /// 成分标准索引号(CICN000001) /// private string cic = ""; /// /// 制程号(内控用) /// private string mscPline = ""; /// /// 工序号(内控用) /// private string processCode = ""; /// /// 熔炼成分套数(客户要求) /// private decimal? smeltingCntN = null; /// /// 成品成分套数(客户要求) /// private decimal? productCntN = null; /// /// 合同序号 /// private decimal? ordSeq = null; /// /// ORD_LN_PK(ORD_PK+三位流失号) /// [Description("ORD_LN_PK(ORD_PK+三位流失号)")] [JsonProperty("ordLnPk")] public string OrdLnPk { get { return ordLnPk; } set { ordLnPk = value; } } /// /// 成分标准索引号(CICN000001) /// [Description("成分标准索引号(CICN000001)")] [JsonProperty("cic")] public string Cic { get { return cic; } set { cic = value; } } /// /// 制程号(内控用) /// [Description("制程号(内控用)")] [JsonProperty("mscPline")] public string MscPline { get { return mscPline; } set { mscPline = value; } } /// /// 工序号(内控用) /// [Description("工序号(内控用)")] [JsonProperty("processCode")] public string ProcessCode { get { return processCode; } set { processCode = value; } } /// /// 熔炼成分套数(客户要求) /// [Description("熔炼成分套数(客户要求)")] [JsonProperty("smeltingCntN")] public decimal? SmeltingCntN { get { return smeltingCntN; } set { smeltingCntN = value; } } /// /// 成品成分套数(客户要求) /// [Description("成品成分套数(客户要求)")] [JsonProperty("productCntN")] public decimal? ProductCntN { get { return productCntN; } set { productCntN = value; } } /// /// 合同序号 /// [Description("合同序号")] [JsonProperty("ordSeq")] public decimal? OrdSeq { get { return ordSeq; } set { ordSeq = value; } } } }