using Newtonsoft.Json; using System.ComponentModel; namespace Core.StlMes.Client.Qcm.model { /// /// 数据库表COM_BASE_CCM所对应的实体类(生成工具:代码生成工具4.0 访问地址:http://172.16.2.128/tool/) /// 作者:tgcx-test 时间:2017-08-21 /// public class ComBaseCcmEntity { /// /// 水表配置编码(CCM+2位流水) /// private string ccmCode = ""; /// /// 铸造产线编码 /// private string plineCode = ""; /// /// 铸造产线描述 /// private string plineName = ""; /// /// 直径 /// private string diameter = ""; /// /// 水表号 /// private string waterNo = ""; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 修改人 /// private string updateName = ""; /// /// 修改时间 /// private string updateTime = ""; /// /// 删除人 /// private string deleteName = ""; /// /// 删除时间 /// private string deleteTime = ""; /// /// 有效标志(1:有效,0:无效) /// private string validflag = ""; private string gradecode = ""; private string gradename = ""; private string cic = ""; private string coolingVal = ""; private string tepVal = ""; private string stdCodeNk = ""; private string stdNameNk = ""; /// /// 水表配置编码(CCM+2位流水) /// [Description("主键")] [JsonProperty("ccmCode")] public string CcmCode { get { return ccmCode; } set { ccmCode = value; } } /// /// 铸造产线编码 /// [Description("铸造产线编码")] [JsonProperty("plineCode")] public string PlineCode { get { return plineCode; } set { plineCode = value; } } /// /// 铸造产线描述 /// [Description("铸造产线描述")] [JsonProperty("plineName")] public string PlineName { get { return plineName; } set { plineName = value; } } /// /// 直径 /// [Description("直径")] [JsonProperty("diameter")] public string Diameter { get { return diameter; } set { diameter = value; } } /// /// 水表号 /// [Description("水表号")] [JsonProperty("waterNo")] public string WaterNo { get { return waterNo; } set { waterNo = value; } } /// /// 创建人 /// [Description("创建人")] [JsonProperty("createName")] public string CreateName { get { return createName; } set { createName = value; } } /// /// 创建时间 /// [Description("创建时间")] [JsonProperty("createTime")] public string CreateTime { get { return createTime; } set { createTime = value; } } /// /// 修改人 /// [Description("修改人")] [JsonProperty("updateName")] public string UpdateName { get { return updateName; } set { updateName = value; } } /// /// 修改时间 /// [Description("修改时间")] [JsonProperty("updateTime")] public string UpdateTime { get { return updateTime; } set { updateTime = value; } } /// /// 删除人 /// [Description("删除人")] [JsonProperty("deleteName")] public string DeleteName { get { return deleteName; } set { deleteName = value; } } /// /// 删除时间 /// [Description("删除时间")] [JsonProperty("deleteTime")] public string DeleteTime { get { return deleteTime; } set { deleteTime = value; } } /// /// 有效标志(1:有效,0:无效) /// [Description("有效标志")] [JsonProperty("validflag")] public string Validflag { get { return validflag; } set { validflag = value; } } /// /// 钢种代码 /// [Description("钢种代码")] [JsonProperty("gradecode")] public string Gradecode { get { return gradecode; } set { gradecode = value; } } /// /// 钢种名称 /// [Description("钢种名称")] [JsonProperty("gradename")] public string Gradename { get { return gradename; } set { gradename = value; } } /// /// 成分索引码 /// [Description("成分索引码")] [JsonProperty("cic")] public string Cic { get { return cic; } set { cic = value; } } /// /// 冷却强度 /// [Description("冷却强度")] [JsonProperty("coolingVal")] public string CoolingVal { get { return coolingVal; } set { coolingVal = value; } } /// /// 液湘温度 /// [Description("液湘温度")] [JsonProperty("tepVal")] public string TepVal { get { return tepVal; } set { tepVal = value; } } /// /// 内控标准 /// [Description("内控标准")] [JsonProperty("stdCodeNk")] public string StdCodeNk { get { return stdCodeNk; } set { stdCodeNk = value; } } /// /// 内控标准 /// [Description("内控标准")] [JsonProperty("stdNameNk")] public string StdNameNk { get { return stdNameNk; } set { stdNameNk = value; } } } }