UserTransferLogExample.java 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763
  1. package com.goafanti.common.model;
  2. import java.util.ArrayList;
  3. import java.util.Date;
  4. import java.util.List;
  5. public class UserTransferLogExample {
  6. /**
  7. * This field was generated by MyBatis Generator.
  8. * This field corresponds to the database table user_transfer_log
  9. *
  10. * @mbg.generated Thu Apr 09 11:39:03 CST 2020
  11. */
  12. protected String orderByClause;
  13. /**
  14. * This field was generated by MyBatis Generator.
  15. * This field corresponds to the database table user_transfer_log
  16. *
  17. * @mbg.generated Thu Apr 09 11:39:03 CST 2020
  18. */
  19. protected boolean distinct;
  20. /**
  21. * This field was generated by MyBatis Generator.
  22. * This field corresponds to the database table user_transfer_log
  23. *
  24. * @mbg.generated Thu Apr 09 11:39:03 CST 2020
  25. */
  26. protected List<Criteria> oredCriteria;
  27. /**
  28. * This method was generated by MyBatis Generator.
  29. * This method corresponds to the database table user_transfer_log
  30. *
  31. * @mbg.generated Thu Apr 09 11:39:03 CST 2020
  32. */
  33. public UserTransferLogExample() {
  34. oredCriteria = new ArrayList<Criteria>();
  35. }
  36. /**
  37. * This method was generated by MyBatis Generator.
  38. * This method corresponds to the database table user_transfer_log
  39. *
  40. * @mbg.generated Thu Apr 09 11:39:03 CST 2020
  41. */
  42. public void setOrderByClause(String orderByClause) {
  43. this.orderByClause = orderByClause;
  44. }
  45. /**
  46. * This method was generated by MyBatis Generator.
  47. * This method corresponds to the database table user_transfer_log
  48. *
  49. * @mbg.generated Thu Apr 09 11:39:03 CST 2020
  50. */
  51. public String getOrderByClause() {
  52. return orderByClause;
  53. }
  54. /**
  55. * This method was generated by MyBatis Generator.
  56. * This method corresponds to the database table user_transfer_log
  57. *
  58. * @mbg.generated Thu Apr 09 11:39:03 CST 2020
  59. */
  60. public void setDistinct(boolean distinct) {
  61. this.distinct = distinct;
  62. }
  63. /**
  64. * This method was generated by MyBatis Generator.
  65. * This method corresponds to the database table user_transfer_log
  66. *
  67. * @mbg.generated Thu Apr 09 11:39:03 CST 2020
  68. */
  69. public boolean isDistinct() {
  70. return distinct;
  71. }
  72. /**
  73. * This method was generated by MyBatis Generator.
  74. * This method corresponds to the database table user_transfer_log
  75. *
  76. * @mbg.generated Thu Apr 09 11:39:03 CST 2020
  77. */
  78. public List<Criteria> getOredCriteria() {
  79. return oredCriteria;
  80. }
  81. /**
  82. * This method was generated by MyBatis Generator.
  83. * This method corresponds to the database table user_transfer_log
  84. *
  85. * @mbg.generated Thu Apr 09 11:39:03 CST 2020
  86. */
  87. public void or(Criteria criteria) {
  88. oredCriteria.add(criteria);
  89. }
  90. /**
  91. * This method was generated by MyBatis Generator.
  92. * This method corresponds to the database table user_transfer_log
  93. *
  94. * @mbg.generated Thu Apr 09 11:39:03 CST 2020
  95. */
  96. public Criteria or() {
  97. Criteria criteria = createCriteriaInternal();
  98. oredCriteria.add(criteria);
  99. return criteria;
  100. }
  101. /**
  102. * This method was generated by MyBatis Generator.
  103. * This method corresponds to the database table user_transfer_log
  104. *
  105. * @mbg.generated Thu Apr 09 11:39:03 CST 2020
  106. */
  107. public Criteria createCriteria() {
  108. Criteria criteria = createCriteriaInternal();
  109. if (oredCriteria.size() == 0) {
  110. oredCriteria.add(criteria);
  111. }
  112. return criteria;
  113. }
  114. /**
  115. * This method was generated by MyBatis Generator.
  116. * This method corresponds to the database table user_transfer_log
  117. *
  118. * @mbg.generated Thu Apr 09 11:39:03 CST 2020
  119. */
  120. protected Criteria createCriteriaInternal() {
  121. Criteria criteria = new Criteria();
  122. return criteria;
  123. }
  124. /**
  125. * This method was generated by MyBatis Generator.
  126. * This method corresponds to the database table user_transfer_log
  127. *
  128. * @mbg.generated Thu Apr 09 11:39:03 CST 2020
  129. */
  130. public void clear() {
  131. oredCriteria.clear();
  132. orderByClause = null;
  133. distinct = false;
  134. }
  135. /**
  136. * This class was generated by MyBatis Generator.
  137. * This class corresponds to the database table user_transfer_log
  138. *
  139. * @mbg.generated Thu Apr 09 11:39:03 CST 2020
  140. */
  141. protected abstract static class GeneratedCriteria {
  142. protected List<Criterion> criteria;
  143. protected GeneratedCriteria() {
  144. super();
  145. criteria = new ArrayList<Criterion>();
  146. }
  147. public boolean isValid() {
  148. return criteria.size() > 0;
  149. }
  150. public List<Criterion> getAllCriteria() {
  151. return criteria;
  152. }
  153. public List<Criterion> getCriteria() {
  154. return criteria;
  155. }
  156. protected void addCriterion(String condition) {
  157. if (condition == null) {
  158. throw new RuntimeException("Value for condition cannot be null");
  159. }
  160. criteria.add(new Criterion(condition));
  161. }
  162. protected void addCriterion(String condition, Object value, String property) {
  163. if (value == null) {
  164. throw new RuntimeException("Value for " + property + " cannot be null");
  165. }
  166. criteria.add(new Criterion(condition, value));
  167. }
  168. protected void addCriterion(String condition, Object value1, Object value2, String property) {
  169. if (value1 == null || value2 == null) {
  170. throw new RuntimeException("Between values for " + property + " cannot be null");
  171. }
  172. criteria.add(new Criterion(condition, value1, value2));
  173. }
  174. public Criteria andIdIsNull() {
  175. addCriterion("id is null");
  176. return (Criteria) this;
  177. }
  178. public Criteria andIdIsNotNull() {
  179. addCriterion("id is not null");
  180. return (Criteria) this;
  181. }
  182. public Criteria andIdEqualTo(Integer value) {
  183. addCriterion("id =", value, "id");
  184. return (Criteria) this;
  185. }
  186. public Criteria andIdNotEqualTo(Integer value) {
  187. addCriterion("id <>", value, "id");
  188. return (Criteria) this;
  189. }
  190. public Criteria andIdGreaterThan(Integer value) {
  191. addCriterion("id >", value, "id");
  192. return (Criteria) this;
  193. }
  194. public Criteria andIdGreaterThanOrEqualTo(Integer value) {
  195. addCriterion("id >=", value, "id");
  196. return (Criteria) this;
  197. }
  198. public Criteria andIdLessThan(Integer value) {
  199. addCriterion("id <", value, "id");
  200. return (Criteria) this;
  201. }
  202. public Criteria andIdLessThanOrEqualTo(Integer value) {
  203. addCriterion("id <=", value, "id");
  204. return (Criteria) this;
  205. }
  206. public Criteria andIdIn(List<Integer> values) {
  207. addCriterion("id in", values, "id");
  208. return (Criteria) this;
  209. }
  210. public Criteria andIdNotIn(List<Integer> values) {
  211. addCriterion("id not in", values, "id");
  212. return (Criteria) this;
  213. }
  214. public Criteria andIdBetween(Integer value1, Integer value2) {
  215. addCriterion("id between", value1, value2, "id");
  216. return (Criteria) this;
  217. }
  218. public Criteria andIdNotBetween(Integer value1, Integer value2) {
  219. addCriterion("id not between", value1, value2, "id");
  220. return (Criteria) this;
  221. }
  222. public Criteria andUidIsNull() {
  223. addCriterion("uid is null");
  224. return (Criteria) this;
  225. }
  226. public Criteria andUidIsNotNull() {
  227. addCriterion("uid is not null");
  228. return (Criteria) this;
  229. }
  230. public Criteria andUidEqualTo(String value) {
  231. addCriterion("uid =", value, "uid");
  232. return (Criteria) this;
  233. }
  234. public Criteria andUidNotEqualTo(String value) {
  235. addCriterion("uid <>", value, "uid");
  236. return (Criteria) this;
  237. }
  238. public Criteria andUidGreaterThan(String value) {
  239. addCriterion("uid >", value, "uid");
  240. return (Criteria) this;
  241. }
  242. public Criteria andUidGreaterThanOrEqualTo(String value) {
  243. addCriterion("uid >=", value, "uid");
  244. return (Criteria) this;
  245. }
  246. public Criteria andUidLessThan(String value) {
  247. addCriterion("uid <", value, "uid");
  248. return (Criteria) this;
  249. }
  250. public Criteria andUidLessThanOrEqualTo(String value) {
  251. addCriterion("uid <=", value, "uid");
  252. return (Criteria) this;
  253. }
  254. public Criteria andUidLike(String value) {
  255. addCriterion("uid like", value, "uid");
  256. return (Criteria) this;
  257. }
  258. public Criteria andUidNotLike(String value) {
  259. addCriterion("uid not like", value, "uid");
  260. return (Criteria) this;
  261. }
  262. public Criteria andUidIn(List<String> values) {
  263. addCriterion("uid in", values, "uid");
  264. return (Criteria) this;
  265. }
  266. public Criteria andUidNotIn(List<String> values) {
  267. addCriterion("uid not in", values, "uid");
  268. return (Criteria) this;
  269. }
  270. public Criteria andUidBetween(String value1, String value2) {
  271. addCriterion("uid between", value1, value2, "uid");
  272. return (Criteria) this;
  273. }
  274. public Criteria andUidNotBetween(String value1, String value2) {
  275. addCriterion("uid not between", value1, value2, "uid");
  276. return (Criteria) this;
  277. }
  278. public Criteria andAidIsNull() {
  279. addCriterion("aid is null");
  280. return (Criteria) this;
  281. }
  282. public Criteria andAidIsNotNull() {
  283. addCriterion("aid is not null");
  284. return (Criteria) this;
  285. }
  286. public Criteria andAidEqualTo(String value) {
  287. addCriterion("aid =", value, "aid");
  288. return (Criteria) this;
  289. }
  290. public Criteria andAidNotEqualTo(String value) {
  291. addCriterion("aid <>", value, "aid");
  292. return (Criteria) this;
  293. }
  294. public Criteria andAidGreaterThan(String value) {
  295. addCriterion("aid >", value, "aid");
  296. return (Criteria) this;
  297. }
  298. public Criteria andAidGreaterThanOrEqualTo(String value) {
  299. addCriterion("aid >=", value, "aid");
  300. return (Criteria) this;
  301. }
  302. public Criteria andAidLessThan(String value) {
  303. addCriterion("aid <", value, "aid");
  304. return (Criteria) this;
  305. }
  306. public Criteria andAidLessThanOrEqualTo(String value) {
  307. addCriterion("aid <=", value, "aid");
  308. return (Criteria) this;
  309. }
  310. public Criteria andAidLike(String value) {
  311. addCriterion("aid like", value, "aid");
  312. return (Criteria) this;
  313. }
  314. public Criteria andAidNotLike(String value) {
  315. addCriterion("aid not like", value, "aid");
  316. return (Criteria) this;
  317. }
  318. public Criteria andAidIn(List<String> values) {
  319. addCriterion("aid in", values, "aid");
  320. return (Criteria) this;
  321. }
  322. public Criteria andAidNotIn(List<String> values) {
  323. addCriterion("aid not in", values, "aid");
  324. return (Criteria) this;
  325. }
  326. public Criteria andAidBetween(String value1, String value2) {
  327. addCriterion("aid between", value1, value2, "aid");
  328. return (Criteria) this;
  329. }
  330. public Criteria andAidNotBetween(String value1, String value2) {
  331. addCriterion("aid not between", value1, value2, "aid");
  332. return (Criteria) this;
  333. }
  334. public Criteria andPidIsNull() {
  335. addCriterion("pid is null");
  336. return (Criteria) this;
  337. }
  338. public Criteria andPidIsNotNull() {
  339. addCriterion("pid is not null");
  340. return (Criteria) this;
  341. }
  342. public Criteria andPidEqualTo(String value) {
  343. addCriterion("pid =", value, "pid");
  344. return (Criteria) this;
  345. }
  346. public Criteria andPidNotEqualTo(String value) {
  347. addCriterion("pid <>", value, "pid");
  348. return (Criteria) this;
  349. }
  350. public Criteria andPidGreaterThan(String value) {
  351. addCriterion("pid >", value, "pid");
  352. return (Criteria) this;
  353. }
  354. public Criteria andPidGreaterThanOrEqualTo(String value) {
  355. addCriterion("pid >=", value, "pid");
  356. return (Criteria) this;
  357. }
  358. public Criteria andPidLessThan(String value) {
  359. addCriterion("pid <", value, "pid");
  360. return (Criteria) this;
  361. }
  362. public Criteria andPidLessThanOrEqualTo(String value) {
  363. addCriterion("pid <=", value, "pid");
  364. return (Criteria) this;
  365. }
  366. public Criteria andPidLike(String value) {
  367. addCriterion("pid like", value, "pid");
  368. return (Criteria) this;
  369. }
  370. public Criteria andPidNotLike(String value) {
  371. addCriterion("pid not like", value, "pid");
  372. return (Criteria) this;
  373. }
  374. public Criteria andPidIn(List<String> values) {
  375. addCriterion("pid in", values, "pid");
  376. return (Criteria) this;
  377. }
  378. public Criteria andPidNotIn(List<String> values) {
  379. addCriterion("pid not in", values, "pid");
  380. return (Criteria) this;
  381. }
  382. public Criteria andPidBetween(String value1, String value2) {
  383. addCriterion("pid between", value1, value2, "pid");
  384. return (Criteria) this;
  385. }
  386. public Criteria andPidNotBetween(String value1, String value2) {
  387. addCriterion("pid not between", value1, value2, "pid");
  388. return (Criteria) this;
  389. }
  390. public Criteria andTakeAidIsNull() {
  391. addCriterion("take_aid is null");
  392. return (Criteria) this;
  393. }
  394. public Criteria andTakeAidIsNotNull() {
  395. addCriterion("take_aid is not null");
  396. return (Criteria) this;
  397. }
  398. public Criteria andTakeAidEqualTo(String value) {
  399. addCriterion("take_aid =", value, "takeAid");
  400. return (Criteria) this;
  401. }
  402. public Criteria andTakeAidNotEqualTo(String value) {
  403. addCriterion("take_aid <>", value, "takeAid");
  404. return (Criteria) this;
  405. }
  406. public Criteria andTakeAidGreaterThan(String value) {
  407. addCriterion("take_aid >", value, "takeAid");
  408. return (Criteria) this;
  409. }
  410. public Criteria andTakeAidGreaterThanOrEqualTo(String value) {
  411. addCriterion("take_aid >=", value, "takeAid");
  412. return (Criteria) this;
  413. }
  414. public Criteria andTakeAidLessThan(String value) {
  415. addCriterion("take_aid <", value, "takeAid");
  416. return (Criteria) this;
  417. }
  418. public Criteria andTakeAidLessThanOrEqualTo(String value) {
  419. addCriterion("take_aid <=", value, "takeAid");
  420. return (Criteria) this;
  421. }
  422. public Criteria andTakeAidLike(String value) {
  423. addCriterion("take_aid like", value, "takeAid");
  424. return (Criteria) this;
  425. }
  426. public Criteria andTakeAidNotLike(String value) {
  427. addCriterion("take_aid not like", value, "takeAid");
  428. return (Criteria) this;
  429. }
  430. public Criteria andTakeAidIn(List<String> values) {
  431. addCriterion("take_aid in", values, "takeAid");
  432. return (Criteria) this;
  433. }
  434. public Criteria andTakeAidNotIn(List<String> values) {
  435. addCriterion("take_aid not in", values, "takeAid");
  436. return (Criteria) this;
  437. }
  438. public Criteria andTakeAidBetween(String value1, String value2) {
  439. addCriterion("take_aid between", value1, value2, "takeAid");
  440. return (Criteria) this;
  441. }
  442. public Criteria andTakeAidNotBetween(String value1, String value2) {
  443. addCriterion("take_aid not between", value1, value2, "takeAid");
  444. return (Criteria) this;
  445. }
  446. public Criteria andTypeIsNull() {
  447. addCriterion("type is null");
  448. return (Criteria) this;
  449. }
  450. public Criteria andTypeIsNotNull() {
  451. addCriterion("type is not null");
  452. return (Criteria) this;
  453. }
  454. public Criteria andTypeEqualTo(Integer value) {
  455. addCriterion("type =", value, "type");
  456. return (Criteria) this;
  457. }
  458. public Criteria andTypeNotEqualTo(Integer value) {
  459. addCriterion("type <>", value, "type");
  460. return (Criteria) this;
  461. }
  462. public Criteria andTypeGreaterThan(Integer value) {
  463. addCriterion("type >", value, "type");
  464. return (Criteria) this;
  465. }
  466. public Criteria andTypeGreaterThanOrEqualTo(Integer value) {
  467. addCriterion("type >=", value, "type");
  468. return (Criteria) this;
  469. }
  470. public Criteria andTypeLessThan(Integer value) {
  471. addCriterion("type <", value, "type");
  472. return (Criteria) this;
  473. }
  474. public Criteria andTypeLessThanOrEqualTo(Integer value) {
  475. addCriterion("type <=", value, "type");
  476. return (Criteria) this;
  477. }
  478. public Criteria andTypeIn(List<Integer> values) {
  479. addCriterion("type in", values, "type");
  480. return (Criteria) this;
  481. }
  482. public Criteria andTypeNotIn(List<Integer> values) {
  483. addCriterion("type not in", values, "type");
  484. return (Criteria) this;
  485. }
  486. public Criteria andTypeBetween(Integer value1, Integer value2) {
  487. addCriterion("type between", value1, value2, "type");
  488. return (Criteria) this;
  489. }
  490. public Criteria andTypeNotBetween(Integer value1, Integer value2) {
  491. addCriterion("type not between", value1, value2, "type");
  492. return (Criteria) this;
  493. }
  494. public Criteria andCreateTimeIsNull() {
  495. addCriterion("create_time is null");
  496. return (Criteria) this;
  497. }
  498. public Criteria andCreateTimeIsNotNull() {
  499. addCriterion("create_time is not null");
  500. return (Criteria) this;
  501. }
  502. public Criteria andCreateTimeEqualTo(Date value) {
  503. addCriterion("create_time =", value, "createTime");
  504. return (Criteria) this;
  505. }
  506. public Criteria andCreateTimeNotEqualTo(Date value) {
  507. addCriterion("create_time <>", value, "createTime");
  508. return (Criteria) this;
  509. }
  510. public Criteria andCreateTimeGreaterThan(Date value) {
  511. addCriterion("create_time >", value, "createTime");
  512. return (Criteria) this;
  513. }
  514. public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) {
  515. addCriterion("create_time >=", value, "createTime");
  516. return (Criteria) this;
  517. }
  518. public Criteria andCreateTimeLessThan(Date value) {
  519. addCriterion("create_time <", value, "createTime");
  520. return (Criteria) this;
  521. }
  522. public Criteria andCreateTimeLessThanOrEqualTo(Date value) {
  523. addCriterion("create_time <=", value, "createTime");
  524. return (Criteria) this;
  525. }
  526. public Criteria andCreateTimeIn(List<Date> values) {
  527. addCriterion("create_time in", values, "createTime");
  528. return (Criteria) this;
  529. }
  530. public Criteria andCreateTimeNotIn(List<Date> values) {
  531. addCriterion("create_time not in", values, "createTime");
  532. return (Criteria) this;
  533. }
  534. public Criteria andCreateTimeBetween(Date value1, Date value2) {
  535. addCriterion("create_time between", value1, value2, "createTime");
  536. return (Criteria) this;
  537. }
  538. public Criteria andCreateTimeNotBetween(Date value1, Date value2) {
  539. addCriterion("create_time not between", value1, value2, "createTime");
  540. return (Criteria) this;
  541. }
  542. }
  543. /**
  544. * This class was generated by MyBatis Generator.
  545. * This class corresponds to the database table user_transfer_log
  546. *
  547. * @mbg.generated do_not_delete_during_merge Thu Apr 09 11:39:03 CST 2020
  548. */
  549. public static class Criteria extends GeneratedCriteria {
  550. protected Criteria() {
  551. super();
  552. }
  553. }
  554. /**
  555. * This class was generated by MyBatis Generator.
  556. * This class corresponds to the database table user_transfer_log
  557. *
  558. * @mbg.generated Thu Apr 09 11:39:03 CST 2020
  559. */
  560. public static class Criterion {
  561. private String condition;
  562. private Object value;
  563. private Object secondValue;
  564. private boolean noValue;
  565. private boolean singleValue;
  566. private boolean betweenValue;
  567. private boolean listValue;
  568. private String typeHandler;
  569. public String getCondition() {
  570. return condition;
  571. }
  572. public Object getValue() {
  573. return value;
  574. }
  575. public Object getSecondValue() {
  576. return secondValue;
  577. }
  578. public boolean isNoValue() {
  579. return noValue;
  580. }
  581. public boolean isSingleValue() {
  582. return singleValue;
  583. }
  584. public boolean isBetweenValue() {
  585. return betweenValue;
  586. }
  587. public boolean isListValue() {
  588. return listValue;
  589. }
  590. public String getTypeHandler() {
  591. return typeHandler;
  592. }
  593. protected Criterion(String condition) {
  594. super();
  595. this.condition = condition;
  596. this.typeHandler = null;
  597. this.noValue = true;
  598. }
  599. protected Criterion(String condition, Object value, String typeHandler) {
  600. super();
  601. this.condition = condition;
  602. this.value = value;
  603. this.typeHandler = typeHandler;
  604. if (value instanceof List<?>) {
  605. this.listValue = true;
  606. } else {
  607. this.singleValue = true;
  608. }
  609. }
  610. protected Criterion(String condition, Object value) {
  611. this(condition, value, null);
  612. }
  613. protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
  614. super();
  615. this.condition = condition;
  616. this.value = value;
  617. this.secondValue = secondValue;
  618. this.typeHandler = typeHandler;
  619. this.betweenValue = true;
  620. }
  621. protected Criterion(String condition, Object value, Object secondValue) {
  622. this(condition, value, secondValue, null);
  623. }
  624. }
  625. }