563a6cbc55b98e8c0d0fc9bfae6d7705e3c8f9e5.svn-base 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378
  1. package QCM.COMMUNAL.VO;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. public class QcmJudgePhysicalResult implements Serializable{
  5. /**
  6. * 材质结果集ID(编码规则:PIC+2位年/月/日+4位流水号)
  7. */
  8. private String phy_id;
  9. public String getPhy_id() {
  10. return this.phy_id;
  11. }
  12. public void setPhy_id(String phy_id) {
  13. this.phy_id = phy_id;
  14. }
  15. private String avg_val;
  16. public String getAvg_val() {
  17. return avg_val;
  18. }
  19. public void setAvg_val(String avg_val) {
  20. this.avg_val = avg_val;
  21. }
  22. /**
  23. * GUID(取QCM_PHY_RESULT.GUID)
  24. */
  25. private String guid;
  26. public String getGuid() {
  27. return this.guid;
  28. }
  29. public void setGuid(String guid) {
  30. this.guid = guid;
  31. }
  32. /**
  33. * 试样号
  34. */
  35. private String smp_no;
  36. public String getSmp_no() {
  37. return this.smp_no;
  38. }
  39. public void setSmp_no(String smp_no) {
  40. this.smp_no = smp_no;
  41. }
  42. /**
  43. * 炉号
  44. */
  45. private String heat_no;
  46. public String getHeat_no() {
  47. return this.heat_no;
  48. }
  49. public void setHeat_no(String heat_no) {
  50. this.heat_no = heat_no;
  51. }
  52. /**
  53. * 轧批号
  54. */
  55. private String batch_no;
  56. public String getBatch_no() {
  57. return this.batch_no;
  58. }
  59. public void setBatch_no(String batch_no) {
  60. this.batch_no = batch_no;
  61. }
  62. /**
  63. * 检验号
  64. */
  65. private String inspection_lot;
  66. public String getInspection_lot() {
  67. return this.inspection_lot;
  68. }
  69. public void setInspection_lot(String inspection_lot) {
  70. this.inspection_lot = inspection_lot;
  71. }
  72. /**
  73. * 材料号
  74. */
  75. private String material_no;
  76. public String getMaterial_no() {
  77. return this.material_no;
  78. }
  79. public void setMaterial_no(String material_no) {
  80. this.material_no = material_no;
  81. }
  82. /**
  83. * 材质检验项代码(大类)
  84. */
  85. private String phy_code_l;
  86. public String getPhy_code_l() {
  87. return this.phy_code_l;
  88. }
  89. public void setPhy_code_l(String phy_code_l) {
  90. this.phy_code_l = phy_code_l;
  91. }
  92. /**
  93. * 材质检验项名称(大类)
  94. */
  95. private String phy_name_l;
  96. public String getPhy_name_l() {
  97. return this.phy_name_l;
  98. }
  99. public void setPhy_name_l(String phy_name_l) {
  100. this.phy_name_l = phy_name_l;
  101. }
  102. /**
  103. * 试样组代码
  104. */
  105. private String phy_code_m;
  106. public String getPhy_code_m() {
  107. return this.phy_code_m;
  108. }
  109. public void setPhy_code_m(String phy_code_m) {
  110. this.phy_code_m = phy_code_m;
  111. }
  112. /**
  113. * 试样组描述
  114. */
  115. private String phy_name_m;
  116. public String getPhy_name_m() {
  117. return this.phy_name_m;
  118. }
  119. public void setPhy_name_m(String phy_name_m) {
  120. this.phy_name_m = phy_name_m;
  121. }
  122. /**
  123. * 材质检验项代码
  124. */
  125. private String phy_code_s;
  126. public String getPhy_code_s() {
  127. return this.phy_code_s;
  128. }
  129. public void setPhy_code_s(String phy_code_s) {
  130. this.phy_code_s = phy_code_s;
  131. }
  132. /**
  133. * 材质检验项名称
  134. */
  135. private String phy_name_s;
  136. public String getPhy_name_s() {
  137. return this.phy_name_s;
  138. }
  139. public void setPhy_name_s(String phy_name_s) {
  140. this.phy_name_s = phy_name_s;
  141. }
  142. /**
  143. * 试验方向代码
  144. */
  145. private String item_code_d;
  146. public String getItem_code_d() {
  147. return this.item_code_d;
  148. }
  149. public void setItem_code_d(String item_code_d) {
  150. this.item_code_d = item_code_d;
  151. }
  152. /**
  153. * 试验方向描述
  154. */
  155. private String item_name_d;
  156. public String getItem_name_d() {
  157. return this.item_name_d;
  158. }
  159. public void setItem_name_d(String item_name_d) {
  160. this.item_name_d = item_name_d;
  161. }
  162. /**
  163. * 试验温度代码
  164. */
  165. private String item_code_t;
  166. public String getItem_code_t() {
  167. return this.item_code_t;
  168. }
  169. public void setItem_code_t(String item_code_t) {
  170. this.item_code_t = item_code_t;
  171. }
  172. /**
  173. * 试验温度描述
  174. */
  175. private String item_name_t;
  176. public String getItem_name_t() {
  177. return this.item_name_t;
  178. }
  179. public void setItem_name_t(String item_name_t) {
  180. this.item_name_t = item_name_t;
  181. }
  182. /**
  183. * 试样尺寸代码
  184. */
  185. private String item_code_s;
  186. public String getItem_code_s() {
  187. return this.item_code_s;
  188. }
  189. public void setItem_code_s(String item_code_s) {
  190. this.item_code_s = item_code_s;
  191. }
  192. /**
  193. * 试样尺寸描述
  194. */
  195. private String item_name_s;
  196. public String getItem_name_s() {
  197. return this.item_name_s;
  198. }
  199. public void setItem_name_s(String item_name_s) {
  200. this.item_name_s = item_name_s;
  201. }
  202. /**
  203. * 值1
  204. */
  205. private String val1;
  206. public String getVal1() {
  207. return this.val1;
  208. }
  209. public void setVal1(String val1) {
  210. this.val1 = val1;
  211. }
  212. /**
  213. * 值2
  214. */
  215. private String val2;
  216. public String getVal2() {
  217. return this.val2;
  218. }
  219. public void setVal2(String val2) {
  220. this.val2 = val2;
  221. }
  222. /**
  223. * 值3
  224. */
  225. private String val3;
  226. public String getVal3() {
  227. return this.val3;
  228. }
  229. public void setVal3(String val3) {
  230. this.val3 = val3;
  231. }
  232. /**
  233. * 优先级
  234. */
  235. private Long pri;
  236. public Long getPri() {
  237. return this.pri;
  238. }
  239. public void setPri(Long pri) {
  240. this.pri = pri;
  241. }
  242. /**
  243. * 创建人
  244. */
  245. private String create_name;
  246. public String getCreate_name() {
  247. return this.create_name;
  248. }
  249. public void setCreate_name(String create_name) {
  250. this.create_name = create_name;
  251. }
  252. /**
  253. * 创建时间
  254. */
  255. private Date create_time;
  256. public Date getCreate_time() {
  257. return this.create_time;
  258. }
  259. public void setCreate_time(Date create_time) {
  260. this.create_time = create_time;
  261. }
  262. private String item_code_l;
  263. private String item_desc_l;
  264. public String getItem_code_l() {
  265. return item_code_l;
  266. }
  267. public void setItem_code_l(String item_code_l) {
  268. this.item_code_l = item_code_l;
  269. }
  270. public String getItem_desc_l() {
  271. return item_desc_l;
  272. }
  273. public void setItem_desc_l(String item_desc_l) {
  274. this.item_desc_l = item_desc_l;
  275. }
  276. private String defect_flag;
  277. public String getDefect_flag() {
  278. return defect_flag;
  279. }
  280. public void setDefect_flag(String defect_flag) {
  281. this.defect_flag = defect_flag;
  282. }
  283. private String specimen_no;
  284. public String getSpecimen_no() {
  285. return specimen_no;
  286. }
  287. public void setSpecimen_no(String specimen_no) {
  288. this.specimen_no = specimen_no;
  289. }
  290. private String val4;
  291. private String val5;
  292. private String val6;
  293. private String val7;
  294. private String val8;
  295. private String val9;
  296. public String getVal4() {
  297. return val4;
  298. }
  299. public void setVal4(String val4) {
  300. this.val4 = val4;
  301. }
  302. public String getVal5() {
  303. return val5;
  304. }
  305. public void setVal5(String val5) {
  306. this.val5 = val5;
  307. }
  308. public String getVal6() {
  309. return val6;
  310. }
  311. public void setVal6(String val6) {
  312. this.val6 = val6;
  313. }
  314. public String getVal7() {
  315. return val7;
  316. }
  317. public void setVal7(String val7) {
  318. this.val7 = val7;
  319. }
  320. public String getVal8() {
  321. return val8;
  322. }
  323. public void setVal8(String val8) {
  324. this.val8 = val8;
  325. }
  326. public String getVal9() {
  327. return val9;
  328. }
  329. public void setVal9(String val9) {
  330. this.val9 = val9;
  331. }
  332. private Long seq;
  333. public Long getSeq() {
  334. return seq;
  335. }
  336. public void setSeq(Long seq) {
  337. this.seq = seq;
  338. }
  339. }