using Core.StlMes.Client.Judge.Models; using Newtonsoft.Json; using System.ComponentModel; namespace Core.StlMes.Client.Judge.ViewModels { public class PortVrpBatchSampleResultCtrlEntity : PortVrpBatchSampleResultEntity { private string plineName = ""; /// /// 产线 /// [Description("产线")] [JsonProperty("plineName")] public new string PlineName { get { return plineName; } set { plineName = value; } } private string proPlanId = ""; /// /// 生产订单号 /// [Description("生产订单号")] [JsonProperty("proPlanId")] public string ProPlanId { get { return proPlanId; } set { proPlanId = value; } } private string chemResultDesc = ""; /// /// 成分判定结果 /// [Description("判定结果")] [JsonProperty("chemResultDesc")] public string ChemResultDesc { get { return chemResultDesc; } set { chemResultDesc = value; } } private string phyResultDesc = ""; /// /// 理化判定结果 /// [Description("判定结果")] [JsonProperty("phyResultDesc")] public string PhyResultDesc { get { return phyResultDesc; } set { phyResultDesc = value; } } private string outdiameter = ""; /// /// 外径 /// [Description("外径")] [JsonProperty("outdiameter")] public string Outdiameter { get { return outdiameter; } set { outdiameter = value; } } private string wallthick = ""; /// /// 壁厚 /// [Description("壁厚")] [JsonProperty("wallthick")] public string Wallthick { get { return wallthick; } set { wallthick = value; } } private string steelName = ""; /// /// 钢级 /// [Description("钢级")] [JsonProperty("steelName")] public string SteelName { get { return steelName; } set { steelName = value; } } private string chemJudgeState = ""; /// /// 判定状态 /// [Description("判定状态")] [JsonProperty("chemJudgeState")] public string ChemJudgeState { get { return chemJudgeState; } set { chemJudgeState = value; } } private string phyJudgeState = ""; /// /// 判定状态 /// [Description("判定状态")] [JsonProperty("phyJudgeState")] public string PhyJudgeState { get { return phyJudgeState; } set { phyJudgeState = value; } } } }