864b648926020a5359610bab721a057cc3a1ec40.svn-base 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  1. package QCM.COMMUNAL.VO;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. public class QcmJudgeUltimateReason implements Serializable{
  5. /**
  6. * 产品序号
  7. */
  8. private String material_no;
  9. public String getMaterial_no() {
  10. return this.material_no;
  11. }
  12. public void setMaterial_no(String material_no) {
  13. this.material_no = material_no;
  14. }
  15. /**
  16. * 类型(C:成分,,P:材质S:公差,D:探伤,U:上表面、F:下表面、E:边部)
  17. */
  18. private String type_code;
  19. public String getType_code() {
  20. return this.type_code;
  21. }
  22. public void setType_code(String type_code) {
  23. this.type_code = type_code;
  24. }
  25. /**
  26. * 记录ID(单项检验判定记录号)
  27. */
  28. private String record_id;
  29. public String getRecord_id() {
  30. return this.record_id;
  31. }
  32. public void setRecord_id(String record_id) {
  33. this.record_id = record_id;
  34. }
  35. /**
  36. * 序号(ID向下流水号)
  37. */
  38. private int seq;
  39. public int getSeq() {
  40. return seq;
  41. }
  42. public void setSeq(int seq) {
  43. this.seq = seq;
  44. }
  45. /**
  46. * 检验项代码(材质用)
  47. */
  48. private String phy_code_l;
  49. public String getPhy_code_l() {
  50. return this.phy_code_l;
  51. }
  52. public void setPhy_code_l(String phy_code_l) {
  53. this.phy_code_l = phy_code_l;
  54. }
  55. /**
  56. * 检验项名称(材质用)
  57. */
  58. private String phy_name_l;
  59. public String getPhy_name_l() {
  60. return this.phy_name_l;
  61. }
  62. public void setPhy_name_l(String phy_name_l) {
  63. this.phy_name_l = phy_name_l;
  64. }
  65. /**
  66. * 试样组代码(材质用)
  67. */
  68. private String phy_code_m;
  69. public String getPhy_code_m() {
  70. return this.phy_code_m;
  71. }
  72. public void setPhy_code_m(String phy_code_m) {
  73. this.phy_code_m = phy_code_m;
  74. }
  75. /**
  76. * 试样组描述(材质用)
  77. */
  78. private String phy_name_m;
  79. public String getPhy_name_m() {
  80. return this.phy_name_m;
  81. }
  82. public void setPhy_name_m(String phy_name_m) {
  83. this.phy_name_m = phy_name_m;
  84. }
  85. /**
  86. * 检验项代码(成分、材质、探伤取项目代码,表面、公差取不合格原因基础数据代码)
  87. */
  88. private String phy_code_s;
  89. public String getPhy_code_s() {
  90. return this.phy_code_s;
  91. }
  92. public void setPhy_code_s(String phy_code_s) {
  93. this.phy_code_s = phy_code_s;
  94. }
  95. /**
  96. * 检验项名称(示例:C...,夹杂物...,UT...厚度不符...,裂纹...)
  97. */
  98. private String phy_name_s;
  99. public String getPhy_name_s() {
  100. return this.phy_name_s;
  101. }
  102. public void setPhy_name_s(String phy_name_s) {
  103. this.phy_name_s = phy_name_s;
  104. }
  105. /**
  106. * 试验方向代码(材质用)
  107. */
  108. private String item_code_d;
  109. public String getItem_code_d() {
  110. return this.item_code_d;
  111. }
  112. public void setItem_code_d(String item_code_d) {
  113. this.item_code_d = item_code_d;
  114. }
  115. /**
  116. * 试验方向描述(材质用)
  117. */
  118. private String item_name_d;
  119. public String getItem_name_d() {
  120. return this.item_name_d;
  121. }
  122. public void setItem_name_d(String item_name_d) {
  123. this.item_name_d = item_name_d;
  124. }
  125. /**
  126. * 试验温度代码(材质用)
  127. */
  128. private String item_code_t;
  129. public String getItem_code_t() {
  130. return this.item_code_t;
  131. }
  132. public void setItem_code_t(String item_code_t) {
  133. this.item_code_t = item_code_t;
  134. }
  135. /**
  136. * 试验温度描述(材质用)
  137. */
  138. private String item_name_t;
  139. public String getItem_name_t() {
  140. return this.item_name_t;
  141. }
  142. public void setItem_name_t(String item_name_t) {
  143. this.item_name_t = item_name_t;
  144. }
  145. /**
  146. * 试样尺寸代码(材质用)
  147. */
  148. private String item_code_s;
  149. public String getItem_code_s() {
  150. return this.item_code_s;
  151. }
  152. public void setItem_code_s(String item_code_s) {
  153. this.item_code_s = item_code_s;
  154. }
  155. /**
  156. * 试样尺寸描述(材质用)
  157. */
  158. private String item_name_s;
  159. public String getItem_name_s() {
  160. return this.item_name_s;
  161. }
  162. public void setItem_name_s(String item_name_s) {
  163. this.item_name_s = item_name_s;
  164. }
  165. /**
  166. * 值1
  167. */
  168. private String val1;
  169. public String getVal1() {
  170. return this.val1;
  171. }
  172. public void setVal1(String val1) {
  173. this.val1 = val1;
  174. }
  175. /**
  176. * 值2(材质用)
  177. */
  178. private String val2;
  179. public String getVal2() {
  180. return this.val2;
  181. }
  182. public void setVal2(String val2) {
  183. this.val2 = val2;
  184. }
  185. /**
  186. * 值3(材质用)
  187. */
  188. private String val3;
  189. public String getVal3() {
  190. return this.val3;
  191. }
  192. public void setVal3(String val3) {
  193. this.val3 = val3;
  194. }
  195. /**
  196. * 平均值(材质用)
  197. */
  198. private String avg_val;
  199. public String getAvg_val() {
  200. return this.avg_val;
  201. }
  202. public void setAvg_val(String avg_val) {
  203. this.avg_val = avg_val;
  204. }
  205. /**
  206. * 标准范围下限符号
  207. */
  208. private String stdmin_sign;
  209. public String getStdmin_sign() {
  210. return this.stdmin_sign;
  211. }
  212. public void setStdmin_sign(String stdmin_sign) {
  213. this.stdmin_sign = stdmin_sign;
  214. }
  215. /**
  216. * 标准范围下限
  217. */
  218. private String stdmin;
  219. public String getStdmin() {
  220. return this.stdmin;
  221. }
  222. public void setStdmin(String stdmin) {
  223. this.stdmin = stdmin;
  224. }
  225. /**
  226. * 标准范围上限符号
  227. */
  228. private String stdmax_sign;
  229. public String getStdmax_sign() {
  230. return this.stdmax_sign;
  231. }
  232. public void setStdmax_sign(String stdmax_sign) {
  233. this.stdmax_sign = stdmax_sign;
  234. }
  235. /**
  236. * 标准范围上限
  237. */
  238. private String stdmax;
  239. public String getStdmax() {
  240. return this.stdmax;
  241. }
  242. public void setStdmax(String stdmax) {
  243. this.stdmax = stdmax;
  244. }
  245. /**
  246. * 创建人
  247. */
  248. private String create_name;
  249. public String getCreate_name() {
  250. return this.create_name;
  251. }
  252. public void setCreate_name(String create_name) {
  253. this.create_name = create_name;
  254. }
  255. /**
  256. * 创建时间
  257. */
  258. private Date create_time;
  259. public Date getCreate_time() {
  260. return this.create_time;
  261. }
  262. public void setCreate_time(Date create_time) {
  263. this.create_time = create_time;
  264. }
  265. // 缺陷类型名称
  266. private String defect_type_name;
  267. public String getDefect_type_name() {
  268. return defect_type_name;
  269. }
  270. public void setDefect_type_name(String defect_type_name) {
  271. this.defect_type_name = defect_type_name;
  272. }
  273. // 缺陷类型代码
  274. private String defect_type_code;
  275. public String getDefect_type_code() {
  276. return defect_type_code;
  277. }
  278. public void setDefect_type_code(String defect_type_code) {
  279. this.defect_type_code = defect_type_code;
  280. }
  281. private String item_code_l;
  282. private String item_desc_l;
  283. public String getItem_code_l() {
  284. return item_code_l;
  285. }
  286. public void setItem_code_l(String item_code_l) {
  287. this.item_code_l = item_code_l;
  288. }
  289. public String getItem_desc_l() {
  290. return item_desc_l;
  291. }
  292. public void setItem_desc_l(String item_desc_l) {
  293. this.item_desc_l = item_desc_l;
  294. }
  295. }