PressWaterObject.cs 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. namespace Core.StlMes.Client.Qcm.model
  2. {
  3. /// <summary>
  4. /// 水压试验标准表实体类
  5. /// </summary>
  6. class PressWaterObject
  7. {
  8. private string wic;
  9. public string Wic
  10. {
  11. get { return wic; }
  12. set { wic = value; }
  13. }
  14. private string psc;
  15. public string Psc
  16. {
  17. get { return psc; }
  18. set { psc = value; }
  19. }
  20. private string msc;
  21. public string Msc
  22. {
  23. get { return msc; }
  24. set { msc = value; }
  25. }
  26. private string stdstyle;
  27. public string Stdstyle
  28. {
  29. get { return stdstyle; }
  30. set { stdstyle = value; }
  31. }
  32. private string processCdoe;
  33. public string ProcessCdoe
  34. {
  35. get { return processCdoe; }
  36. set { processCdoe = value; }
  37. }
  38. private string processDesc;
  39. public string ProcessDesc
  40. {
  41. get { return processDesc; }
  42. set { processDesc = value; }
  43. }
  44. private string stdCodeNk;
  45. public string StdCodeNk
  46. {
  47. get { return stdCodeNk; }
  48. set { stdCodeNk = value; }
  49. }
  50. private string stdNameNk;
  51. public string StdNameNk
  52. {
  53. get { return stdNameNk; }
  54. set { stdNameNk = value; }
  55. }
  56. private string minD;
  57. public string MinD
  58. {
  59. get { return minD; }
  60. set { minD = value; }
  61. }
  62. private string maxD;
  63. public string MaxD
  64. {
  65. get { return maxD; }
  66. set { maxD = value; }
  67. }
  68. private string minH;
  69. public string MinH
  70. {
  71. get { return minH; }
  72. set { minH = value; }
  73. }
  74. private string maxH;
  75. public string MaxH
  76. {
  77. get { return maxH; }
  78. set { maxH = value; }
  79. }
  80. private string specJg;
  81. public string SpecJg
  82. {
  83. get { return specJg; }
  84. set { specJg = value; }
  85. }
  86. private string specJgDesc;
  87. public string SpecJgDesc
  88. {
  89. get { return specJgDesc; }
  90. set { specJgDesc = value; }
  91. }
  92. private string modelCode;
  93. public string ModelCode
  94. {
  95. get { return modelCode; }
  96. set { modelCode = value; }
  97. }
  98. private string modelDesc;
  99. public string ModelDesc
  100. {
  101. get { return modelDesc; }
  102. set { modelDesc = value; }
  103. }
  104. private string createName;
  105. public string CreateName
  106. {
  107. get { return createName; }
  108. set { createName = value; }
  109. }
  110. private string createTime;
  111. public string CreateTime
  112. {
  113. get { return createTime; }
  114. set { createTime = value; }
  115. }
  116. private string updateName;
  117. public string UpdateName
  118. {
  119. get { return updateName; }
  120. set { updateName = value; }
  121. }
  122. private string updateTime;
  123. public string UpdateTime
  124. {
  125. get { return updateTime; }
  126. set { updateTime = value; }
  127. }
  128. private string deleteName;
  129. public string DeleteName
  130. {
  131. get { return deleteName; }
  132. set { deleteName = value; }
  133. }
  134. private string deleteTime;
  135. public string DeleteTime
  136. {
  137. get { return deleteTime; }
  138. set { deleteTime = value; }
  139. }
  140. private string validflag;
  141. public string Validflag
  142. {
  143. get { return validflag; }
  144. set { validflag = value; }
  145. }
  146. private string memo;
  147. public string Memo
  148. {
  149. get { return memo; }
  150. set { memo = value; }
  151. }
  152. private string producHead;
  153. public string ProducHead
  154. {
  155. get { return producHead; }
  156. set { producHead = value; }
  157. }
  158. private string codeJg;
  159. public string CodeJg
  160. {
  161. get { return codeJg; }
  162. set { codeJg = value; }
  163. }
  164. private string steelcodeNk = "";
  165. public string SteelcodeNk
  166. {
  167. get { return steelcodeNk; }
  168. set { steelcodeNk = value; }
  169. }
  170. private string steelnameNk = "";
  171. public string SteelnameNk
  172. {
  173. get { return steelnameNk; }
  174. set { steelnameNk = value; }
  175. }
  176. private string modelCodeNk = "";
  177. public string ModelCodeNk
  178. {
  179. get { return modelCodeNk; }
  180. set { modelCodeNk = value; }
  181. }
  182. private string modelDescNk = "";
  183. public string ModelDescNk
  184. {
  185. get { return modelDescNk; }
  186. set { modelDescNk = value; }
  187. }
  188. private string produccodeNk = "";
  189. public string ProduccodeNk
  190. {
  191. get { return produccodeNk; }
  192. set { produccodeNk = value; }
  193. }
  194. private string producnameNk = "";
  195. public string ProducnameNk
  196. {
  197. get { return producnameNk; }
  198. set { producnameNk = value; }
  199. }
  200. }
  201. }