DocQcDetails.java 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375
  1. package com.ruoyi.ams.qc.domain;
  2. import java.math.BigDecimal;
  3. import java.util.Date;
  4. import com.fasterxml.jackson.annotation.JsonFormat;
  5. import org.apache.commons.lang3.builder.ToStringBuilder;
  6. import org.apache.commons.lang3.builder.ToStringStyle;
  7. import com.ruoyi.common.annotation.Excel;
  8. import com.ruoyi.common.core.domain.BaseEntity;
  9. /**
  10. * 质检对象 doc_qc_details
  11. *
  12. * @author ruoyi
  13. * @date 2022-11-14
  14. */
  15. public class DocQcDetails extends BaseEntity
  16. {
  17. private static final long serialVersionUID = 1L;
  18. /** $column.columnComment */
  19. private String qcno;
  20. /** $column.columnComment */
  21. private String qclineno;
  22. /** $column.columnComment */
  23. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  24. private String linestatus;
  25. /** $column.columnComment */
  26. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  27. private BigDecimal palineno;
  28. /** $column.columnComment */
  29. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  30. private String customerid;
  31. /** $column.columnComment */
  32. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  33. private String sku;
  34. /** $column.columnComment */
  35. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  36. private String lotnum;
  37. /** $column.columnComment */
  38. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  39. private BigDecimal paqtyExpected;
  40. /** $column.columnComment */
  41. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  42. private BigDecimal qcqtyExpected;
  43. /** $column.columnComment */
  44. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  45. private BigDecimal qcqtyCompleted;
  46. /** $column.columnComment */
  47. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  48. private String userdefine1;
  49. /** $column.columnComment */
  50. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  51. private String userdefine2;
  52. /** $column.columnComment */
  53. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  54. private String userdefine3;
  55. /** $column.columnComment */
  56. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  57. private String userdefine4;
  58. /** $column.columnComment */
  59. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  60. private String userdefine5;
  61. /** $column.columnComment */
  62. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  63. private String qcdescr;
  64. /** $column.columnComment */
  65. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  66. private String qcresult;
  67. /** $column.columnComment */
  68. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  69. private String filecontent;
  70. /** $column.columnComment */
  71. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  72. private String notes;
  73. /** $column.columnComment */
  74. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  75. private Date addtime;
  76. /** $column.columnComment */
  77. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  78. private String addwho;
  79. /** $column.columnComment */
  80. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  81. private Date edittime;
  82. /** $column.columnComment */
  83. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  84. private String editwho;
  85. /** $column.columnComment */
  86. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  87. private String packid;
  88. /** $column.columnComment */
  89. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  90. private String transactionid;
  91. public void setQcno(String qcno)
  92. {
  93. this.qcno = qcno;
  94. }
  95. public String getQcno()
  96. {
  97. return qcno;
  98. }
  99. public void setQclineno(String qclineno)
  100. {
  101. this.qclineno = qclineno;
  102. }
  103. public String getQclineno()
  104. {
  105. return qclineno;
  106. }
  107. public void setLinestatus(String linestatus)
  108. {
  109. this.linestatus = linestatus;
  110. }
  111. public String getLinestatus()
  112. {
  113. return linestatus;
  114. }
  115. public void setPalineno(BigDecimal palineno)
  116. {
  117. this.palineno = palineno;
  118. }
  119. public BigDecimal getPalineno()
  120. {
  121. return palineno;
  122. }
  123. public void setCustomerid(String customerid)
  124. {
  125. this.customerid = customerid;
  126. }
  127. public String getCustomerid()
  128. {
  129. return customerid;
  130. }
  131. public void setSku(String sku)
  132. {
  133. this.sku = sku;
  134. }
  135. public String getSku()
  136. {
  137. return sku;
  138. }
  139. public void setLotnum(String lotnum)
  140. {
  141. this.lotnum = lotnum;
  142. }
  143. public String getLotnum()
  144. {
  145. return lotnum;
  146. }
  147. public void setPaqtyExpected(BigDecimal paqtyExpected)
  148. {
  149. this.paqtyExpected = paqtyExpected;
  150. }
  151. public BigDecimal getPaqtyExpected()
  152. {
  153. return paqtyExpected;
  154. }
  155. public void setQcqtyExpected(BigDecimal qcqtyExpected)
  156. {
  157. this.qcqtyExpected = qcqtyExpected;
  158. }
  159. public BigDecimal getQcqtyExpected()
  160. {
  161. return qcqtyExpected;
  162. }
  163. public void setQcqtyCompleted(BigDecimal qcqtyCompleted)
  164. {
  165. this.qcqtyCompleted = qcqtyCompleted;
  166. }
  167. public BigDecimal getQcqtyCompleted()
  168. {
  169. return qcqtyCompleted;
  170. }
  171. public void setUserdefine1(String userdefine1)
  172. {
  173. this.userdefine1 = userdefine1;
  174. }
  175. public String getUserdefine1()
  176. {
  177. return userdefine1;
  178. }
  179. public void setUserdefine2(String userdefine2)
  180. {
  181. this.userdefine2 = userdefine2;
  182. }
  183. public String getUserdefine2()
  184. {
  185. return userdefine2;
  186. }
  187. public void setUserdefine3(String userdefine3)
  188. {
  189. this.userdefine3 = userdefine3;
  190. }
  191. public String getUserdefine3()
  192. {
  193. return userdefine3;
  194. }
  195. public void setUserdefine4(String userdefine4)
  196. {
  197. this.userdefine4 = userdefine4;
  198. }
  199. public String getUserdefine4()
  200. {
  201. return userdefine4;
  202. }
  203. public void setUserdefine5(String userdefine5)
  204. {
  205. this.userdefine5 = userdefine5;
  206. }
  207. public String getUserdefine5()
  208. {
  209. return userdefine5;
  210. }
  211. public void setQcdescr(String qcdescr)
  212. {
  213. this.qcdescr = qcdescr;
  214. }
  215. public String getQcdescr()
  216. {
  217. return qcdescr;
  218. }
  219. public void setQcresult(String qcresult)
  220. {
  221. this.qcresult = qcresult;
  222. }
  223. public String getQcresult()
  224. {
  225. return qcresult;
  226. }
  227. public void setFilecontent(String filecontent)
  228. {
  229. this.filecontent = filecontent;
  230. }
  231. public String getFilecontent()
  232. {
  233. return filecontent;
  234. }
  235. public void setNotes(String notes)
  236. {
  237. this.notes = notes;
  238. }
  239. public String getNotes()
  240. {
  241. return notes;
  242. }
  243. public void setAddtime(Date addtime)
  244. {
  245. this.addtime = addtime;
  246. }
  247. public Date getAddtime()
  248. {
  249. return addtime;
  250. }
  251. public void setAddwho(String addwho)
  252. {
  253. this.addwho = addwho;
  254. }
  255. public String getAddwho()
  256. {
  257. return addwho;
  258. }
  259. public void setEdittime(Date edittime)
  260. {
  261. this.edittime = edittime;
  262. }
  263. public Date getEdittime()
  264. {
  265. return edittime;
  266. }
  267. public void setEditwho(String editwho)
  268. {
  269. this.editwho = editwho;
  270. }
  271. public String getEditwho()
  272. {
  273. return editwho;
  274. }
  275. public void setPackid(String packid)
  276. {
  277. this.packid = packid;
  278. }
  279. public String getPackid()
  280. {
  281. return packid;
  282. }
  283. public void setTransactionid(String transactionid)
  284. {
  285. this.transactionid = transactionid;
  286. }
  287. public String getTransactionid()
  288. {
  289. return transactionid;
  290. }
  291. @Override
  292. public String toString() {
  293. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  294. .append("qcno", getQcno())
  295. .append("qclineno", getQclineno())
  296. .append("linestatus", getLinestatus())
  297. .append("palineno", getPalineno())
  298. .append("customerid", getCustomerid())
  299. .append("sku", getSku())
  300. .append("lotnum", getLotnum())
  301. .append("paqtyExpected", getPaqtyExpected())
  302. .append("qcqtyExpected", getQcqtyExpected())
  303. .append("qcqtyCompleted", getQcqtyCompleted())
  304. .append("userdefine1", getUserdefine1())
  305. .append("userdefine2", getUserdefine2())
  306. .append("userdefine3", getUserdefine3())
  307. .append("userdefine4", getUserdefine4())
  308. .append("userdefine5", getUserdefine5())
  309. .append("qcdescr", getQcdescr())
  310. .append("qcresult", getQcresult())
  311. .append("filecontent", getFilecontent())
  312. .append("notes", getNotes())
  313. .append("addtime", getAddtime())
  314. .append("addwho", getAddwho())
  315. .append("edittime", getEdittime())
  316. .append("editwho", getEditwho())
  317. .append("packid", getPackid())
  318. .append("transactionid", getTransactionid())
  319. .toString();
  320. }
  321. }