7ab68bce3aab98ea3ed59b174779accf660f0522.svn-base 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665
  1. package QCM.COMMUNAL.VO;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. public class QcmJudgeSurface implements Serializable{
  5. /**
  6. * 缺陷代码
  7. */
  8. private String flaw_code;
  9. public String getFlaw_code() {
  10. return this.flaw_code;
  11. }
  12. public void setFlaw_code(String flaw_code) {
  13. this.flaw_code = flaw_code;
  14. }
  15. /**
  16. * 缺陷描述
  17. */
  18. private String flaw_desc;
  19. public String getFlaw_desc() {
  20. return this.flaw_desc;
  21. }
  22. public void setFlaw_desc(String flaw_desc) {
  23. this.flaw_desc = flaw_desc;
  24. }
  25. /**
  26. * 表面检验索引号(上表面:U+两位年/月/日+4位流水号,示例:U1803060001,下表面:D+两位年/月/日+4位流水号,示例:D1803060001,边部:E+两位年/月/日+4位流水号,示例:E1803060001)
  27. */
  28. private String surface_id;
  29. public String getSurface_id() {
  30. return this.surface_id;
  31. }
  32. public void setSurface_id(String surface_id) {
  33. this.surface_id = surface_id;
  34. }
  35. /**
  36. * 炉号
  37. */
  38. private String heat_no;
  39. public String getHeat_no() {
  40. return this.heat_no;
  41. }
  42. public void setHeat_no(String heat_no) {
  43. this.heat_no = heat_no;
  44. }
  45. /**
  46. * 轧批号
  47. */
  48. private String batch_no;
  49. public String getBatch_no() {
  50. return this.batch_no;
  51. }
  52. public void setBatch_no(String batch_no) {
  53. this.batch_no = batch_no;
  54. }
  55. /**
  56. * 检验号
  57. */
  58. private String inspection_lot;
  59. public String getInspection_lot() {
  60. return this.inspection_lot;
  61. }
  62. public void setInspection_lot(String inspection_lot) {
  63. this.inspection_lot = inspection_lot;
  64. }
  65. /**
  66. * 材料号
  67. */
  68. private String material_no;
  69. public String getMaterial_no() {
  70. return this.material_no;
  71. }
  72. public void setMaterial_no(String material_no) {
  73. this.material_no = material_no;
  74. }
  75. /**
  76. * 表面检验结果代码
  77. */
  78. private String sf_result_code;
  79. public String getSf_result_code() {
  80. return this.sf_result_code;
  81. }
  82. public void setSf_result_code(String sf_result_code) {
  83. this.sf_result_code = sf_result_code;
  84. }
  85. /**
  86. * 表面检验结果名称
  87. */
  88. private String sf_result_desc;
  89. public String getSf_result_desc() {
  90. return this.sf_result_desc;
  91. }
  92. public void setSf_result_desc(String sf_result_desc) {
  93. this.sf_result_desc = sf_result_desc;
  94. }
  95. /**
  96. * 表面检验备注
  97. */
  98. private String sf_memo;
  99. public String getSf_memo() {
  100. return this.sf_memo;
  101. }
  102. public void setSf_memo(String sf_memo) {
  103. this.sf_memo = sf_memo;
  104. }
  105. /**
  106. * 表面检验类型(U:上表面,D:下表面,E:边部)
  107. */
  108. private String sf_type;
  109. public String getSf_type() {
  110. return this.sf_type;
  111. }
  112. public void setSf_type(String sf_type) {
  113. this.sf_type = sf_type;
  114. }
  115. /**
  116. * 责任单位代码(物料生产产线对应的车间)
  117. */
  118. private String respon_section_code;
  119. public String getRespon_section_code() {
  120. return this.respon_section_code;
  121. }
  122. public void setRespon_section_code(String respon_section_code) {
  123. this.respon_section_code = respon_section_code;
  124. }
  125. /**
  126. * 责任单位名称
  127. */
  128. private String respon_section_name;
  129. public String getRespon_section_name() {
  130. return this.respon_section_name;
  131. }
  132. public void setRespon_section_name(String respon_section_name) {
  133. this.respon_section_name = respon_section_name;
  134. }
  135. /**
  136. * 产线代码
  137. */
  138. private String pline_code;
  139. public String getPline_code() {
  140. return this.pline_code;
  141. }
  142. public void setPline_code(String pline_code) {
  143. this.pline_code = pline_code;
  144. }
  145. /**
  146. * 产线名称
  147. */
  148. private String pline_name;
  149. public String getPline_name() {
  150. return this.pline_name;
  151. }
  152. public void setPline_name(String pline_name) {
  153. this.pline_name = pline_name;
  154. }
  155. /**
  156. * 班次
  157. */
  158. private String wrk_ord;
  159. public String getWrk_ord() {
  160. return this.wrk_ord;
  161. }
  162. public void setWrk_ord(String wrk_ord) {
  163. this.wrk_ord = wrk_ord;
  164. }
  165. /**
  166. * 班组
  167. */
  168. private String wrk_grp;
  169. public String getWrk_grp() {
  170. return this.wrk_grp;
  171. }
  172. public void setWrk_grp(String wrk_grp) {
  173. this.wrk_grp = wrk_grp;
  174. }
  175. /**
  176. * 检验人
  177. */
  178. private String judge_name;
  179. public String getJudge_name() {
  180. return this.judge_name;
  181. }
  182. public void setJudge_name(String judge_name) {
  183. this.judge_name = judge_name;
  184. }
  185. /**
  186. * 检验日期
  187. */
  188. private Date judge_time;
  189. public Date getJudge_time() {
  190. return this.judge_time;
  191. }
  192. public void setJudge_time(Date judge_time) {
  193. this.judge_time = judge_time;
  194. }
  195. /**
  196. * 销售订单号
  197. */
  198. private String order_no;
  199. public String getOrder_no() {
  200. return order_no;
  201. }
  202. public void setOrder_no(String order_no) {
  203. this.order_no = order_no;
  204. }
  205. /**
  206. * --蒋崇波
  207. */
  208. private String design_key;
  209. public String getDesign_key() {
  210. return design_key;
  211. }
  212. public void setDesign_key(String design_key) {
  213. this.design_key = design_key;
  214. }
  215. /**
  216. * 产品规范码--蒋崇波
  217. */
  218. private String psc;
  219. public String getPsc() {
  220. return psc;
  221. }
  222. public void setPsc(String psc) {
  223. this.psc = psc;
  224. }
  225. /**
  226. * 母版号------jcb
  227. */
  228. private String board_no;
  229. public String getBoard_no() {
  230. return board_no;
  231. }
  232. public void setBoard_no(String board_no) {
  233. this.board_no = board_no;
  234. }
  235. /**
  236. * 虚拟子板号-----jcb
  237. */
  238. private String virtual_material_no;
  239. public String getVirtual_material_no() {
  240. return virtual_material_no;
  241. }
  242. public void setVirtual_material_no(String virtual_material_no) {
  243. this.virtual_material_no = virtual_material_no;
  244. }
  245. /**
  246. * 修改类别代码-----jcb
  247. */
  248. private String change_type_code;
  249. public String getChange_type_code() {
  250. return change_type_code;
  251. }
  252. public void setChange_type_code(String change_type_code) {
  253. this.change_type_code = change_type_code;
  254. }
  255. /**
  256. * 修改类别名称-----jcb
  257. */
  258. private String change_type_desc;
  259. public String getChange_type_desc() {
  260. return change_type_desc;
  261. }
  262. public void setChange_type_desc(String change_type_desc) {
  263. this.change_type_desc = change_type_desc;
  264. }
  265. /**
  266. * 修磨单位代码-----jcb
  267. */
  268. private String cop_section_code;
  269. public String getCop_section_code() {
  270. return cop_section_code;
  271. }
  272. public void setCop_section_code(String cop_section_code) {
  273. this.cop_section_code = cop_section_code;
  274. }
  275. /**
  276. * 修磨单位名称-----jcb
  277. */
  278. private String cop_section_desc;
  279. public String getCop_section_desc() {
  280. return cop_section_desc;
  281. }
  282. public void setCop_section_desc(String cop_section_desc) {
  283. this.cop_section_desc = cop_section_desc;
  284. }
  285. /**
  286. * 产品规范描述 ----2019.1.2
  287. */
  288. private String psc_desc;
  289. public String getPsc_desc() {
  290. return psc_desc;
  291. }
  292. public void setPsc_desc(String psc_desc) {
  293. this.psc_desc = psc_desc;
  294. }
  295. /**
  296. * 产品名称代码 ----2019.1.2
  297. */
  298. private String prod_code;
  299. public String getProd_code() {
  300. return prod_code;
  301. }
  302. public void setProd_code(String prod_code) {
  303. this.prod_code = prod_code;
  304. }
  305. /**
  306. * 产品名称描述----2019.1.2
  307. */
  308. private String prod_name;
  309. public String getProd_name() {
  310. return prod_name;
  311. }
  312. public void setProd_name(String prod_name) {
  313. this.prod_name = prod_name;
  314. }
  315. /**
  316. * 标准代码----2019.1.2
  317. */
  318. private String std_code;
  319. public String getStd_code() {
  320. return std_code;
  321. }
  322. public void setStd_code(String std_code) {
  323. this.std_code = std_code;
  324. }
  325. /**
  326. * 标准名称----2019.1.2
  327. */
  328. private String std_name;
  329. public String getStd_name() {
  330. return std_name;
  331. }
  332. public void setStd_name(String std_name) {
  333. this.std_name = std_name;
  334. }
  335. /**
  336. * 产品牌号代码----2019.1.2
  337. */
  338. private String steel_code;
  339. public String getSteel_code() {
  340. return steel_code;
  341. }
  342. public void setSteel_code(String steel_code) {
  343. this.steel_code = steel_code;
  344. }
  345. /**
  346. * 产品牌号名称----2019.1.2
  347. */
  348. private String steel_name;
  349. public String getSteel_name() {
  350. return steel_name;
  351. }
  352. public void setSteel_name(String steel_name) {
  353. this.steel_name = steel_name;
  354. }
  355. /**
  356. * 上表锁定标识----2019.6.11
  357. */
  358. private String sfu_is_lock;
  359. public String getSfu_is_lock() {
  360. return sfu_is_lock;
  361. }
  362. public void setSfu_is_lock(String sfu_is_lock) {
  363. this.sfu_is_lock = sfu_is_lock;
  364. }
  365. /**
  366. * 下表锁定标识----2019.6.11
  367. */
  368. private String sfd_is_lock;
  369. public String getSfd_is_lock() {
  370. return sfd_is_lock;
  371. }
  372. public void setSfd_is_lock(String sfd_is_lock) {
  373. this.sfd_is_lock = sfd_is_lock;
  374. }
  375. /**
  376. * 边部锁定标识----2019.6.11
  377. */
  378. private String sfe_is_lock;
  379. public String getSfe_is_lock() {
  380. return sfe_is_lock;
  381. }
  382. public void setSfe_is_lock(String sfe_is_lock) {
  383. this.sfe_is_lock = sfe_is_lock;
  384. }
  385. /**
  386. * 表面质量等级代码----2019.6.11
  387. */
  388. private String level_code;
  389. public String getLevel_code() {
  390. return level_code;
  391. }
  392. public void setLevel_code(String level_code) {
  393. this.level_code = level_code;
  394. }
  395. /**
  396. * 表面质量等级描述----2019.6.11
  397. */
  398. private String level_desc;
  399. public String getLevel_desc() {
  400. return level_desc;
  401. }
  402. public void setLevel_desc(String level_desc) {
  403. this.level_desc = level_desc;
  404. }
  405. /**
  406. * 厚----2019.1.2
  407. */
  408. private String thick;
  409. public String getThick() {
  410. return thick;
  411. }
  412. public void setThick(String thick) {
  413. this.thick = thick;
  414. }
  415. /**
  416. * 宽----2019.1.2
  417. */
  418. private String width;
  419. public String getWidth() {
  420. return width;
  421. }
  422. public void setWidth(String width) {
  423. this.width = width;
  424. }
  425. /**
  426. * 长----2019.1.2
  427. */
  428. private String length;
  429. public String getLength() {
  430. return length;
  431. }
  432. public void setLength(String length) {
  433. this.length = length;
  434. }
  435. // 目标产品码信息,用于异常材料处置
  436. /***
  437. * 目标psc
  438. */
  439. private String psc_new;
  440. public String getPsc_new() {
  441. return psc_new;
  442. }
  443. public void setPsc_new(String psc_new) {
  444. this.psc_new = psc_new;
  445. }
  446. /**
  447. * 目标产品规范描述 ----2019.5.30
  448. */
  449. private String psc_desc_new;
  450. public String getPsc_desc_new() {
  451. return psc_desc_new;
  452. }
  453. public void setPsc_desc_new(String psc_desc_new) {
  454. this.psc_desc_new = psc_desc_new;
  455. }
  456. /**
  457. * 目标产品名称代码 ----2019.5.30
  458. */
  459. private String prod_code_new;
  460. public String getProd_code_new() {
  461. return prod_code_new;
  462. }
  463. public void setProd_code_new(String prod_code_new) {
  464. this.prod_code_new = prod_code_new;
  465. }
  466. /**
  467. * 目标产品名称描述----2019.5.30
  468. */
  469. private String prod_name_new;
  470. public String getProd_name_new() {
  471. return prod_name_new;
  472. }
  473. public void setProd_name_new(String prod_name_new) {
  474. this.prod_name_new = prod_name_new;
  475. }
  476. /**
  477. * 目标标准代码----2019.5.30
  478. */
  479. private String std_code_new;
  480. public String getStd_code_new() {
  481. return std_code_new;
  482. }
  483. public void setStd_code_new(String std_code_new) {
  484. this.std_code_new = std_code_new;
  485. }
  486. /**
  487. * 目标标准名称----2019.5.30
  488. */
  489. private String std_name_new;
  490. public String getStd_name_new() {
  491. return std_name_new;
  492. }
  493. public void setStd_name_new(String std_name_new) {
  494. this.std_name_new = std_name_new;
  495. }
  496. /**
  497. * 目标产品牌号代码----2019.5.30
  498. */
  499. private String steel_code_new;
  500. public String getSteel_code_new() {
  501. return steel_code_new;
  502. }
  503. public void setSteel_code_new(String steel_code_new) {
  504. this.steel_code_new = steel_code_new;
  505. }
  506. /**
  507. * 目标产品牌号名称----2019.5.30
  508. */
  509. private String steel_name_new;
  510. public String getSteel_name_new() {
  511. return steel_name_new;
  512. }
  513. public void setSteel_name_new(String steel_name_new) {
  514. this.steel_name_new = steel_name_new;
  515. }
  516. /***
  517. * 目标交货状态代码
  518. */
  519. private String delivery_state_code_new;
  520. public String getDelivery_state_code_new() {
  521. return delivery_state_code_new;
  522. }
  523. public void setDelivery_state_code_new(String delivery_state_code_new) {
  524. this.delivery_state_code_new = delivery_state_code_new;
  525. }
  526. /***
  527. * 目标交货状态描述
  528. */
  529. private String delivery_state_desc_new;
  530. public String getDelivery_state_desc_new() {
  531. return delivery_state_desc_new;
  532. }
  533. public void setDelivery_state_desc_new(String delivery_state_desc_new) {
  534. this.delivery_state_desc_new = delivery_state_desc_new;
  535. }
  536. /***
  537. * 交货状态代码
  538. */
  539. private String delivery_state_code;
  540. public String getDelivery_state_code() {
  541. return delivery_state_code;
  542. }
  543. public void setDelivery_state_code(String delivery_state_code) {
  544. this.delivery_state_code = delivery_state_code;
  545. }
  546. /***
  547. * 交货状态描述
  548. */
  549. private String delivery_state_desc;
  550. public String getDelivery_state_desc() {
  551. return delivery_state_desc;
  552. }
  553. public void setDelivery_state_desc(String delivery_state_desc) {
  554. this.delivery_state_desc = delivery_state_desc;
  555. }
  556. /***
  557. * 切边方式代码
  558. */
  559. private String cut_edge_type_no;
  560. public String getCut_edge_type_no() {
  561. return cut_edge_type_no;
  562. }
  563. public void setCut_edge_type_no(String cut_edge_type_no) {
  564. this.cut_edge_type_no = cut_edge_type_no;
  565. }
  566. /***
  567. * 切边方式描述
  568. */
  569. private String cut_edge_type_name;
  570. public String getCut_edge_type_name() {
  571. return cut_edge_type_name;
  572. }
  573. public void setCut_edge_type_name(String cut_edge_type_name) {
  574. this.cut_edge_type_name = cut_edge_type_name;
  575. }
  576. /**
  577. * 当前进行表检判定的库存状态
  578. */
  579. private String kc_state;
  580. public String getKc_state() {
  581. return kc_state;
  582. }
  583. public void setKc_state(String kc_state) {
  584. this.kc_state = kc_state;
  585. }
  586. //规格
  587. private String spec;
  588. public String getSpec() {
  589. return spec;
  590. }
  591. public void setSpec(String spec) {
  592. this.spec = spec;
  593. }
  594. //缺陷严重程度
  595. private String flaw_lv_desc;
  596. public String getFlaw_lv_desc() {
  597. return flaw_lv_desc;
  598. }
  599. public void setFlaw_lv_desc(String flaw_lv_desc) {
  600. this.flaw_lv_desc = flaw_lv_desc;
  601. }
  602. private String roughness_val1;
  603. private String roughness_val2;
  604. private String roughness_val3;
  605. public String getRoughness_val1() {
  606. return roughness_val1;
  607. }
  608. public void setRoughness_val1(String roughness_val1) {
  609. this.roughness_val1 = roughness_val1;
  610. }
  611. public String getRoughness_val2() {
  612. return roughness_val2;
  613. }
  614. public void setRoughness_val2(String roughness_val2) {
  615. this.roughness_val2 = roughness_val2;
  616. }
  617. public String getRoughness_val3() {
  618. return roughness_val3;
  619. }
  620. public void setRoughness_val3(String roughness_val3) {
  621. this.roughness_val3 = roughness_val3;
  622. }
  623. private String reason_code;
  624. private String reason_desc;
  625. public String getReason_code() {
  626. return reason_code;
  627. }
  628. public void setReason_code(String reason_code) {
  629. this.reason_code = reason_code;
  630. }
  631. public String getReason_desc() {
  632. return reason_desc;
  633. }
  634. public void setReason_desc(String reason_desc) {
  635. this.reason_desc = reason_desc;
  636. }
  637. }