TemporaryReceivables.java 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. package com.goafanti.common.model;
  2. import java.math.BigDecimal;
  3. import java.util.Date;
  4. public class TemporaryReceivables {
  5. /**
  6. * This field was generated by MyBatis Generator. This field corresponds to the database column temporary_receivables.id
  7. * @mbg.generated Mon Oct 14 11:33:48 CST 2019
  8. */
  9. private Integer id;
  10. /**
  11. * This field was generated by MyBatis Generator. This field corresponds to the database column temporary_receivables.order_no
  12. * @mbg.generated Mon Oct 14 11:33:48 CST 2019
  13. */
  14. private String orderNo;
  15. /**
  16. * This field was generated by MyBatis Generator. This field corresponds to the database column temporary_receivables.corporate_name
  17. * @mbg.generated Mon Oct 14 11:33:48 CST 2019
  18. */
  19. private String corporateName;
  20. /**
  21. * This field was generated by MyBatis Generator. This field corresponds to the database column temporary_receivables.amount
  22. * @mbg.generated Mon Oct 14 11:33:48 CST 2019
  23. */
  24. private BigDecimal amount;
  25. /**
  26. * This field was generated by MyBatis Generator. This field corresponds to the database column temporary_receivables.receivables_time
  27. * @mbg.generated Mon Oct 14 11:33:48 CST 2019
  28. */
  29. private Date receivablesTime;
  30. /**
  31. * This field was generated by MyBatis Generator. This field corresponds to the database column temporary_receivables.aid
  32. * @mbg.generated Mon Oct 14 11:33:48 CST 2019
  33. */
  34. private String aid;
  35. /**
  36. * This field was generated by MyBatis Generator. This field corresponds to the database column temporary_receivables.remarks
  37. * @mbg.generated Mon Oct 14 11:33:48 CST 2019
  38. */
  39. private String remarks;
  40. /**
  41. * This field was generated by MyBatis Generator. This field corresponds to the database column temporary_receivables.status
  42. * @mbg.generated Mon Oct 14 11:33:48 CST 2019
  43. */
  44. private Integer status;
  45. /**
  46. * This field was generated by MyBatis Generator. This field corresponds to the database column temporary_receivables.create_time
  47. * @mbg.generated Mon Oct 14 11:33:48 CST 2019
  48. */
  49. private Date createTime;
  50. /**
  51. * This field was generated by MyBatis Generator. This field corresponds to the database column temporary_receivables.financial_pay_no
  52. * @mbg.generated Mon Oct 14 11:33:48 CST 2019
  53. */
  54. private String financialPayNo;
  55. /**
  56. * This method was generated by MyBatis Generator. This method returns the value of the database column temporary_receivables.id
  57. * @return the value of temporary_receivables.id
  58. * @mbg.generated Mon Oct 14 11:33:48 CST 2019
  59. */
  60. public Integer getId() {
  61. return id;
  62. }
  63. /**
  64. * This method was generated by MyBatis Generator. This method sets the value of the database column temporary_receivables.id
  65. * @param id the value for temporary_receivables.id
  66. * @mbg.generated Mon Oct 14 11:33:48 CST 2019
  67. */
  68. public void setId(Integer id) {
  69. this.id = id;
  70. }
  71. /**
  72. * This method was generated by MyBatis Generator. This method returns the value of the database column temporary_receivables.order_no
  73. * @return the value of temporary_receivables.order_no
  74. * @mbg.generated Mon Oct 14 11:33:48 CST 2019
  75. */
  76. public String getOrderNo() {
  77. return orderNo;
  78. }
  79. /**
  80. * This method was generated by MyBatis Generator. This method sets the value of the database column temporary_receivables.order_no
  81. * @param orderNo the value for temporary_receivables.order_no
  82. * @mbg.generated Mon Oct 14 11:33:48 CST 2019
  83. */
  84. public void setOrderNo(String orderNo) {
  85. this.orderNo = orderNo;
  86. }
  87. /**
  88. * This method was generated by MyBatis Generator. This method returns the value of the database column temporary_receivables.corporate_name
  89. * @return the value of temporary_receivables.corporate_name
  90. * @mbg.generated Mon Oct 14 11:33:48 CST 2019
  91. */
  92. public String getCorporateName() {
  93. return corporateName;
  94. }
  95. /**
  96. * This method was generated by MyBatis Generator. This method sets the value of the database column temporary_receivables.corporate_name
  97. * @param corporateName the value for temporary_receivables.corporate_name
  98. * @mbg.generated Mon Oct 14 11:33:48 CST 2019
  99. */
  100. public void setCorporateName(String corporateName) {
  101. this.corporateName = corporateName;
  102. }
  103. /**
  104. * This method was generated by MyBatis Generator. This method returns the value of the database column temporary_receivables.amount
  105. * @return the value of temporary_receivables.amount
  106. * @mbg.generated Mon Oct 14 11:33:48 CST 2019
  107. */
  108. public BigDecimal getAmount() {
  109. return amount;
  110. }
  111. /**
  112. * This method was generated by MyBatis Generator. This method sets the value of the database column temporary_receivables.amount
  113. * @param amount the value for temporary_receivables.amount
  114. * @mbg.generated Mon Oct 14 11:33:48 CST 2019
  115. */
  116. public void setAmount(BigDecimal amount) {
  117. this.amount = amount;
  118. }
  119. /**
  120. * This method was generated by MyBatis Generator. This method returns the value of the database column temporary_receivables.receivables_time
  121. * @return the value of temporary_receivables.receivables_time
  122. * @mbg.generated Mon Oct 14 11:33:48 CST 2019
  123. */
  124. public Date getReceivablesTime() {
  125. return receivablesTime;
  126. }
  127. /**
  128. * This method was generated by MyBatis Generator. This method sets the value of the database column temporary_receivables.receivables_time
  129. * @param receivablesTime the value for temporary_receivables.receivables_time
  130. * @mbg.generated Mon Oct 14 11:33:48 CST 2019
  131. */
  132. public void setReceivablesTime(Date receivablesTime) {
  133. this.receivablesTime = receivablesTime;
  134. }
  135. /**
  136. * This method was generated by MyBatis Generator. This method returns the value of the database column temporary_receivables.aid
  137. * @return the value of temporary_receivables.aid
  138. * @mbg.generated Mon Oct 14 11:33:48 CST 2019
  139. */
  140. public String getAid() {
  141. return aid;
  142. }
  143. /**
  144. * This method was generated by MyBatis Generator. This method sets the value of the database column temporary_receivables.aid
  145. * @param aid the value for temporary_receivables.aid
  146. * @mbg.generated Mon Oct 14 11:33:48 CST 2019
  147. */
  148. public void setAid(String aid) {
  149. this.aid = aid;
  150. }
  151. /**
  152. * This method was generated by MyBatis Generator. This method returns the value of the database column temporary_receivables.remarks
  153. * @return the value of temporary_receivables.remarks
  154. * @mbg.generated Mon Oct 14 11:33:48 CST 2019
  155. */
  156. public String getRemarks() {
  157. return remarks;
  158. }
  159. /**
  160. * This method was generated by MyBatis Generator. This method sets the value of the database column temporary_receivables.remarks
  161. * @param remarks the value for temporary_receivables.remarks
  162. * @mbg.generated Mon Oct 14 11:33:48 CST 2019
  163. */
  164. public void setRemarks(String remarks) {
  165. this.remarks = remarks;
  166. }
  167. /**
  168. * This method was generated by MyBatis Generator. This method returns the value of the database column temporary_receivables.status
  169. * @return the value of temporary_receivables.status
  170. * @mbg.generated Mon Oct 14 11:33:48 CST 2019
  171. */
  172. public Integer getStatus() {
  173. return status;
  174. }
  175. /**
  176. * This method was generated by MyBatis Generator. This method sets the value of the database column temporary_receivables.status
  177. * @param status the value for temporary_receivables.status
  178. * @mbg.generated Mon Oct 14 11:33:48 CST 2019
  179. */
  180. public void setStatus(Integer status) {
  181. this.status = status;
  182. }
  183. /**
  184. * This method was generated by MyBatis Generator. This method returns the value of the database column temporary_receivables.create_time
  185. * @return the value of temporary_receivables.create_time
  186. * @mbg.generated Mon Oct 14 11:33:48 CST 2019
  187. */
  188. public Date getCreateTime() {
  189. return createTime;
  190. }
  191. /**
  192. * This method was generated by MyBatis Generator. This method sets the value of the database column temporary_receivables.create_time
  193. * @param createTime the value for temporary_receivables.create_time
  194. * @mbg.generated Mon Oct 14 11:33:48 CST 2019
  195. */
  196. public void setCreateTime(Date createTime) {
  197. this.createTime = createTime;
  198. }
  199. /**
  200. * This method was generated by MyBatis Generator. This method returns the value of the database column temporary_receivables.financial_pay_no
  201. * @return the value of temporary_receivables.financial_pay_no
  202. * @mbg.generated Mon Oct 14 11:33:48 CST 2019
  203. */
  204. public String getFinancialPayNo() {
  205. return financialPayNo;
  206. }
  207. /**
  208. * This method was generated by MyBatis Generator. This method sets the value of the database column temporary_receivables.financial_pay_no
  209. * @param financialPayNo the value for temporary_receivables.financial_pay_no
  210. * @mbg.generated Mon Oct 14 11:33:48 CST 2019
  211. */
  212. public void setFinancialPayNo(String financialPayNo) {
  213. this.financialPayNo = financialPayNo;
  214. }
  215. }