using Newtonsoft.Json; using System.ComponentModel; namespace Core.StlMes.Client.Judge.Models { /// /// 数据库表CRAFT_LG2_CIC所对应的实体类(生成工具:代码生成工具4.0 访问地址:http://172.16.2.128/tool/) /// 作者:tgcx-test 时间:2017-09-15 /// public class CraftLg2CicEntity { /// /// 成分ID(CIC+工艺卡号+6位流水) /// private string cicGid = ""; /// /// 序号 /// private decimal? xh = null; /// /// 化学元素代码 /// private string chemCode = ""; /// /// 化学元素描述 /// private string chemName = ""; /// /// 化学元素类型(A:单一元素,B:复合元素) /// private string chemType = ""; /// /// 复合元素计算公式 /// private string chemFormula = ""; /// /// 标准范围下限符号 /// private string stdminSign = ""; /// /// 标准范围下限 /// private string stdmin = ""; /// /// 标准范围上限符号 /// private string stdmaxSign = ""; /// /// 标准范围上限 /// private string stdmax = ""; /// /// 目标值 /// private string stdtarget = ""; /// /// 限制元素代码 /// private string eleCode = ""; /// /// 限制元素描述 /// private string eleName = ""; /// /// 限制元素下限符号 /// private string eleMinSign = ""; /// /// 限制元素下限 /// private string eleMin = ""; /// /// 限制元素上限符号 /// private string eleMaxSign = ""; /// /// 限制元素上限 /// private string eleMax = ""; /// /// 成分备注 /// private string memo = ""; /// /// 成分ID(CIC+工艺卡号+6位流水) /// [Description("成分ID")] [JsonProperty("cicGid")] public string CicGid { get { return cicGid; } set { cicGid = value; } } /// /// 序号 /// [Description("序号")] [JsonProperty("xh")] public decimal? Xh { get { return xh; } set { xh = value; } } /// /// 化学元素代码 /// [Description("化学元素代码")] [JsonProperty("chemCode")] public string ChemCode { get { return chemCode; } set { chemCode = value; } } /// /// 化学元素描述 /// [Description("化学元素")] [JsonProperty("chemName")] public string ChemName { get { return chemName; } set { chemName = value; } } /// /// 化学元素类型(A:单一元素,B:复合元素) /// [Description("化学元素类型")] [JsonProperty("chemType")] public string ChemType { get { return chemType; } set { chemType = value; } } /// /// 复合元素计算公式 /// [Description("复合元素计算公式")] [JsonProperty("chemFormula")] public string ChemFormula { get { return chemFormula; } set { chemFormula = value; } } /// /// 标准范围下限符号 /// [Description("符号")] [JsonProperty("stdminSign")] public string StdminSign { get { return stdminSign; } set { stdminSign = value; } } /// /// 标准范围下限 /// [Description("下限值")] [JsonProperty("stdmin")] public string Stdmin { get { return stdmin; } set { stdmin = value; } } /// /// 标准范围上限符号 /// [Description("符号")] [JsonProperty("stdmaxSign")] public string StdmaxSign { get { return stdmaxSign; } set { stdmaxSign = value; } } /// /// 标准范围上限 /// [Description("上限值")] [JsonProperty("stdmax")] public string Stdmax { get { return stdmax; } set { stdmax = value; } } /// /// 目标值 /// [Description("目标值")] [JsonProperty("stdtarget")] public string Stdtarget { get { return stdtarget; } set { stdtarget = value; } } /// /// 限制元素代码 /// [Description("限制元素代码")] [JsonProperty("eleCode")] public string EleCode { get { return eleCode; } set { eleCode = value; } } /// /// 限制元素描述 /// [Description("限制元素")] [JsonProperty("eleName")] public string EleName { get { return eleName; } set { eleName = value; } } /// /// 限制元素下限符号 /// [Description("符号")] [JsonProperty("eleMinSign")] public string EleMinSign { get { return eleMinSign; } set { eleMinSign = value; } } /// /// 限制元素下限 /// [Description("下限值")] [JsonProperty("eleMin")] public string EleMin { get { return eleMin; } set { eleMin = value; } } /// /// 限制元素上限符号 /// [Description("符号")] [JsonProperty("eleMaxSign")] public string EleMaxSign { get { return eleMaxSign; } set { eleMaxSign = value; } } /// /// 限制元素上限 /// [Description("上限值")] [JsonProperty("eleMax")] public string EleMax { get { return eleMax; } set { eleMax = value; } } /// /// 成分备注 /// [Description("成分备注")] [JsonProperty("memo")] public string Memo { get { return memo; } set { memo = value; } } } }