OfficialFeePrice.java 6.9 KB

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