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 QcmGpJudgeApplyPCtrlEntity : QcmGpJugdeApplyEntity { private string chemResultDesc = ""; /// /// 成分结果 /// [Description("成分结果")] [Nullable(true)] [DataLength(20)] [JsonProperty("chemResultDesc")] public string ChemResultDesc { get { return chemResultDesc; } set { chemResultDesc = value; } } private string phyResultDesc = ""; /// /// 理化结果 /// [Description("理化结果")] [Nullable(true)] [DataLength(20)] [JsonProperty("phyResultDesc")] public string PhyResultDesc { get { return phyResultDesc; } set { phyResultDesc = value; } } } }