BaoJiaoResultDetailEntity.cs 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. using Core.Mes.Client.Comm.Attribute;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Linq;
  6. using System.Text;
  7. namespace Core.StlMes.Client.Mcp.VRP.Entity
  8. {
  9. class BaoJiaoResultDetailEntity
  10. {
  11. /// <summary>
  12. /// 报检单号
  13. /// </summary>
  14. private string inspectionNo = "";
  15. /// <summary>
  16. /// 报检次数
  17. /// </summary>
  18. private decimal? inspectionNum = null;
  19. /// <summary>
  20. /// 项目类别
  21. /// </summary>
  22. private string projectCategory = "";
  23. /// <summary>
  24. /// 项目名称
  25. /// </summary>
  26. private string projectName = "";
  27. /// <summary>
  28. /// 检验结果
  29. /// </summary>
  30. private string result = "";
  31. /// <summary>
  32. /// 不合格原因
  33. /// </summary>
  34. private string reasons = "";
  35. /// <summary>
  36. /// 备注
  37. /// </summary>
  38. private string mome = "";
  39. /// <summary>
  40. /// ID
  41. /// </summary>
  42. private string guid = "";
  43. /// <summary>
  44. /// 检测值
  45. /// </summary>
  46. private string detectionCode = "";
  47. /// <summary>
  48. /// 报检单号
  49. /// </summary>
  50. [Description("报检单号")]
  51. [Nullable(false)]
  52. [DataLength(20)]
  53. public string InspectionNo
  54. {
  55. get { return inspectionNo; }
  56. set { inspectionNo = value; }
  57. }
  58. /// <summary>
  59. /// 报检次数
  60. /// </summary>
  61. [Description("报检次数")]
  62. [Nullable(true)]
  63. [DataLength(20)]
  64. public decimal? InspectionNum
  65. {
  66. get { return inspectionNum; }
  67. set { inspectionNum = value; }
  68. }
  69. /// <summary>
  70. /// 项目类别
  71. /// </summary>
  72. [Description("项目类别")]
  73. [Nullable(true)]
  74. [DataLength(20)]
  75. public string ProjectCategory
  76. {
  77. get { return projectCategory; }
  78. set { projectCategory = value; }
  79. }
  80. /// <summary>
  81. /// 项目名称
  82. /// </summary>
  83. [Description("项目名称")]
  84. [Nullable(true)]
  85. [DataLength(20)]
  86. public string ProjectName
  87. {
  88. get { return projectName; }
  89. set { projectName = value; }
  90. }
  91. /// <summary>
  92. /// 检验结果
  93. /// </summary>
  94. [Description("检验结果")]
  95. [Nullable(true)]
  96. [DataLength(20)]
  97. public string Result
  98. {
  99. get { return result; }
  100. set { result = value; }
  101. }
  102. /// <summary>
  103. /// 不合格原因
  104. /// </summary>
  105. [Description("不合格原因")]
  106. [Nullable(true)]
  107. [DataLength(200)]
  108. public string Reasons
  109. {
  110. get { return reasons; }
  111. set { reasons = value; }
  112. }
  113. /// <summary>
  114. /// 备注
  115. /// </summary>
  116. [Description("备注")]
  117. [Nullable(true)]
  118. [DataLength(200)]
  119. public string Mome
  120. {
  121. get { return mome; }
  122. set { mome = value; }
  123. }
  124. /// <summary>
  125. /// ID
  126. /// </summary>
  127. [Description("ID")]
  128. [Nullable(false)]
  129. [DataLength(50)]
  130. public string Guid
  131. {
  132. get { return guid; }
  133. set { guid = value; }
  134. }
  135. /// <summary>
  136. /// 检测值
  137. /// </summary>
  138. [Description("检测值")]
  139. [Nullable(true)]
  140. [DataLength(200)]
  141. public string DetectionCode
  142. {
  143. get { return detectionCode; }
  144. set { detectionCode = value; }
  145. }
  146. }
  147. }