using System; using System.ComponentModel; using com.steering.mes.mcp.entity; using Newtonsoft.Json; namespace Core.StlMes.Client.Mcp.Control.Entity { [Serializable] public class MchWatergageResultEntityPlus : MchWatergageResultEntity { /// /// 钢级(牌号)代码 /// private string steelcode = ""; /// /// 钢级(牌号)名称 /// private string steelname = ""; /// /// 钢种代码 /// private string gradecode = ""; /// /// 钢种名称 /// private string gradename = ""; /// /// 品名代码 /// private string produccode = ""; /// /// 品名描述 /// private string producname = ""; /// /// 扣型代码 /// private string modelCode = ""; /// /// 扣型描述 /// private string modelDesc = ""; /// /// 成品外径 /// private decimal? outdiameter = null; /// /// 成品壁厚 /// private decimal? wallthick = null; /// /// 钢级(牌号)代码 /// [Description("钢级(牌号)代码")] [JsonProperty("steelcode")] public string Steelcode { get { return steelcode; } set { steelcode = value; } } /// /// 钢级(牌号)名称 /// [Description("钢级")] [JsonProperty("steelname")] public string Steelname { get { return steelname; } set { steelname = 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("produccode")] public string Produccode { get { return produccode; } set { produccode = value; } } /// /// 品名描述 /// [Description("品名")] [JsonProperty("producname")] public string Producname { get { return producname; } set { producname = value; } } /// /// 扣型代码 /// [Description("扣型代码")] [JsonProperty("modelCode")] public string ModelCode { get { return modelCode; } set { modelCode = value; } } /// /// 扣型描述 /// [Description("扣型")] [JsonProperty("modelDesc")] public string ModelDesc { get { return modelDesc; } set { modelDesc = value; } } /// /// 成品外径 /// [Description("外径")] [JsonProperty("outdiameter")] public decimal? Outdiameter { get { return outdiameter; } set { outdiameter = value; } } /// /// 成品壁厚 /// [Description("壁厚")] [JsonProperty("wallthick")] public decimal? Wallthick { get { return wallthick; } set { wallthick = value; } } } }