using Core.Mes.Client.Comm.Attribute; using Core.StlMes.Client.Judge.Models; using Newtonsoft.Json; using System; using System.ComponentModel; namespace Core.StlMes.Client.Judge.ViewModels { public class PlnSteelforfurnaceCtrlEntity : PlnSteelforfurnaceEntity { private string judgeState = ""; /// /// 判定结果 /// [Description("判定状态")] [Nullable(true)] [DataLength(20)] [JsonProperty("judgeState")] public string JudgeState { get { return judgeState; } set { judgeState = value; } } private string judgeResult = ""; /// /// 判定结果 /// [Description("判定结果")] [Nullable(true)] [DataLength(20)] [JsonProperty("judgeResult")] public string JudgeResult { get { return judgeResult; } set { judgeResult = value; } } } }