TpAccInf.java 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325
  1. package com.minpay.db.table.model;
  2. import com.startup.minpay.frame.data.AbstractMINBean;
  3. public class TpAccInf extends AbstractMINBean {
  4. /**
  5. * This field was generated by MyBatis Generator.
  6. * This field corresponds to the database column tp_acc_inf.ACF_NO
  7. *
  8. * @mbggenerated
  9. */
  10. private String no;
  11. /**
  12. * This field was generated by MyBatis Generator.
  13. * This field corresponds to the database column tp_acc_inf.ACF_TYPE
  14. *
  15. * @mbggenerated
  16. */
  17. private String type;
  18. /**
  19. * This field was generated by MyBatis Generator.
  20. * This field corresponds to the database column tp_acc_inf.ACF_OWNER
  21. *
  22. * @mbggenerated
  23. */
  24. private String owner;
  25. /**
  26. * This field was generated by MyBatis Generator.
  27. * This field corresponds to the database column tp_acc_inf.ACF_NAME
  28. *
  29. * @mbggenerated
  30. */
  31. private String name;
  32. /**
  33. * This field was generated by MyBatis Generator.
  34. * This field corresponds to the database column tp_acc_inf.ACF_AMT
  35. *
  36. * @mbggenerated
  37. */
  38. private String amt;
  39. /**
  40. * This field was generated by MyBatis Generator.
  41. * This field corresponds to the database column tp_acc_inf.ACF_BALANCE
  42. *
  43. * @mbggenerated
  44. */
  45. private String balance;
  46. /**
  47. * This field was generated by MyBatis Generator.
  48. * This field corresponds to the database column tp_acc_inf.ACF_CREATE_USER
  49. *
  50. * @mbggenerated
  51. */
  52. private String createUser;
  53. /**
  54. * This field was generated by MyBatis Generator.
  55. * This field corresponds to the database column tp_acc_inf.ACF_CREATE_TIME
  56. *
  57. * @mbggenerated
  58. */
  59. private String createTime;
  60. /**
  61. * This field was generated by MyBatis Generator.
  62. * This field corresponds to the database column tp_acc_inf.ACF_MODIFY_USER
  63. *
  64. * @mbggenerated
  65. */
  66. private String modifyUser;
  67. /**
  68. * This field was generated by MyBatis Generator.
  69. * This field corresponds to the database column tp_acc_inf.ACF_MODIFY_TIME
  70. *
  71. * @mbggenerated
  72. */
  73. private String modifyTime;
  74. /**
  75. * This method was generated by MyBatis Generator.
  76. * This method returns the value of the database column tp_acc_inf.ACF_NO
  77. *
  78. * @return the value of tp_acc_inf.ACF_NO
  79. *
  80. * @mbggenerated
  81. */
  82. public String getNo() {
  83. return no;
  84. }
  85. /**
  86. * This method was generated by MyBatis Generator.
  87. * This method sets the value of the database column tp_acc_inf.ACF_NO
  88. *
  89. * @param no the value for tp_acc_inf.ACF_NO
  90. *
  91. * @mbggenerated
  92. */
  93. public void setNo(String no) {
  94. this.no = no == null ? null : no.trim();
  95. }
  96. /**
  97. * This method was generated by MyBatis Generator.
  98. * This method returns the value of the database column tp_acc_inf.ACF_TYPE
  99. *
  100. * @return the value of tp_acc_inf.ACF_TYPE
  101. *
  102. * @mbggenerated
  103. */
  104. public String getType() {
  105. return type;
  106. }
  107. /**
  108. * This method was generated by MyBatis Generator.
  109. * This method sets the value of the database column tp_acc_inf.ACF_TYPE
  110. *
  111. * @param type the value for tp_acc_inf.ACF_TYPE
  112. *
  113. * @mbggenerated
  114. */
  115. public void setType(String type) {
  116. this.type = type == null ? null : type.trim();
  117. }
  118. /**
  119. * This method was generated by MyBatis Generator.
  120. * This method returns the value of the database column tp_acc_inf.ACF_OWNER
  121. *
  122. * @return the value of tp_acc_inf.ACF_OWNER
  123. *
  124. * @mbggenerated
  125. */
  126. public String getOwner() {
  127. return owner;
  128. }
  129. /**
  130. * This method was generated by MyBatis Generator.
  131. * This method sets the value of the database column tp_acc_inf.ACF_OWNER
  132. *
  133. * @param owner the value for tp_acc_inf.ACF_OWNER
  134. *
  135. * @mbggenerated
  136. */
  137. public void setOwner(String owner) {
  138. this.owner = owner == null ? null : owner.trim();
  139. }
  140. /**
  141. * This method was generated by MyBatis Generator.
  142. * This method returns the value of the database column tp_acc_inf.ACF_NAME
  143. *
  144. * @return the value of tp_acc_inf.ACF_NAME
  145. *
  146. * @mbggenerated
  147. */
  148. public String getName() {
  149. return name;
  150. }
  151. /**
  152. * This method was generated by MyBatis Generator.
  153. * This method sets the value of the database column tp_acc_inf.ACF_NAME
  154. *
  155. * @param name the value for tp_acc_inf.ACF_NAME
  156. *
  157. * @mbggenerated
  158. */
  159. public void setName(String name) {
  160. this.name = name == null ? null : name.trim();
  161. }
  162. /**
  163. * This method was generated by MyBatis Generator.
  164. * This method returns the value of the database column tp_acc_inf.ACF_AMT
  165. *
  166. * @return the value of tp_acc_inf.ACF_AMT
  167. *
  168. * @mbggenerated
  169. */
  170. public String getAmt() {
  171. return amt;
  172. }
  173. /**
  174. * This method was generated by MyBatis Generator.
  175. * This method sets the value of the database column tp_acc_inf.ACF_AMT
  176. *
  177. * @param amt the value for tp_acc_inf.ACF_AMT
  178. *
  179. * @mbggenerated
  180. */
  181. public void setAmt(String amt) {
  182. this.amt = amt == null ? null : amt.trim();
  183. }
  184. /**
  185. * This method was generated by MyBatis Generator.
  186. * This method returns the value of the database column tp_acc_inf.ACF_BALANCE
  187. *
  188. * @return the value of tp_acc_inf.ACF_BALANCE
  189. *
  190. * @mbggenerated
  191. */
  192. public String getBalance() {
  193. return balance;
  194. }
  195. /**
  196. * This method was generated by MyBatis Generator.
  197. * This method sets the value of the database column tp_acc_inf.ACF_BALANCE
  198. *
  199. * @param balance the value for tp_acc_inf.ACF_BALANCE
  200. *
  201. * @mbggenerated
  202. */
  203. public void setBalance(String balance) {
  204. this.balance = balance == null ? null : balance.trim();
  205. }
  206. /**
  207. * This method was generated by MyBatis Generator.
  208. * This method returns the value of the database column tp_acc_inf.ACF_CREATE_USER
  209. *
  210. * @return the value of tp_acc_inf.ACF_CREATE_USER
  211. *
  212. * @mbggenerated
  213. */
  214. public String getCreateUser() {
  215. return createUser;
  216. }
  217. /**
  218. * This method was generated by MyBatis Generator.
  219. * This method sets the value of the database column tp_acc_inf.ACF_CREATE_USER
  220. *
  221. * @param createUser the value for tp_acc_inf.ACF_CREATE_USER
  222. *
  223. * @mbggenerated
  224. */
  225. public void setCreateUser(String createUser) {
  226. this.createUser = createUser == null ? null : createUser.trim();
  227. }
  228. /**
  229. * This method was generated by MyBatis Generator.
  230. * This method returns the value of the database column tp_acc_inf.ACF_CREATE_TIME
  231. *
  232. * @return the value of tp_acc_inf.ACF_CREATE_TIME
  233. *
  234. * @mbggenerated
  235. */
  236. public String getCreateTime() {
  237. return createTime;
  238. }
  239. /**
  240. * This method was generated by MyBatis Generator.
  241. * This method sets the value of the database column tp_acc_inf.ACF_CREATE_TIME
  242. *
  243. * @param createTime the value for tp_acc_inf.ACF_CREATE_TIME
  244. *
  245. * @mbggenerated
  246. */
  247. public void setCreateTime(String createTime) {
  248. this.createTime = createTime == null ? null : createTime.trim();
  249. }
  250. /**
  251. * This method was generated by MyBatis Generator.
  252. * This method returns the value of the database column tp_acc_inf.ACF_MODIFY_USER
  253. *
  254. * @return the value of tp_acc_inf.ACF_MODIFY_USER
  255. *
  256. * @mbggenerated
  257. */
  258. public String getModifyUser() {
  259. return modifyUser;
  260. }
  261. /**
  262. * This method was generated by MyBatis Generator.
  263. * This method sets the value of the database column tp_acc_inf.ACF_MODIFY_USER
  264. *
  265. * @param modifyUser the value for tp_acc_inf.ACF_MODIFY_USER
  266. *
  267. * @mbggenerated
  268. */
  269. public void setModifyUser(String modifyUser) {
  270. this.modifyUser = modifyUser == null ? null : modifyUser.trim();
  271. }
  272. /**
  273. * This method was generated by MyBatis Generator.
  274. * This method returns the value of the database column tp_acc_inf.ACF_MODIFY_TIME
  275. *
  276. * @return the value of tp_acc_inf.ACF_MODIFY_TIME
  277. *
  278. * @mbggenerated
  279. */
  280. public String getModifyTime() {
  281. return modifyTime;
  282. }
  283. /**
  284. * This method was generated by MyBatis Generator.
  285. * This method sets the value of the database column tp_acc_inf.ACF_MODIFY_TIME
  286. *
  287. * @param modifyTime the value for tp_acc_inf.ACF_MODIFY_TIME
  288. *
  289. * @mbggenerated
  290. */
  291. public void setModifyTime(String modifyTime) {
  292. this.modifyTime = modifyTime == null ? null : modifyTime.trim();
  293. }
  294. }