TOrderBillNew.java 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479
  1. package com.goafanti.common.model;
  2. import java.math.BigDecimal;
  3. import java.util.Date;
  4. import org.apache.commons.lang3.time.DateFormatUtils;
  5. import com.goafanti.common.constant.AFTConstants;
  6. public class TOrderBillNew {
  7. /**
  8. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_bill_new.bill_no
  9. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  10. */
  11. private String billNo;
  12. /**
  13. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_bill_new.order_no
  14. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  15. */
  16. private String orderNo;
  17. /**
  18. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_bill_new.creater
  19. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  20. */
  21. private String creater;
  22. /**
  23. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_bill_new.create_time
  24. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  25. */
  26. private Date createTime;
  27. /**
  28. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_bill_new.update_time
  29. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  30. */
  31. private Date updateTime;
  32. /**
  33. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_bill_new.payee_id
  34. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  35. */
  36. private String payeeId;
  37. /**
  38. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_bill_new.payer_id
  39. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  40. */
  41. private String payerId;
  42. /**
  43. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_bill_new.transaction_amount
  44. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  45. */
  46. private BigDecimal transactionAmount;
  47. /**
  48. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_bill_new.transaction_subject
  49. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  50. */
  51. private Integer transactionSubject;
  52. /**
  53. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_bill_new.transaction_channel
  54. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  55. */
  56. private Integer transactionChannel;
  57. /**
  58. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_bill_new.remarks
  59. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  60. */
  61. private String remarks;
  62. /**
  63. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_bill_new.confirm_sign
  64. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  65. */
  66. private Integer confirmSign;
  67. /**
  68. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_bill_new.delete_sign
  69. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  70. */
  71. private Byte deleteSign;
  72. /**
  73. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_bill_new.financial_pay_no
  74. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  75. */
  76. private String financialPayNo;
  77. /**
  78. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_bill_new.financial_pay_time
  79. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  80. */
  81. private Date financialPayTime;
  82. /**
  83. * This field was generated by MyBatis Generator. This field corresponds to the database column t_order_bill_new.type
  84. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  85. */
  86. private Integer type;
  87. /**
  88. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_bill_new.bill_no
  89. * @return the value of t_order_bill_new.bill_no
  90. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  91. */
  92. public String getBillNo() {
  93. return billNo;
  94. }
  95. /**
  96. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_bill_new.bill_no
  97. * @param billNo the value for t_order_bill_new.bill_no
  98. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  99. */
  100. public void setBillNo(String billNo) {
  101. this.billNo = billNo;
  102. }
  103. /**
  104. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_bill_new.order_no
  105. * @return the value of t_order_bill_new.order_no
  106. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  107. */
  108. public String getOrderNo() {
  109. return orderNo;
  110. }
  111. /**
  112. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_bill_new.order_no
  113. * @param orderNo the value for t_order_bill_new.order_no
  114. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  115. */
  116. public void setOrderNo(String orderNo) {
  117. this.orderNo = orderNo;
  118. }
  119. /**
  120. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_bill_new.creater
  121. * @return the value of t_order_bill_new.creater
  122. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  123. */
  124. public String getCreater() {
  125. return creater;
  126. }
  127. /**
  128. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_bill_new.creater
  129. * @param creater the value for t_order_bill_new.creater
  130. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  131. */
  132. public void setCreater(String creater) {
  133. this.creater = creater;
  134. }
  135. /**
  136. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_bill_new.create_time
  137. * @return the value of t_order_bill_new.create_time
  138. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  139. */
  140. public Date getCreateTime() {
  141. return createTime;
  142. }
  143. /**
  144. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_bill_new.create_time
  145. * @param createTime the value for t_order_bill_new.create_time
  146. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  147. */
  148. public void setCreateTime(Date createTime) {
  149. this.createTime = createTime;
  150. }
  151. /**
  152. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_bill_new.update_time
  153. * @return the value of t_order_bill_new.update_time
  154. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  155. */
  156. public Date getUpdateTime() {
  157. return updateTime;
  158. }
  159. /**
  160. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_bill_new.update_time
  161. * @param updateTime the value for t_order_bill_new.update_time
  162. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  163. */
  164. public void setUpdateTime(Date updateTime) {
  165. this.updateTime = updateTime;
  166. }
  167. /**
  168. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_bill_new.payee_id
  169. * @return the value of t_order_bill_new.payee_id
  170. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  171. */
  172. public String getPayeeId() {
  173. return payeeId;
  174. }
  175. /**
  176. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_bill_new.payee_id
  177. * @param payeeId the value for t_order_bill_new.payee_id
  178. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  179. */
  180. public void setPayeeId(String payeeId) {
  181. this.payeeId = payeeId;
  182. }
  183. /**
  184. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_bill_new.payer_id
  185. * @return the value of t_order_bill_new.payer_id
  186. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  187. */
  188. public String getPayerId() {
  189. return payerId;
  190. }
  191. /**
  192. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_bill_new.payer_id
  193. * @param payerId the value for t_order_bill_new.payer_id
  194. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  195. */
  196. public void setPayerId(String payerId) {
  197. this.payerId = payerId;
  198. }
  199. /**
  200. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_bill_new.transaction_amount
  201. * @return the value of t_order_bill_new.transaction_amount
  202. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  203. */
  204. public BigDecimal getTransactionAmount() {
  205. return transactionAmount;
  206. }
  207. /**
  208. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_bill_new.transaction_amount
  209. * @param transactionAmount the value for t_order_bill_new.transaction_amount
  210. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  211. */
  212. public void setTransactionAmount(BigDecimal transactionAmount) {
  213. this.transactionAmount = transactionAmount;
  214. }
  215. /**
  216. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_bill_new.transaction_subject
  217. * @return the value of t_order_bill_new.transaction_subject
  218. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  219. */
  220. public Integer getTransactionSubject() {
  221. return transactionSubject;
  222. }
  223. /**
  224. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_bill_new.transaction_subject
  225. * @param transactionSubject the value for t_order_bill_new.transaction_subject
  226. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  227. */
  228. public void setTransactionSubject(Integer transactionSubject) {
  229. this.transactionSubject = transactionSubject;
  230. }
  231. /**
  232. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_bill_new.transaction_channel
  233. * @return the value of t_order_bill_new.transaction_channel
  234. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  235. */
  236. public Integer getTransactionChannel() {
  237. return transactionChannel;
  238. }
  239. /**
  240. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_bill_new.transaction_channel
  241. * @param transactionChannel the value for t_order_bill_new.transaction_channel
  242. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  243. */
  244. public void setTransactionChannel(Integer transactionChannel) {
  245. this.transactionChannel = transactionChannel;
  246. }
  247. /**
  248. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_bill_new.remarks
  249. * @return the value of t_order_bill_new.remarks
  250. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  251. */
  252. public String getRemarks() {
  253. return remarks;
  254. }
  255. /**
  256. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_bill_new.remarks
  257. * @param remarks the value for t_order_bill_new.remarks
  258. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  259. */
  260. public void setRemarks(String remarks) {
  261. this.remarks = remarks;
  262. }
  263. /**
  264. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_bill_new.confirm_sign
  265. * @return the value of t_order_bill_new.confirm_sign
  266. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  267. */
  268. public Integer getConfirmSign() {
  269. return confirmSign;
  270. }
  271. /**
  272. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_bill_new.confirm_sign
  273. * @param confirmSign the value for t_order_bill_new.confirm_sign
  274. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  275. */
  276. public void setConfirmSign(Integer confirmSign) {
  277. this.confirmSign = confirmSign;
  278. }
  279. /**
  280. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_bill_new.delete_sign
  281. * @return the value of t_order_bill_new.delete_sign
  282. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  283. */
  284. public Byte getDeleteSign() {
  285. return deleteSign;
  286. }
  287. /**
  288. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_bill_new.delete_sign
  289. * @param deleteSign the value for t_order_bill_new.delete_sign
  290. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  291. */
  292. public void setDeleteSign(Byte deleteSign) {
  293. this.deleteSign = deleteSign;
  294. }
  295. /**
  296. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_bill_new.financial_pay_no
  297. * @return the value of t_order_bill_new.financial_pay_no
  298. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  299. */
  300. public String getFinancialPayNo() {
  301. return financialPayNo;
  302. }
  303. /**
  304. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_bill_new.financial_pay_no
  305. * @param financialPayNo the value for t_order_bill_new.financial_pay_no
  306. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  307. */
  308. public void setFinancialPayNo(String financialPayNo) {
  309. this.financialPayNo = financialPayNo;
  310. }
  311. /**
  312. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_bill_new.financial_pay_time
  313. * @return the value of t_order_bill_new.financial_pay_time
  314. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  315. */
  316. public Date getFinancialPayTime() {
  317. return financialPayTime;
  318. }
  319. /**
  320. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_bill_new.financial_pay_time
  321. * @param financialPayTime the value for t_order_bill_new.financial_pay_time
  322. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  323. */
  324. public void setFinancialPayTime(Date financialPayTime) {
  325. this.financialPayTime = financialPayTime;
  326. }
  327. /**
  328. * This method was generated by MyBatis Generator. This method returns the value of the database column t_order_bill_new.type
  329. * @return the value of t_order_bill_new.type
  330. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  331. */
  332. public Integer getType() {
  333. return type;
  334. }
  335. /**
  336. * This method was generated by MyBatis Generator. This method sets the value of the database column t_order_bill_new.type
  337. * @param type the value for t_order_bill_new.type
  338. * @mbg.generated Mon Oct 14 09:49:04 CST 2019
  339. */
  340. public void setType(Integer type) {
  341. this.type = type;
  342. }
  343. private String financialPayTimes;
  344. private String payerName;
  345. private String payeeName;
  346. private String createrName;
  347. private String startTime;
  348. private String endTime;
  349. private String departmentId;
  350. private String saleId;
  351. private String saleName;
  352. private String departmentName;
  353. private String createTimes;
  354. public String getFinancialPayTimes() {
  355. return this.financialPayTimes;
  356. }
  357. public void setFinancialPayTimes(String financialPayTimes) {
  358. this.financialPayTimes = financialPayTimes;
  359. }
  360. public String getPayerName() {
  361. return payerName;
  362. }
  363. public void setPayerName(String payerName) {
  364. this.payerName = payerName;
  365. }
  366. public String getPayeeName() {
  367. return payeeName;
  368. }
  369. public void setPayeeName(String payeeName) {
  370. this.payeeName = payeeName;
  371. }
  372. public String getCreaterName() {
  373. return createrName;
  374. }
  375. public void setCreaterName(String createrName) {
  376. this.createrName = createrName;
  377. }
  378. public String getStartTime() {
  379. return startTime;
  380. }
  381. public void setStartTime(String startTime) {
  382. this.startTime = startTime;
  383. }
  384. public String getEndTime() {
  385. return endTime;
  386. }
  387. public void setEndTime(String endTime) {
  388. this.endTime = endTime;
  389. }
  390. public String getDepartmentId() {
  391. return departmentId;
  392. }
  393. public void setDepartmentId(String departmentId) {
  394. this.departmentId = departmentId;
  395. }
  396. public String getSaleId() {
  397. return saleId;
  398. }
  399. public void setSaleId(String saleId) {
  400. this.saleId = saleId;
  401. }
  402. public String getSaleName() {
  403. return saleName;
  404. }
  405. public void setSaleName(String saleName) {
  406. this.saleName = saleName;
  407. }
  408. public String getDepartmentName() {
  409. return departmentName;
  410. }
  411. public void setDepartmentName(String departmentName) {
  412. this.departmentName = departmentName;
  413. }
  414. public String getCreateTimes() {
  415. return this.createTimes;
  416. }
  417. public void setCreateTimes(String createTimes) {
  418. this.createTimes = createTimes;
  419. }
  420. }