EcrMakeDetail.java 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. package com.uas.eis.entity;
  2. import com.alibaba.fastjson.annotation.JSONField;
  3. /**
  4. * @author koul
  5. * @email koul@usoftchina.com
  6. * @date 2023-09-19 08:55
  7. */
  8. public class EcrMakeDetail {
  9. @JSONField(name = "journalNo")
  10. private String ecr_code;
  11. @JSONField(name = "prodNo")
  12. private String emd_macode;
  13. @JSONField(name = "type1")
  14. private String ecr_tempg;
  15. @JSONField(name = "changeContent")
  16. private String ecr_tempb;
  17. @JSONField(name = "changeContent2")
  18. private String ecr_tempc;
  19. @JSONField(name = "status")
  20. private String status;
  21. @JSONField(name = "mustFlag")
  22. private String emd_ifzhix;
  23. @JSONField(name = "location")
  24. private String emd_controlpoint;
  25. @JSONField(name = "rmk1")
  26. private String emd_detno;
  27. @JSONField(name = "mesUser")
  28. private String mesUser;
  29. @JSONField(name = "mesPwd")
  30. private String mesPwd;
  31. public String getEmd_ifzhix() {
  32. return emd_ifzhix;
  33. }
  34. public void setEmd_ifzhix(String emd_ifzhix) {
  35. this.emd_ifzhix = emd_ifzhix;
  36. }
  37. public String getEmd_controlpoint() {
  38. return emd_controlpoint;
  39. }
  40. public void setEmd_controlpoint(String emd_controlpoint) {
  41. this.emd_controlpoint = emd_controlpoint;
  42. }
  43. public String getEcr_code() {
  44. return ecr_code;
  45. }
  46. public void setEcr_code(String ecr_code) {
  47. this.ecr_code = ecr_code;
  48. }
  49. public String getEmd_macode() {
  50. return emd_macode;
  51. }
  52. public void setEmd_macode(String emd_macode) {
  53. this.emd_macode = emd_macode;
  54. }
  55. public String getEcr_tempg() {
  56. return ecr_tempg;
  57. }
  58. public void setEcr_tempg(String ecr_tempg) {
  59. this.ecr_tempg = ecr_tempg;
  60. }
  61. public String getEcr_tempb() {
  62. return ecr_tempb;
  63. }
  64. public void setEcr_tempb(String ecr_tempb) {
  65. this.ecr_tempb = ecr_tempb;
  66. }
  67. public String getEcr_tempc() {
  68. return ecr_tempc;
  69. }
  70. public void setEcr_tempc(String ecr_tempc) {
  71. this.ecr_tempc = ecr_tempc;
  72. }
  73. public String getStatus() {
  74. return status;
  75. }
  76. public void setStatus(String status) {
  77. this.status = status;
  78. }
  79. public String getEmd_detno() {
  80. return emd_detno;
  81. }
  82. public void setEmd_detno(String emd_detno) {
  83. this.emd_detno = emd_detno;
  84. }
  85. public String getMesUser() {
  86. return mesUser;
  87. }
  88. public void setMesUser(String mesUser) {
  89. this.mesUser = mesUser;
  90. }
  91. public String getMesPwd() {
  92. return mesPwd;
  93. }
  94. public void setMesPwd(String mesPwd) {
  95. this.mesPwd = mesPwd;
  96. }
  97. }