MakeMaterial.java 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. package com.uas.eis.entity;
  2. import com.alibaba.fastjson.annotation.JSONField;
  3. /**
  4. * @author koul
  5. * @email koul@usoftchina.com
  6. * @date 2021-12-07 14:32
  7. */
  8. public class MakeMaterial {
  9. @JSONField(name = "prodNo")
  10. private String mm_code;
  11. @JSONField(name = "lineId")
  12. private int erpid;
  13. @JSONField(name = "itemNo")
  14. private String mm_prodcode;
  15. @JSONField(name = "itemName")
  16. private String pr_detail;
  17. @JSONField(name = "description")
  18. private String pr_spec;
  19. @JSONField(name = "unitNo")
  20. private String pr_unit;
  21. @JSONField(name = "qty")
  22. private Float qty;
  23. @JSONField(name = "totalQty")
  24. private Float mm_qty;
  25. @JSONField(name = "baseQty")
  26. private Float mm_oneuseqty;
  27. @JSONField(name = "type")
  28. private String type;
  29. @JSONField(name = "createdUser")
  30. private String bo_recorder;
  31. @JSONField(name = "createdDateTime")
  32. private String bo_date;
  33. @JSONField(name = "version")
  34. private int bo_version;
  35. @JSONField(name = "companyNo")
  36. private String bo_cop;
  37. @JSONField(name = "oriItemNo")
  38. private String mm_repprodcode;
  39. @JSONField(name = "scarpQty")
  40. private Float mm_balance;
  41. @JSONField(name = "custNo")
  42. private String ma_custcode;
  43. @JSONField(name = "modifiedDateTime")
  44. private String mc_indate;
  45. @JSONField(name = "modifiedUser")
  46. private String mc_recorder;
  47. @JSONField(name = "mesUser")
  48. private String mesUser;
  49. @JSONField(name = "mesPwd")
  50. private String mesPwd;
  51. @JSONField(name = "flag")
  52. private int flag;
  53. public int getErpid() {
  54. return erpid;
  55. }
  56. public void setErpid(int erpid) {
  57. this.erpid = erpid;
  58. }
  59. public String getMesUser() {
  60. return mesUser;
  61. }
  62. public void setMesUser(String mesUser) {
  63. this.mesUser = mesUser;
  64. }
  65. public String getMesPwd() {
  66. return mesPwd;
  67. }
  68. public void setMesPwd(String mesPwd) {
  69. this.mesPwd = mesPwd;
  70. }
  71. public int getFlag() {
  72. return flag;
  73. }
  74. public void setFlag(int flag) {
  75. this.flag = flag;
  76. }
  77. public String getMm_code() {
  78. return mm_code;
  79. }
  80. public void setMm_code(String mm_code) {
  81. this.mm_code = mm_code;
  82. }
  83. public String getMm_prodcode() {
  84. return mm_prodcode;
  85. }
  86. public void setMm_prodcode(String mm_prodcode) {
  87. this.mm_prodcode = mm_prodcode;
  88. }
  89. public String getPr_detail() {
  90. return pr_detail;
  91. }
  92. public void setPr_detail(String pr_detail) {
  93. this.pr_detail = pr_detail;
  94. }
  95. public String getPr_spec() {
  96. return pr_spec;
  97. }
  98. public void setPr_spec(String pr_spec) {
  99. this.pr_spec = pr_spec;
  100. }
  101. public String getPr_unit() {
  102. return pr_unit;
  103. }
  104. public void setPr_unit(String pr_unit) {
  105. this.pr_unit = pr_unit;
  106. }
  107. public Float getQty() {
  108. return qty;
  109. }
  110. public void setQty(Float qty) {
  111. this.qty = qty;
  112. }
  113. public Float getMm_qty() {
  114. return mm_qty;
  115. }
  116. public void setMm_qty(Float mm_qty) {
  117. this.mm_qty = mm_qty;
  118. }
  119. public Float getMm_oneuseqty() {
  120. return mm_oneuseqty;
  121. }
  122. public void setMm_oneuseqty(Float mm_oneuseqty) {
  123. this.mm_oneuseqty = mm_oneuseqty;
  124. }
  125. public String getType() {
  126. return type;
  127. }
  128. public void setType(String type) {
  129. this.type = type;
  130. }
  131. public String getBo_recorder() {
  132. return bo_recorder;
  133. }
  134. public void setBo_recorder(String bo_recorder) {
  135. this.bo_recorder = bo_recorder;
  136. }
  137. public String getBo_date() {
  138. return bo_date;
  139. }
  140. public void setBo_date(String bo_date) {
  141. this.bo_date = bo_date;
  142. }
  143. public int getBo_version() {
  144. return bo_version;
  145. }
  146. public void setBo_version(int bo_version) {
  147. this.bo_version = bo_version;
  148. }
  149. public String getBo_cop() {
  150. return bo_cop;
  151. }
  152. public void setBo_cop(String bo_cop) {
  153. this.bo_cop = bo_cop;
  154. }
  155. public String getMm_repprodcode() {
  156. return mm_repprodcode;
  157. }
  158. public void setMm_repprodcode(String mm_repprodcode) {
  159. this.mm_repprodcode = mm_repprodcode;
  160. }
  161. public Float getMm_balance() {
  162. return mm_balance;
  163. }
  164. public void setMm_balance(Float mm_balance) {
  165. this.mm_balance = mm_balance;
  166. }
  167. public String getMa_custcode() {
  168. return ma_custcode;
  169. }
  170. public void setMa_custcode(String ma_custcode) {
  171. this.ma_custcode = ma_custcode;
  172. }
  173. public String getMc_indate() {
  174. return mc_indate;
  175. }
  176. public void setMc_indate(String mc_indate) {
  177. this.mc_indate = mc_indate;
  178. }
  179. public String getMc_recorder() {
  180. return mc_recorder;
  181. }
  182. public void setMc_recorder(String mc_recorder) {
  183. this.mc_recorder = mc_recorder;
  184. }
  185. }