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 QcmJhyPhyResultCtrlEntity : QcmJhyPhyresultEntity { private string sampleTypeDesc = ""; /// /// 取样类型 /// [Description("取样类型")] [Nullable(true)] [DataLength(100)] [JsonProperty("sampleTypeDesc")] public string SampleTypeDesc { get { return sampleTypeDesc; } set { sampleTypeDesc = value; } } private string stdExpress = ""; /// /// 国家标准 /// [Description("国家标准")] [Nullable(true)] [DataLength(100)] [JsonProperty("stdExpress")] public string StdExpress { get { return stdExpress; } set { stdExpress = value; } } private string alphaExpress = ""; /// /// 客户标准 /// [Description("客户标准")] [Nullable(true)] [DataLength(100)] [JsonProperty("alphaExpress")] public string AlphaExpress { get { return alphaExpress; } set { alphaExpress = value; } } private string nkExpress = ""; /// /// 内控标准 /// [Description("内控标准")] [Nullable(true)] [DataLength(100)] [JsonProperty("nkExpress")] public string NkExpress { get { return nkExpress; } set { nkExpress = value; } } private string stdAttachExpress = ""; /// /// 内控标准 /// [Description("国家附加标准")] [Nullable(true)] [DataLength(100)] [JsonProperty("stdAttachExpress")] public string StdAttachExpress { get { return stdAttachExpress; } set { stdAttachExpress = value; } } private string alphaAttachExpress = ""; /// /// 内控标准 /// [Description("客户附加标准")] [Nullable(true)] [DataLength(100)] [JsonProperty("alphaAttachExpress")] public string AlphaAttachExpress { get { return alphaAttachExpress; } set { alphaAttachExpress = value; } } private string nkAttachExpress = ""; /// /// 内控标准 /// [Description("内控附加标准")] [Nullable(true)] [DataLength(100)] [JsonProperty("nkAttachExpress")] public string NkAttachExpress { get { return nkAttachExpress; } set { nkAttachExpress = value; } } private bool? onceValidflag = false; /// /// 本次有效 /// [Description("本次有效")] [Nullable(true)] [DataLength(100)] [JsonProperty("onceValidflag")] public bool? OnceValidflag { get { return onceValidflag; } set { onceValidflag = value; } } private bool? isJudge = false; /// /// 必判标志 /// [Description("必判标志")] [Nullable(true)] [DataLength(100)] [JsonProperty("isJudge")] public bool? IsJudge { get { return isJudge; } set { isJudge = value; } } } }