TOrderOutsource.java 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307
  1. package com.goafanti.common.model;
  2. import java.math.BigDecimal;
  3. import java.util.Date;
  4. public class TOrderOutsource {
  5. /**
  6. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_outsource.id
  7. * @mbg.generated Mon Aug 12 10:26:36 CST 2019
  8. */
  9. private Integer id;
  10. /**
  11. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_outsource.order_no
  12. * @mbg.generated Mon Aug 12 10:26:36 CST 2019
  13. */
  14. private String orderNo;
  15. /**
  16. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_outsource.refund_status
  17. * @mbg.generated Mon Aug 12 10:26:36 CST 2019
  18. */
  19. private Integer refundStatus;
  20. /**
  21. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_outsource.create_time
  22. * @mbg.generated Mon Aug 12 10:26:36 CST 2019
  23. */
  24. private Date createTime;
  25. /**
  26. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_outsource.remarks
  27. * @mbg.generated Mon Aug 12 10:26:36 CST 2019
  28. */
  29. private String remarks;
  30. /**
  31. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_outsource.attachment_url
  32. * @mbg.generated Mon Aug 12 10:26:36 CST 2019
  33. */
  34. private String attachmentUrl;
  35. /**
  36. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_outsource.picture_url
  37. * @mbg.generated Mon Aug 12 10:26:36 CST 2019
  38. */
  39. private String pictureUrl;
  40. /**
  41. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_outsource.amount
  42. * @mbg.generated Mon Aug 12 10:26:36 CST 2019
  43. */
  44. private BigDecimal amount;
  45. /**
  46. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_outsource.company_name
  47. * @mbg.generated Mon Aug 12 10:26:36 CST 2019
  48. */
  49. private String companyName;
  50. /**
  51. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_outsource.audit_time
  52. * @mbg.generated Mon Aug 12 10:26:36 CST 2019
  53. */
  54. private Date auditTime;
  55. /**
  56. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_outsource.unit_price
  57. * @mbg.generated Mon Aug 12 10:26:36 CST 2019
  58. */
  59. private BigDecimal unitPrice;
  60. /**
  61. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_outsource.unit_number
  62. * @mbg.generated Mon Aug 12 10:26:36 CST 2019
  63. */
  64. private Integer unitNumber;
  65. /**
  66. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_outsource.outsource_remarks
  67. * @mbg.generated Mon Aug 12 10:26:36 CST 2019
  68. */
  69. private String outsourceRemarks;
  70. /**
  71. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_outsource.id
  72. * @return the value of t_order_outsource.id
  73. * @mbg.generated Mon Aug 12 10:26:36 CST 2019
  74. */
  75. public Integer getId() {
  76. return id;
  77. }
  78. /**
  79. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_outsource.id
  80. * @param id the value for t_order_outsource.id
  81. * @mbg.generated Mon Aug 12 10:26:36 CST 2019
  82. */
  83. public void setId(Integer id) {
  84. this.id = id;
  85. }
  86. /**
  87. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_outsource.order_no
  88. * @return the value of t_order_outsource.order_no
  89. * @mbg.generated Mon Aug 12 10:26:36 CST 2019
  90. */
  91. public String getOrderNo() {
  92. return orderNo;
  93. }
  94. /**
  95. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_outsource.order_no
  96. * @param orderNo the value for t_order_outsource.order_no
  97. * @mbg.generated Mon Aug 12 10:26:36 CST 2019
  98. */
  99. public void setOrderNo(String orderNo) {
  100. this.orderNo = orderNo;
  101. }
  102. /**
  103. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_outsource.refund_status
  104. * @return the value of t_order_outsource.refund_status
  105. * @mbg.generated Mon Aug 12 10:26:36 CST 2019
  106. */
  107. public Integer getRefundStatus() {
  108. return refundStatus;
  109. }
  110. /**
  111. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_outsource.refund_status
  112. * @param refundStatus the value for t_order_outsource.refund_status
  113. * @mbg.generated Mon Aug 12 10:26:36 CST 2019
  114. */
  115. public void setRefundStatus(Integer refundStatus) {
  116. this.refundStatus = refundStatus;
  117. }
  118. /**
  119. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_outsource.create_time
  120. * @return the value of t_order_outsource.create_time
  121. * @mbg.generated Mon Aug 12 10:26:36 CST 2019
  122. */
  123. public Date getCreateTime() {
  124. return createTime;
  125. }
  126. /**
  127. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_outsource.create_time
  128. * @param createTime the value for t_order_outsource.create_time
  129. * @mbg.generated Mon Aug 12 10:26:36 CST 2019
  130. */
  131. public void setCreateTime(Date createTime) {
  132. this.createTime = createTime;
  133. }
  134. /**
  135. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_outsource.remarks
  136. * @return the value of t_order_outsource.remarks
  137. * @mbg.generated Mon Aug 12 10:26:36 CST 2019
  138. */
  139. public String getRemarks() {
  140. return remarks;
  141. }
  142. /**
  143. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_outsource.remarks
  144. * @param remarks the value for t_order_outsource.remarks
  145. * @mbg.generated Mon Aug 12 10:26:36 CST 2019
  146. */
  147. public void setRemarks(String remarks) {
  148. this.remarks = remarks;
  149. }
  150. /**
  151. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_outsource.attachment_url
  152. * @return the value of t_order_outsource.attachment_url
  153. * @mbg.generated Mon Aug 12 10:26:36 CST 2019
  154. */
  155. public String getAttachmentUrl() {
  156. return attachmentUrl;
  157. }
  158. /**
  159. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_outsource.attachment_url
  160. * @param attachmentUrl the value for t_order_outsource.attachment_url
  161. * @mbg.generated Mon Aug 12 10:26:36 CST 2019
  162. */
  163. public void setAttachmentUrl(String attachmentUrl) {
  164. this.attachmentUrl = attachmentUrl;
  165. }
  166. /**
  167. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_outsource.picture_url
  168. * @return the value of t_order_outsource.picture_url
  169. * @mbg.generated Mon Aug 12 10:26:36 CST 2019
  170. */
  171. public String getPictureUrl() {
  172. return pictureUrl;
  173. }
  174. /**
  175. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_outsource.picture_url
  176. * @param pictureUrl the value for t_order_outsource.picture_url
  177. * @mbg.generated Mon Aug 12 10:26:36 CST 2019
  178. */
  179. public void setPictureUrl(String pictureUrl) {
  180. this.pictureUrl = pictureUrl;
  181. }
  182. /**
  183. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_outsource.amount
  184. * @return the value of t_order_outsource.amount
  185. * @mbg.generated Mon Aug 12 10:26:36 CST 2019
  186. */
  187. public BigDecimal getAmount() {
  188. return amount;
  189. }
  190. /**
  191. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_outsource.amount
  192. * @param amount the value for t_order_outsource.amount
  193. * @mbg.generated Mon Aug 12 10:26:36 CST 2019
  194. */
  195. public void setAmount(BigDecimal amount) {
  196. this.amount = amount;
  197. }
  198. /**
  199. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_outsource.company_name
  200. * @return the value of t_order_outsource.company_name
  201. * @mbg.generated Mon Aug 12 10:26:36 CST 2019
  202. */
  203. public String getCompanyName() {
  204. return companyName;
  205. }
  206. /**
  207. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_outsource.company_name
  208. * @param companyName the value for t_order_outsource.company_name
  209. * @mbg.generated Mon Aug 12 10:26:36 CST 2019
  210. */
  211. public void setCompanyName(String companyName) {
  212. this.companyName = companyName;
  213. }
  214. /**
  215. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_outsource.audit_time
  216. * @return the value of t_order_outsource.audit_time
  217. * @mbg.generated Mon Aug 12 10:26:36 CST 2019
  218. */
  219. public Date getAuditTime() {
  220. return auditTime;
  221. }
  222. /**
  223. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_outsource.audit_time
  224. * @param auditTime the value for t_order_outsource.audit_time
  225. * @mbg.generated Mon Aug 12 10:26:36 CST 2019
  226. */
  227. public void setAuditTime(Date auditTime) {
  228. this.auditTime = auditTime;
  229. }
  230. /**
  231. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_outsource.unit_price
  232. * @return the value of t_order_outsource.unit_price
  233. * @mbg.generated Mon Aug 12 10:26:36 CST 2019
  234. */
  235. public BigDecimal getUnitPrice() {
  236. return unitPrice;
  237. }
  238. /**
  239. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_outsource.unit_price
  240. * @param unitPrice the value for t_order_outsource.unit_price
  241. * @mbg.generated Mon Aug 12 10:26:36 CST 2019
  242. */
  243. public void setUnitPrice(BigDecimal unitPrice) {
  244. this.unitPrice = unitPrice;
  245. }
  246. /**
  247. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_outsource.unit_number
  248. * @return the value of t_order_outsource.unit_number
  249. * @mbg.generated Mon Aug 12 10:26:36 CST 2019
  250. */
  251. public Integer getUnitNumber() {
  252. return unitNumber;
  253. }
  254. /**
  255. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_outsource.unit_number
  256. * @param unitNumber the value for t_order_outsource.unit_number
  257. * @mbg.generated Mon Aug 12 10:26:36 CST 2019
  258. */
  259. public void setUnitNumber(Integer unitNumber) {
  260. this.unitNumber = unitNumber;
  261. }
  262. /**
  263. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_outsource.outsource_remarks
  264. * @return the value of t_order_outsource.outsource_remarks
  265. * @mbg.generated Mon Aug 12 10:26:36 CST 2019
  266. */
  267. public String getOutsourceRemarks() {
  268. return outsourceRemarks;
  269. }
  270. /**
  271. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_outsource.outsource_remarks
  272. * @param outsourceRemarks the value for t_order_outsource.outsource_remarks
  273. * @mbg.generated Mon Aug 12 10:26:36 CST 2019
  274. */
  275. public void setOutsourceRemarks(String outsourceRemarks) {
  276. this.outsourceRemarks = outsourceRemarks;
  277. }
  278. }