using Core.StlMes.Client.Judge.Models; using Newtonsoft.Json; using System.ComponentModel; namespace Core.StlMes.Client.Judge.ViewModels { public class MatZcMCtrlEntity : MatZcMEntity { private string lotNo = ""; public string LotNo1 { get { return lotNo; } set { lotNo = 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; } } private string chemResultDesc = ""; /// /// 成分判定结果 /// [Description("成分判定结果")] [JsonProperty("chemResultDesc")] public string ChemResultDesc { get { return chemResultDesc; } set { chemResultDesc = value; } } private string phyResultDesc = ""; /// /// 理化判定结果 /// [Description("理化判定结果")] [JsonProperty("chemResultDesc")] public string PhyResultDesc { get { return phyResultDesc; } set { phyResultDesc = value; } } } }