567d85c621fa81a565bd15de8530c9310f60e024.svn-base 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package QCM.COMMUNAL.VO;
  2. import java.io.Serializable;
  3. public class QcmJudgePhysicalUtmM implements Serializable{
  4. /**
  5. * 用于更新库存表或物料进程表,材质最终判定记录号(Q+两位年月日+4位流水号,Q1711100001)
  6. */
  7. private String pic_id;
  8. public String getPic_id() {
  9. return this.pic_id;
  10. }
  11. public void setPic_id(String pic_id) {
  12. this.pic_id = pic_id;
  13. }
  14. /**
  15. * 检验号
  16. */
  17. private String inspection_lot;
  18. public String getInspection_lot() {
  19. return this.inspection_lot;
  20. }
  21. public void setInspection_lot(String inspection_lot) {
  22. this.inspection_lot = inspection_lot;
  23. }
  24. /**
  25. * DESIGN_KEY
  26. */
  27. private String design_key;
  28. public String getDesign_key() {
  29. return this.design_key;
  30. }
  31. public void setDesign_key(String design_key) {
  32. this.design_key = design_key;
  33. }
  34. /**
  35. * 判定结果代码
  36. */
  37. private String pic_result_code;
  38. public String getPic_result_code() {
  39. return this.pic_result_code;
  40. }
  41. public void setPic_result_code(String pic_result_code) {
  42. this.pic_result_code = pic_result_code;
  43. }
  44. /**
  45. * 判定结果描述
  46. */
  47. private String pic_result_desc;
  48. public String getPic_result_desc() {
  49. return this.pic_result_desc;
  50. }
  51. public void setPic_result_desc(String pic_result_desc) {
  52. this.pic_result_desc = pic_result_desc;
  53. }
  54. }