TOrderBack.java 8.7 KB

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