QcmJhyPhyResultCtrlEntity.cs 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. using Core.Mes.Client.Comm.Attribute;
  2. using Core.StlMes.Client.Judge.Models;
  3. using Newtonsoft.Json;
  4. using System;
  5. using System.ComponentModel;
  6. namespace Core.StlMes.Client.Judge.ViewModels
  7. {
  8. public class QcmJhyPhyResultCtrlEntity : QcmJhyPhyresultEntity
  9. {
  10. private string sampleTypeDesc = "";
  11. /// <summary>
  12. /// 取样类型
  13. /// </summary>
  14. [Description("取样类型")]
  15. [Nullable(true)]
  16. [DataLength(100)]
  17. [JsonProperty("sampleTypeDesc")]
  18. public string SampleTypeDesc
  19. {
  20. get { return sampleTypeDesc; }
  21. set { sampleTypeDesc = value; }
  22. }
  23. private string stdExpress = "";
  24. /// <summary>
  25. /// 国家标准
  26. /// </summary>
  27. [Description("国家标准")]
  28. [Nullable(true)]
  29. [DataLength(100)]
  30. [JsonProperty("stdExpress")]
  31. public string StdExpress
  32. {
  33. get { return stdExpress; }
  34. set { stdExpress = value; }
  35. }
  36. private string alphaExpress = "";
  37. /// <summary>
  38. /// 客户标准
  39. /// </summary>
  40. [Description("客户标准")]
  41. [Nullable(true)]
  42. [DataLength(100)]
  43. [JsonProperty("alphaExpress")]
  44. public string AlphaExpress
  45. {
  46. get { return alphaExpress; }
  47. set { alphaExpress = value; }
  48. }
  49. private string nkExpress = "";
  50. /// <summary>
  51. /// 内控标准
  52. /// </summary>
  53. [Description("内控标准")]
  54. [Nullable(true)]
  55. [DataLength(100)]
  56. [JsonProperty("nkExpress")]
  57. public string NkExpress
  58. {
  59. get { return nkExpress; }
  60. set { nkExpress = value; }
  61. }
  62. private string stdAttachExpress = "";
  63. /// <summary>
  64. /// 内控标准
  65. /// </summary>
  66. [Description("国家附加标准")]
  67. [Nullable(true)]
  68. [DataLength(100)]
  69. [JsonProperty("stdAttachExpress")]
  70. public string StdAttachExpress
  71. {
  72. get { return stdAttachExpress; }
  73. set { stdAttachExpress = value; }
  74. }
  75. private string alphaAttachExpress = "";
  76. /// <summary>
  77. /// 内控标准
  78. /// </summary>
  79. [Description("客户附加标准")]
  80. [Nullable(true)]
  81. [DataLength(100)]
  82. [JsonProperty("alphaAttachExpress")]
  83. public string AlphaAttachExpress
  84. {
  85. get { return alphaAttachExpress; }
  86. set { alphaAttachExpress = value; }
  87. }
  88. private string nkAttachExpress = "";
  89. /// <summary>
  90. /// 内控标准
  91. /// </summary>
  92. [Description("内控附加标准")]
  93. [Nullable(true)]
  94. [DataLength(100)]
  95. [JsonProperty("nkAttachExpress")]
  96. public string NkAttachExpress
  97. {
  98. get { return nkAttachExpress; }
  99. set { nkAttachExpress = value; }
  100. }
  101. private bool? onceValidflag = false;
  102. /// <summary>
  103. /// 本次有效
  104. /// </summary>
  105. [Description("本次有效")]
  106. [Nullable(true)]
  107. [DataLength(100)]
  108. [JsonProperty("onceValidflag")]
  109. public bool? OnceValidflag
  110. {
  111. get { return onceValidflag; }
  112. set { onceValidflag = value; }
  113. }
  114. private bool? isJudge = false;
  115. /// <summary>
  116. /// 必判标志
  117. /// </summary>
  118. [Description("必判标志")]
  119. [Nullable(true)]
  120. [DataLength(100)]
  121. [JsonProperty("isJudge")]
  122. public bool? IsJudge
  123. {
  124. get { return isJudge; }
  125. set { isJudge = value; }
  126. }
  127. }
  128. }