DectionCObject.cs 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. namespace Core.StlMes.Client.Qcm.model
  2. {
  3. /// <summary>
  4. /// 探伤要求从表实体类
  5. /// </summary>
  6. class DectionCObject
  7. {
  8. //探伤索引号
  9. private string dic;
  10. public string Dic
  11. {
  12. get { return dic; }
  13. set { dic = value; }
  14. }
  15. //序号
  16. private string xh;
  17. public string Xh
  18. {
  19. get { return xh; }
  20. set { xh = value; }
  21. }
  22. //材质检验项代码
  23. private string phyCode;
  24. public string PhyCode
  25. {
  26. get { return phyCode; }
  27. set { phyCode = value; }
  28. }
  29. //材质检验项名称
  30. private string phyName;
  31. public string PhyName
  32. {
  33. get { return phyName; }
  34. set { phyName = value; }
  35. }
  36. //探伤位置代码(4020)
  37. private string positionCode;
  38. public string PositionCode
  39. {
  40. get { return positionCode; }
  41. set { positionCode = value; }
  42. }
  43. //探伤位置描述
  44. private string positionDesc;
  45. public string PositionDesc
  46. {
  47. get { return positionDesc; }
  48. set { positionDesc = value; }
  49. }
  50. //探伤参考标准(4021)
  51. private string stdDesc;
  52. public string StdDesc
  53. {
  54. get { return stdDesc; }
  55. set { stdDesc = value; }
  56. }
  57. //探伤级别代码(4022)
  58. private string lvCode;
  59. public string LvCode
  60. {
  61. get { return lvCode; }
  62. set { lvCode = value; }
  63. }
  64. //探伤级别描述
  65. private string lvDesc;
  66. public string LvDesc
  67. {
  68. get { return lvDesc; }
  69. set { lvDesc = value; }
  70. }
  71. //探伤覆盖率(%)
  72. private string coverage;
  73. public string Coverage
  74. {
  75. get { return coverage; }
  76. set { coverage = value; }
  77. }
  78. //刻槽位置(4023)
  79. private string groovePos;
  80. public string GroovePos
  81. {
  82. get { return groovePos; }
  83. set { groovePos = value; }
  84. }
  85. //刻槽方向(4024)
  86. private string grooveDir;
  87. public string GrooveDir
  88. {
  89. get { return grooveDir; }
  90. set { grooveDir = value; }
  91. }
  92. //创建人
  93. private string createName;
  94. public string CreateName
  95. {
  96. get { return createName; }
  97. set { createName = value; }
  98. }
  99. //创建时间
  100. private string createTime;
  101. public string CreateTime
  102. {
  103. get { return createTime; }
  104. set { createTime = value; }
  105. }
  106. //修改人
  107. private string updateName;
  108. public string UpdateName
  109. {
  110. get { return updateName; }
  111. set { updateName = value; }
  112. }
  113. //修改时间
  114. private string updateTime;
  115. public string UpdateTime
  116. {
  117. get { return updateTime; }
  118. set { updateTime = value; }
  119. }
  120. //删除人
  121. private string deleteName;
  122. public string DeleteName
  123. {
  124. get { return deleteName; }
  125. set { deleteName = value; }
  126. }
  127. //删除时间
  128. private string deleteTime;
  129. public string DeleteTime
  130. {
  131. get { return deleteTime; }
  132. set { deleteTime = value; }
  133. }
  134. //有效标志(1:有效,0:无效)
  135. private string validflag;
  136. public string Validflag
  137. {
  138. get { return validflag; }
  139. set { validflag = value; }
  140. }
  141. //备注
  142. private string memo;
  143. public string Memo
  144. {
  145. get { return memo; }
  146. set { memo = value; }
  147. }
  148. private string rate;
  149. public string Rate
  150. {
  151. get { return rate; }
  152. set { rate = value; }
  153. }
  154. private string ratedesc;
  155. public string Ratedesc
  156. {
  157. get { return ratedesc; }
  158. set { ratedesc = value; }
  159. }
  160. private string rateval;
  161. public string Rateval
  162. {
  163. get { return rateval; }
  164. set { rateval = value; }
  165. }
  166. private string minD;
  167. public string MinD
  168. {
  169. get { return minD; }
  170. set { minD = value; }
  171. }
  172. private string maxD;
  173. public string MaxD
  174. {
  175. get { return maxD; }
  176. set { maxD = value; }
  177. }
  178. private string minH;
  179. public string MinH
  180. {
  181. get { return minH; }
  182. set { minH = value; }
  183. }
  184. private string maxH;
  185. public string MaxH
  186. {
  187. get { return maxH; }
  188. set { maxH = value; }
  189. }
  190. private string groupSeq = "";
  191. public string GroupSeq
  192. {
  193. get { return groupSeq; }
  194. set { groupSeq = value; }
  195. }
  196. }
  197. }