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