PaymentNodeExample.java 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233
  1. package com.goafanti.common.model;
  2. import java.math.BigDecimal;
  3. import java.util.ArrayList;
  4. import java.util.Date;
  5. import java.util.List;
  6. public class PaymentNodeExample {
  7. /**
  8. * This field was generated by MyBatis Generator. This field corresponds to the database table payment_node
  9. * @mbg.generated Tue Jul 07 13:58:53 CST 2020
  10. */
  11. protected String orderByClause;
  12. /**
  13. * This field was generated by MyBatis Generator. This field corresponds to the database table payment_node
  14. * @mbg.generated Tue Jul 07 13:58:53 CST 2020
  15. */
  16. protected boolean distinct;
  17. /**
  18. * This field was generated by MyBatis Generator. This field corresponds to the database table payment_node
  19. * @mbg.generated Tue Jul 07 13:58:53 CST 2020
  20. */
  21. protected List<Criteria> oredCriteria;
  22. /**
  23. * This method was generated by MyBatis Generator. This method corresponds to the database table payment_node
  24. * @mbg.generated Tue Jul 07 13:58:53 CST 2020
  25. */
  26. public PaymentNodeExample() {
  27. oredCriteria = new ArrayList<Criteria>();
  28. }
  29. /**
  30. * This method was generated by MyBatis Generator. This method corresponds to the database table payment_node
  31. * @mbg.generated Tue Jul 07 13:58:53 CST 2020
  32. */
  33. public void setOrderByClause(String orderByClause) {
  34. this.orderByClause = orderByClause;
  35. }
  36. /**
  37. * This method was generated by MyBatis Generator. This method corresponds to the database table payment_node
  38. * @mbg.generated Tue Jul 07 13:58:53 CST 2020
  39. */
  40. public String getOrderByClause() {
  41. return orderByClause;
  42. }
  43. /**
  44. * This method was generated by MyBatis Generator. This method corresponds to the database table payment_node
  45. * @mbg.generated Tue Jul 07 13:58:53 CST 2020
  46. */
  47. public void setDistinct(boolean distinct) {
  48. this.distinct = distinct;
  49. }
  50. /**
  51. * This method was generated by MyBatis Generator. This method corresponds to the database table payment_node
  52. * @mbg.generated Tue Jul 07 13:58:53 CST 2020
  53. */
  54. public boolean isDistinct() {
  55. return distinct;
  56. }
  57. /**
  58. * This method was generated by MyBatis Generator. This method corresponds to the database table payment_node
  59. * @mbg.generated Tue Jul 07 13:58:53 CST 2020
  60. */
  61. public List<Criteria> getOredCriteria() {
  62. return oredCriteria;
  63. }
  64. /**
  65. * This method was generated by MyBatis Generator. This method corresponds to the database table payment_node
  66. * @mbg.generated Tue Jul 07 13:58:53 CST 2020
  67. */
  68. public void or(Criteria criteria) {
  69. oredCriteria.add(criteria);
  70. }
  71. /**
  72. * This method was generated by MyBatis Generator. This method corresponds to the database table payment_node
  73. * @mbg.generated Tue Jul 07 13:58:53 CST 2020
  74. */
  75. public Criteria or() {
  76. Criteria criteria = createCriteriaInternal();
  77. oredCriteria.add(criteria);
  78. return criteria;
  79. }
  80. /**
  81. * This method was generated by MyBatis Generator. This method corresponds to the database table payment_node
  82. * @mbg.generated Tue Jul 07 13:58:53 CST 2020
  83. */
  84. public Criteria createCriteria() {
  85. Criteria criteria = createCriteriaInternal();
  86. if (oredCriteria.size() == 0) {
  87. oredCriteria.add(criteria);
  88. }
  89. return criteria;
  90. }
  91. /**
  92. * This method was generated by MyBatis Generator. This method corresponds to the database table payment_node
  93. * @mbg.generated Tue Jul 07 13:58:53 CST 2020
  94. */
  95. protected Criteria createCriteriaInternal() {
  96. Criteria criteria = new Criteria();
  97. return criteria;
  98. }
  99. /**
  100. * This method was generated by MyBatis Generator. This method corresponds to the database table payment_node
  101. * @mbg.generated Tue Jul 07 13:58:53 CST 2020
  102. */
  103. public void clear() {
  104. oredCriteria.clear();
  105. orderByClause = null;
  106. distinct = false;
  107. }
  108. /**
  109. * This class was generated by MyBatis Generator. This class corresponds to the database table payment_node
  110. * @mbg.generated Tue Jul 07 13:58:53 CST 2020
  111. */
  112. protected abstract static class GeneratedCriteria {
  113. protected List<Criterion> criteria;
  114. protected GeneratedCriteria() {
  115. super();
  116. criteria = new ArrayList<Criterion>();
  117. }
  118. public boolean isValid() {
  119. return criteria.size() > 0;
  120. }
  121. public List<Criterion> getAllCriteria() {
  122. return criteria;
  123. }
  124. public List<Criterion> getCriteria() {
  125. return criteria;
  126. }
  127. protected void addCriterion(String condition) {
  128. if (condition == null) {
  129. throw new RuntimeException("Value for condition cannot be null");
  130. }
  131. criteria.add(new Criterion(condition));
  132. }
  133. protected void addCriterion(String condition, Object value, String property) {
  134. if (value == null) {
  135. throw new RuntimeException("Value for " + property + " cannot be null");
  136. }
  137. criteria.add(new Criterion(condition, value));
  138. }
  139. protected void addCriterion(String condition, Object value1, Object value2, String property) {
  140. if (value1 == null || value2 == null) {
  141. throw new RuntimeException("Between values for " + property + " cannot be null");
  142. }
  143. criteria.add(new Criterion(condition, value1, value2));
  144. }
  145. public Criteria andIdIsNull() {
  146. addCriterion("id is null");
  147. return (Criteria) this;
  148. }
  149. public Criteria andIdIsNotNull() {
  150. addCriterion("id is not null");
  151. return (Criteria) this;
  152. }
  153. public Criteria andIdEqualTo(Integer value) {
  154. addCriterion("id =", value, "id");
  155. return (Criteria) this;
  156. }
  157. public Criteria andIdNotEqualTo(Integer value) {
  158. addCriterion("id <>", value, "id");
  159. return (Criteria) this;
  160. }
  161. public Criteria andIdGreaterThan(Integer value) {
  162. addCriterion("id >", value, "id");
  163. return (Criteria) this;
  164. }
  165. public Criteria andIdGreaterThanOrEqualTo(Integer value) {
  166. addCriterion("id >=", value, "id");
  167. return (Criteria) this;
  168. }
  169. public Criteria andIdLessThan(Integer value) {
  170. addCriterion("id <", value, "id");
  171. return (Criteria) this;
  172. }
  173. public Criteria andIdLessThanOrEqualTo(Integer value) {
  174. addCriterion("id <=", value, "id");
  175. return (Criteria) this;
  176. }
  177. public Criteria andIdIn(List<Integer> values) {
  178. addCriterion("id in", values, "id");
  179. return (Criteria) this;
  180. }
  181. public Criteria andIdNotIn(List<Integer> values) {
  182. addCriterion("id not in", values, "id");
  183. return (Criteria) this;
  184. }
  185. public Criteria andIdBetween(Integer value1, Integer value2) {
  186. addCriterion("id between", value1, value2, "id");
  187. return (Criteria) this;
  188. }
  189. public Criteria andIdNotBetween(Integer value1, Integer value2) {
  190. addCriterion("id not between", value1, value2, "id");
  191. return (Criteria) this;
  192. }
  193. public Criteria andTidIsNull() {
  194. addCriterion("tid is null");
  195. return (Criteria) this;
  196. }
  197. public Criteria andTidIsNotNull() {
  198. addCriterion("tid is not null");
  199. return (Criteria) this;
  200. }
  201. public Criteria andTidEqualTo(Integer value) {
  202. addCriterion("tid =", value, "tid");
  203. return (Criteria) this;
  204. }
  205. public Criteria andTidNotEqualTo(Integer value) {
  206. addCriterion("tid <>", value, "tid");
  207. return (Criteria) this;
  208. }
  209. public Criteria andTidGreaterThan(Integer value) {
  210. addCriterion("tid >", value, "tid");
  211. return (Criteria) this;
  212. }
  213. public Criteria andTidGreaterThanOrEqualTo(Integer value) {
  214. addCriterion("tid >=", value, "tid");
  215. return (Criteria) this;
  216. }
  217. public Criteria andTidLessThan(Integer value) {
  218. addCriterion("tid <", value, "tid");
  219. return (Criteria) this;
  220. }
  221. public Criteria andTidLessThanOrEqualTo(Integer value) {
  222. addCriterion("tid <=", value, "tid");
  223. return (Criteria) this;
  224. }
  225. public Criteria andTidIn(List<Integer> values) {
  226. addCriterion("tid in", values, "tid");
  227. return (Criteria) this;
  228. }
  229. public Criteria andTidNotIn(List<Integer> values) {
  230. addCriterion("tid not in", values, "tid");
  231. return (Criteria) this;
  232. }
  233. public Criteria andTidBetween(Integer value1, Integer value2) {
  234. addCriterion("tid between", value1, value2, "tid");
  235. return (Criteria) this;
  236. }
  237. public Criteria andTidNotBetween(Integer value1, Integer value2) {
  238. addCriterion("tid not between", value1, value2, "tid");
  239. return (Criteria) this;
  240. }
  241. public Criteria andCidIsNull() {
  242. addCriterion("cid is null");
  243. return (Criteria) this;
  244. }
  245. public Criteria andCidIsNotNull() {
  246. addCriterion("cid is not null");
  247. return (Criteria) this;
  248. }
  249. public Criteria andCidEqualTo(Integer value) {
  250. addCriterion("cid =", value, "cid");
  251. return (Criteria) this;
  252. }
  253. public Criteria andCidNotEqualTo(Integer value) {
  254. addCriterion("cid <>", value, "cid");
  255. return (Criteria) this;
  256. }
  257. public Criteria andCidGreaterThan(Integer value) {
  258. addCriterion("cid >", value, "cid");
  259. return (Criteria) this;
  260. }
  261. public Criteria andCidGreaterThanOrEqualTo(Integer value) {
  262. addCriterion("cid >=", value, "cid");
  263. return (Criteria) this;
  264. }
  265. public Criteria andCidLessThan(Integer value) {
  266. addCriterion("cid <", value, "cid");
  267. return (Criteria) this;
  268. }
  269. public Criteria andCidLessThanOrEqualTo(Integer value) {
  270. addCriterion("cid <=", value, "cid");
  271. return (Criteria) this;
  272. }
  273. public Criteria andCidIn(List<Integer> values) {
  274. addCriterion("cid in", values, "cid");
  275. return (Criteria) this;
  276. }
  277. public Criteria andCidNotIn(List<Integer> values) {
  278. addCriterion("cid not in", values, "cid");
  279. return (Criteria) this;
  280. }
  281. public Criteria andCidBetween(Integer value1, Integer value2) {
  282. addCriterion("cid between", value1, value2, "cid");
  283. return (Criteria) this;
  284. }
  285. public Criteria andCidNotBetween(Integer value1, Integer value2) {
  286. addCriterion("cid not between", value1, value2, "cid");
  287. return (Criteria) this;
  288. }
  289. public Criteria andCompanyNameIsNull() {
  290. addCriterion("company_name is null");
  291. return (Criteria) this;
  292. }
  293. public Criteria andCompanyNameIsNotNull() {
  294. addCriterion("company_name is not null");
  295. return (Criteria) this;
  296. }
  297. public Criteria andCompanyNameEqualTo(String value) {
  298. addCriterion("company_name =", value, "companyName");
  299. return (Criteria) this;
  300. }
  301. public Criteria andCompanyNameNotEqualTo(String value) {
  302. addCriterion("company_name <>", value, "companyName");
  303. return (Criteria) this;
  304. }
  305. public Criteria andCompanyNameGreaterThan(String value) {
  306. addCriterion("company_name >", value, "companyName");
  307. return (Criteria) this;
  308. }
  309. public Criteria andCompanyNameGreaterThanOrEqualTo(String value) {
  310. addCriterion("company_name >=", value, "companyName");
  311. return (Criteria) this;
  312. }
  313. public Criteria andCompanyNameLessThan(String value) {
  314. addCriterion("company_name <", value, "companyName");
  315. return (Criteria) this;
  316. }
  317. public Criteria andCompanyNameLessThanOrEqualTo(String value) {
  318. addCriterion("company_name <=", value, "companyName");
  319. return (Criteria) this;
  320. }
  321. public Criteria andCompanyNameLike(String value) {
  322. addCriterion("company_name like", value, "companyName");
  323. return (Criteria) this;
  324. }
  325. public Criteria andCompanyNameNotLike(String value) {
  326. addCriterion("company_name not like", value, "companyName");
  327. return (Criteria) this;
  328. }
  329. public Criteria andCompanyNameIn(List<String> values) {
  330. addCriterion("company_name in", values, "companyName");
  331. return (Criteria) this;
  332. }
  333. public Criteria andCompanyNameNotIn(List<String> values) {
  334. addCriterion("company_name not in", values, "companyName");
  335. return (Criteria) this;
  336. }
  337. public Criteria andCompanyNameBetween(String value1, String value2) {
  338. addCriterion("company_name between", value1, value2, "companyName");
  339. return (Criteria) this;
  340. }
  341. public Criteria andCompanyNameNotBetween(String value1, String value2) {
  342. addCriterion("company_name not between", value1, value2, "companyName");
  343. return (Criteria) this;
  344. }
  345. public Criteria andProjectTypeIsNull() {
  346. addCriterion("project_type is null");
  347. return (Criteria) this;
  348. }
  349. public Criteria andProjectTypeIsNotNull() {
  350. addCriterion("project_type is not null");
  351. return (Criteria) this;
  352. }
  353. public Criteria andProjectTypeEqualTo(Integer value) {
  354. addCriterion("project_type =", value, "projectType");
  355. return (Criteria) this;
  356. }
  357. public Criteria andProjectTypeNotEqualTo(Integer value) {
  358. addCriterion("project_type <>", value, "projectType");
  359. return (Criteria) this;
  360. }
  361. public Criteria andProjectTypeGreaterThan(Integer value) {
  362. addCriterion("project_type >", value, "projectType");
  363. return (Criteria) this;
  364. }
  365. public Criteria andProjectTypeGreaterThanOrEqualTo(Integer value) {
  366. addCriterion("project_type >=", value, "projectType");
  367. return (Criteria) this;
  368. }
  369. public Criteria andProjectTypeLessThan(Integer value) {
  370. addCriterion("project_type <", value, "projectType");
  371. return (Criteria) this;
  372. }
  373. public Criteria andProjectTypeLessThanOrEqualTo(Integer value) {
  374. addCriterion("project_type <=", value, "projectType");
  375. return (Criteria) this;
  376. }
  377. public Criteria andProjectTypeIn(List<Integer> values) {
  378. addCriterion("project_type in", values, "projectType");
  379. return (Criteria) this;
  380. }
  381. public Criteria andProjectTypeNotIn(List<Integer> values) {
  382. addCriterion("project_type not in", values, "projectType");
  383. return (Criteria) this;
  384. }
  385. public Criteria andProjectTypeBetween(Integer value1, Integer value2) {
  386. addCriterion("project_type between", value1, value2, "projectType");
  387. return (Criteria) this;
  388. }
  389. public Criteria andProjectTypeNotBetween(Integer value1, Integer value2) {
  390. addCriterion("project_type not between", value1, value2, "projectType");
  391. return (Criteria) this;
  392. }
  393. public Criteria andDunTypeIsNull() {
  394. addCriterion("dun_type is null");
  395. return (Criteria) this;
  396. }
  397. public Criteria andDunTypeIsNotNull() {
  398. addCriterion("dun_type is not null");
  399. return (Criteria) this;
  400. }
  401. public Criteria andDunTypeEqualTo(Integer value) {
  402. addCriterion("dun_type =", value, "dunType");
  403. return (Criteria) this;
  404. }
  405. public Criteria andDunTypeNotEqualTo(Integer value) {
  406. addCriterion("dun_type <>", value, "dunType");
  407. return (Criteria) this;
  408. }
  409. public Criteria andDunTypeGreaterThan(Integer value) {
  410. addCriterion("dun_type >", value, "dunType");
  411. return (Criteria) this;
  412. }
  413. public Criteria andDunTypeGreaterThanOrEqualTo(Integer value) {
  414. addCriterion("dun_type >=", value, "dunType");
  415. return (Criteria) this;
  416. }
  417. public Criteria andDunTypeLessThan(Integer value) {
  418. addCriterion("dun_type <", value, "dunType");
  419. return (Criteria) this;
  420. }
  421. public Criteria andDunTypeLessThanOrEqualTo(Integer value) {
  422. addCriterion("dun_type <=", value, "dunType");
  423. return (Criteria) this;
  424. }
  425. public Criteria andDunTypeIn(List<Integer> values) {
  426. addCriterion("dun_type in", values, "dunType");
  427. return (Criteria) this;
  428. }
  429. public Criteria andDunTypeNotIn(List<Integer> values) {
  430. addCriterion("dun_type not in", values, "dunType");
  431. return (Criteria) this;
  432. }
  433. public Criteria andDunTypeBetween(Integer value1, Integer value2) {
  434. addCriterion("dun_type between", value1, value2, "dunType");
  435. return (Criteria) this;
  436. }
  437. public Criteria andDunTypeNotBetween(Integer value1, Integer value2) {
  438. addCriterion("dun_type not between", value1, value2, "dunType");
  439. return (Criteria) this;
  440. }
  441. public Criteria andUnitPriceIsNull() {
  442. addCriterion("unit_price is null");
  443. return (Criteria) this;
  444. }
  445. public Criteria andUnitPriceIsNotNull() {
  446. addCriterion("unit_price is not null");
  447. return (Criteria) this;
  448. }
  449. public Criteria andUnitPriceEqualTo(BigDecimal value) {
  450. addCriterion("unit_price =", value, "unitPrice");
  451. return (Criteria) this;
  452. }
  453. public Criteria andUnitPriceNotEqualTo(BigDecimal value) {
  454. addCriterion("unit_price <>", value, "unitPrice");
  455. return (Criteria) this;
  456. }
  457. public Criteria andUnitPriceGreaterThan(BigDecimal value) {
  458. addCriterion("unit_price >", value, "unitPrice");
  459. return (Criteria) this;
  460. }
  461. public Criteria andUnitPriceGreaterThanOrEqualTo(BigDecimal value) {
  462. addCriterion("unit_price >=", value, "unitPrice");
  463. return (Criteria) this;
  464. }
  465. public Criteria andUnitPriceLessThan(BigDecimal value) {
  466. addCriterion("unit_price <", value, "unitPrice");
  467. return (Criteria) this;
  468. }
  469. public Criteria andUnitPriceLessThanOrEqualTo(BigDecimal value) {
  470. addCriterion("unit_price <=", value, "unitPrice");
  471. return (Criteria) this;
  472. }
  473. public Criteria andUnitPriceIn(List<BigDecimal> values) {
  474. addCriterion("unit_price in", values, "unitPrice");
  475. return (Criteria) this;
  476. }
  477. public Criteria andUnitPriceNotIn(List<BigDecimal> values) {
  478. addCriterion("unit_price not in", values, "unitPrice");
  479. return (Criteria) this;
  480. }
  481. public Criteria andUnitPriceBetween(BigDecimal value1, BigDecimal value2) {
  482. addCriterion("unit_price between", value1, value2, "unitPrice");
  483. return (Criteria) this;
  484. }
  485. public Criteria andUnitPriceNotBetween(BigDecimal value1, BigDecimal value2) {
  486. addCriterion("unit_price not between", value1, value2, "unitPrice");
  487. return (Criteria) this;
  488. }
  489. public Criteria andQuantityIsNull() {
  490. addCriterion("quantity is null");
  491. return (Criteria) this;
  492. }
  493. public Criteria andQuantityIsNotNull() {
  494. addCriterion("quantity is not null");
  495. return (Criteria) this;
  496. }
  497. public Criteria andQuantityEqualTo(Integer value) {
  498. addCriterion("quantity =", value, "quantity");
  499. return (Criteria) this;
  500. }
  501. public Criteria andQuantityNotEqualTo(Integer value) {
  502. addCriterion("quantity <>", value, "quantity");
  503. return (Criteria) this;
  504. }
  505. public Criteria andQuantityGreaterThan(Integer value) {
  506. addCriterion("quantity >", value, "quantity");
  507. return (Criteria) this;
  508. }
  509. public Criteria andQuantityGreaterThanOrEqualTo(Integer value) {
  510. addCriterion("quantity >=", value, "quantity");
  511. return (Criteria) this;
  512. }
  513. public Criteria andQuantityLessThan(Integer value) {
  514. addCriterion("quantity <", value, "quantity");
  515. return (Criteria) this;
  516. }
  517. public Criteria andQuantityLessThanOrEqualTo(Integer value) {
  518. addCriterion("quantity <=", value, "quantity");
  519. return (Criteria) this;
  520. }
  521. public Criteria andQuantityIn(List<Integer> values) {
  522. addCriterion("quantity in", values, "quantity");
  523. return (Criteria) this;
  524. }
  525. public Criteria andQuantityNotIn(List<Integer> values) {
  526. addCriterion("quantity not in", values, "quantity");
  527. return (Criteria) this;
  528. }
  529. public Criteria andQuantityBetween(Integer value1, Integer value2) {
  530. addCriterion("quantity between", value1, value2, "quantity");
  531. return (Criteria) this;
  532. }
  533. public Criteria andQuantityNotBetween(Integer value1, Integer value2) {
  534. addCriterion("quantity not between", value1, value2, "quantity");
  535. return (Criteria) this;
  536. }
  537. public Criteria andTotalAmountIsNull() {
  538. addCriterion("total_amount is null");
  539. return (Criteria) this;
  540. }
  541. public Criteria andTotalAmountIsNotNull() {
  542. addCriterion("total_amount is not null");
  543. return (Criteria) this;
  544. }
  545. public Criteria andTotalAmountEqualTo(BigDecimal value) {
  546. addCriterion("total_amount =", value, "totalAmount");
  547. return (Criteria) this;
  548. }
  549. public Criteria andTotalAmountNotEqualTo(BigDecimal value) {
  550. addCriterion("total_amount <>", value, "totalAmount");
  551. return (Criteria) this;
  552. }
  553. public Criteria andTotalAmountGreaterThan(BigDecimal value) {
  554. addCriterion("total_amount >", value, "totalAmount");
  555. return (Criteria) this;
  556. }
  557. public Criteria andTotalAmountGreaterThanOrEqualTo(BigDecimal value) {
  558. addCriterion("total_amount >=", value, "totalAmount");
  559. return (Criteria) this;
  560. }
  561. public Criteria andTotalAmountLessThan(BigDecimal value) {
  562. addCriterion("total_amount <", value, "totalAmount");
  563. return (Criteria) this;
  564. }
  565. public Criteria andTotalAmountLessThanOrEqualTo(BigDecimal value) {
  566. addCriterion("total_amount <=", value, "totalAmount");
  567. return (Criteria) this;
  568. }
  569. public Criteria andTotalAmountIn(List<BigDecimal> values) {
  570. addCriterion("total_amount in", values, "totalAmount");
  571. return (Criteria) this;
  572. }
  573. public Criteria andTotalAmountNotIn(List<BigDecimal> values) {
  574. addCriterion("total_amount not in", values, "totalAmount");
  575. return (Criteria) this;
  576. }
  577. public Criteria andTotalAmountBetween(BigDecimal value1, BigDecimal value2) {
  578. addCriterion("total_amount between", value1, value2, "totalAmount");
  579. return (Criteria) this;
  580. }
  581. public Criteria andTotalAmountNotBetween(BigDecimal value1, BigDecimal value2) {
  582. addCriterion("total_amount not between", value1, value2, "totalAmount");
  583. return (Criteria) this;
  584. }
  585. public Criteria andPartyAmountIsNull() {
  586. addCriterion("party_amount is null");
  587. return (Criteria) this;
  588. }
  589. public Criteria andPartyAmountIsNotNull() {
  590. addCriterion("party_amount is not null");
  591. return (Criteria) this;
  592. }
  593. public Criteria andPartyAmountEqualTo(BigDecimal value) {
  594. addCriterion("party_amount =", value, "partyAmount");
  595. return (Criteria) this;
  596. }
  597. public Criteria andPartyAmountNotEqualTo(BigDecimal value) {
  598. addCriterion("party_amount <>", value, "partyAmount");
  599. return (Criteria) this;
  600. }
  601. public Criteria andPartyAmountGreaterThan(BigDecimal value) {
  602. addCriterion("party_amount >", value, "partyAmount");
  603. return (Criteria) this;
  604. }
  605. public Criteria andPartyAmountGreaterThanOrEqualTo(BigDecimal value) {
  606. addCriterion("party_amount >=", value, "partyAmount");
  607. return (Criteria) this;
  608. }
  609. public Criteria andPartyAmountLessThan(BigDecimal value) {
  610. addCriterion("party_amount <", value, "partyAmount");
  611. return (Criteria) this;
  612. }
  613. public Criteria andPartyAmountLessThanOrEqualTo(BigDecimal value) {
  614. addCriterion("party_amount <=", value, "partyAmount");
  615. return (Criteria) this;
  616. }
  617. public Criteria andPartyAmountIn(List<BigDecimal> values) {
  618. addCriterion("party_amount in", values, "partyAmount");
  619. return (Criteria) this;
  620. }
  621. public Criteria andPartyAmountNotIn(List<BigDecimal> values) {
  622. addCriterion("party_amount not in", values, "partyAmount");
  623. return (Criteria) this;
  624. }
  625. public Criteria andPartyAmountBetween(BigDecimal value1, BigDecimal value2) {
  626. addCriterion("party_amount between", value1, value2, "partyAmount");
  627. return (Criteria) this;
  628. }
  629. public Criteria andPartyAmountNotBetween(BigDecimal value1, BigDecimal value2) {
  630. addCriterion("party_amount not between", value1, value2, "partyAmount");
  631. return (Criteria) this;
  632. }
  633. public Criteria andPartyTimeIsNull() {
  634. addCriterion("party_time is null");
  635. return (Criteria) this;
  636. }
  637. public Criteria andPartyTimeIsNotNull() {
  638. addCriterion("party_time is not null");
  639. return (Criteria) this;
  640. }
  641. public Criteria andPartyTimeEqualTo(Date value) {
  642. addCriterion("party_time =", value, "partyTime");
  643. return (Criteria) this;
  644. }
  645. public Criteria andPartyTimeNotEqualTo(Date value) {
  646. addCriterion("party_time <>", value, "partyTime");
  647. return (Criteria) this;
  648. }
  649. public Criteria andPartyTimeGreaterThan(Date value) {
  650. addCriterion("party_time >", value, "partyTime");
  651. return (Criteria) this;
  652. }
  653. public Criteria andPartyTimeGreaterThanOrEqualTo(Date value) {
  654. addCriterion("party_time >=", value, "partyTime");
  655. return (Criteria) this;
  656. }
  657. public Criteria andPartyTimeLessThan(Date value) {
  658. addCriterion("party_time <", value, "partyTime");
  659. return (Criteria) this;
  660. }
  661. public Criteria andPartyTimeLessThanOrEqualTo(Date value) {
  662. addCriterion("party_time <=", value, "partyTime");
  663. return (Criteria) this;
  664. }
  665. public Criteria andPartyTimeIn(List<Date> values) {
  666. addCriterion("party_time in", values, "partyTime");
  667. return (Criteria) this;
  668. }
  669. public Criteria andPartyTimeNotIn(List<Date> values) {
  670. addCriterion("party_time not in", values, "partyTime");
  671. return (Criteria) this;
  672. }
  673. public Criteria andPartyTimeBetween(Date value1, Date value2) {
  674. addCriterion("party_time between", value1, value2, "partyTime");
  675. return (Criteria) this;
  676. }
  677. public Criteria andPartyTimeNotBetween(Date value1, Date value2) {
  678. addCriterion("party_time not between", value1, value2, "partyTime");
  679. return (Criteria) this;
  680. }
  681. public Criteria andCreateTimeIsNull() {
  682. addCriterion("create_time is null");
  683. return (Criteria) this;
  684. }
  685. public Criteria andCreateTimeIsNotNull() {
  686. addCriterion("create_time is not null");
  687. return (Criteria) this;
  688. }
  689. public Criteria andCreateTimeEqualTo(Date value) {
  690. addCriterion("create_time =", value, "createTime");
  691. return (Criteria) this;
  692. }
  693. public Criteria andCreateTimeNotEqualTo(Date value) {
  694. addCriterion("create_time <>", value, "createTime");
  695. return (Criteria) this;
  696. }
  697. public Criteria andCreateTimeGreaterThan(Date value) {
  698. addCriterion("create_time >", value, "createTime");
  699. return (Criteria) this;
  700. }
  701. public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) {
  702. addCriterion("create_time >=", value, "createTime");
  703. return (Criteria) this;
  704. }
  705. public Criteria andCreateTimeLessThan(Date value) {
  706. addCriterion("create_time <", value, "createTime");
  707. return (Criteria) this;
  708. }
  709. public Criteria andCreateTimeLessThanOrEqualTo(Date value) {
  710. addCriterion("create_time <=", value, "createTime");
  711. return (Criteria) this;
  712. }
  713. public Criteria andCreateTimeIn(List<Date> values) {
  714. addCriterion("create_time in", values, "createTime");
  715. return (Criteria) this;
  716. }
  717. public Criteria andCreateTimeNotIn(List<Date> values) {
  718. addCriterion("create_time not in", values, "createTime");
  719. return (Criteria) this;
  720. }
  721. public Criteria andCreateTimeBetween(Date value1, Date value2) {
  722. addCriterion("create_time between", value1, value2, "createTime");
  723. return (Criteria) this;
  724. }
  725. public Criteria andCreateTimeNotBetween(Date value1, Date value2) {
  726. addCriterion("create_time not between", value1, value2, "createTime");
  727. return (Criteria) this;
  728. }
  729. public Criteria andDunStatusIsNull() {
  730. addCriterion("dun_status is null");
  731. return (Criteria) this;
  732. }
  733. public Criteria andDunStatusIsNotNull() {
  734. addCriterion("dun_status is not null");
  735. return (Criteria) this;
  736. }
  737. public Criteria andDunStatusEqualTo(Integer value) {
  738. addCriterion("dun_status =", value, "dunStatus");
  739. return (Criteria) this;
  740. }
  741. public Criteria andDunStatusNotEqualTo(Integer value) {
  742. addCriterion("dun_status <>", value, "dunStatus");
  743. return (Criteria) this;
  744. }
  745. public Criteria andDunStatusGreaterThan(Integer value) {
  746. addCriterion("dun_status >", value, "dunStatus");
  747. return (Criteria) this;
  748. }
  749. public Criteria andDunStatusGreaterThanOrEqualTo(Integer value) {
  750. addCriterion("dun_status >=", value, "dunStatus");
  751. return (Criteria) this;
  752. }
  753. public Criteria andDunStatusLessThan(Integer value) {
  754. addCriterion("dun_status <", value, "dunStatus");
  755. return (Criteria) this;
  756. }
  757. public Criteria andDunStatusLessThanOrEqualTo(Integer value) {
  758. addCriterion("dun_status <=", value, "dunStatus");
  759. return (Criteria) this;
  760. }
  761. public Criteria andDunStatusIn(List<Integer> values) {
  762. addCriterion("dun_status in", values, "dunStatus");
  763. return (Criteria) this;
  764. }
  765. public Criteria andDunStatusNotIn(List<Integer> values) {
  766. addCriterion("dun_status not in", values, "dunStatus");
  767. return (Criteria) this;
  768. }
  769. public Criteria andDunStatusBetween(Integer value1, Integer value2) {
  770. addCriterion("dun_status between", value1, value2, "dunStatus");
  771. return (Criteria) this;
  772. }
  773. public Criteria andDunStatusNotBetween(Integer value1, Integer value2) {
  774. addCriterion("dun_status not between", value1, value2, "dunStatus");
  775. return (Criteria) this;
  776. }
  777. public Criteria andEffectiveCountIsNull() {
  778. addCriterion("effective_count is null");
  779. return (Criteria) this;
  780. }
  781. public Criteria andEffectiveCountIsNotNull() {
  782. addCriterion("effective_count is not null");
  783. return (Criteria) this;
  784. }
  785. public Criteria andEffectiveCountEqualTo(Integer value) {
  786. addCriterion("effective_count =", value, "effectiveCount");
  787. return (Criteria) this;
  788. }
  789. public Criteria andEffectiveCountNotEqualTo(Integer value) {
  790. addCriterion("effective_count <>", value, "effectiveCount");
  791. return (Criteria) this;
  792. }
  793. public Criteria andEffectiveCountGreaterThan(Integer value) {
  794. addCriterion("effective_count >", value, "effectiveCount");
  795. return (Criteria) this;
  796. }
  797. public Criteria andEffectiveCountGreaterThanOrEqualTo(Integer value) {
  798. addCriterion("effective_count >=", value, "effectiveCount");
  799. return (Criteria) this;
  800. }
  801. public Criteria andEffectiveCountLessThan(Integer value) {
  802. addCriterion("effective_count <", value, "effectiveCount");
  803. return (Criteria) this;
  804. }
  805. public Criteria andEffectiveCountLessThanOrEqualTo(Integer value) {
  806. addCriterion("effective_count <=", value, "effectiveCount");
  807. return (Criteria) this;
  808. }
  809. public Criteria andEffectiveCountIn(List<Integer> values) {
  810. addCriterion("effective_count in", values, "effectiveCount");
  811. return (Criteria) this;
  812. }
  813. public Criteria andEffectiveCountNotIn(List<Integer> values) {
  814. addCriterion("effective_count not in", values, "effectiveCount");
  815. return (Criteria) this;
  816. }
  817. public Criteria andEffectiveCountBetween(Integer value1, Integer value2) {
  818. addCriterion("effective_count between", value1, value2, "effectiveCount");
  819. return (Criteria) this;
  820. }
  821. public Criteria andEffectiveCountNotBetween(Integer value1, Integer value2) {
  822. addCriterion("effective_count not between", value1, value2, "effectiveCount");
  823. return (Criteria) this;
  824. }
  825. public Criteria andStartTimeIsNull() {
  826. addCriterion("start_time is null");
  827. return (Criteria) this;
  828. }
  829. public Criteria andStartTimeIsNotNull() {
  830. addCriterion("start_time is not null");
  831. return (Criteria) this;
  832. }
  833. public Criteria andStartTimeEqualTo(Date value) {
  834. addCriterion("start_time =", value, "startTime");
  835. return (Criteria) this;
  836. }
  837. public Criteria andStartTimeNotEqualTo(Date value) {
  838. addCriterion("start_time <>", value, "startTime");
  839. return (Criteria) this;
  840. }
  841. public Criteria andStartTimeGreaterThan(Date value) {
  842. addCriterion("start_time >", value, "startTime");
  843. return (Criteria) this;
  844. }
  845. public Criteria andStartTimeGreaterThanOrEqualTo(Date value) {
  846. addCriterion("start_time >=", value, "startTime");
  847. return (Criteria) this;
  848. }
  849. public Criteria andStartTimeLessThan(Date value) {
  850. addCriterion("start_time <", value, "startTime");
  851. return (Criteria) this;
  852. }
  853. public Criteria andStartTimeLessThanOrEqualTo(Date value) {
  854. addCriterion("start_time <=", value, "startTime");
  855. return (Criteria) this;
  856. }
  857. public Criteria andStartTimeIn(List<Date> values) {
  858. addCriterion("start_time in", values, "startTime");
  859. return (Criteria) this;
  860. }
  861. public Criteria andStartTimeNotIn(List<Date> values) {
  862. addCriterion("start_time not in", values, "startTime");
  863. return (Criteria) this;
  864. }
  865. public Criteria andStartTimeBetween(Date value1, Date value2) {
  866. addCriterion("start_time between", value1, value2, "startTime");
  867. return (Criteria) this;
  868. }
  869. public Criteria andStartTimeNotBetween(Date value1, Date value2) {
  870. addCriterion("start_time not between", value1, value2, "startTime");
  871. return (Criteria) this;
  872. }
  873. public Criteria andStatusIsNull() {
  874. addCriterion("status is null");
  875. return (Criteria) this;
  876. }
  877. public Criteria andStatusIsNotNull() {
  878. addCriterion("status is not null");
  879. return (Criteria) this;
  880. }
  881. public Criteria andStatusEqualTo(Integer value) {
  882. addCriterion("status =", value, "status");
  883. return (Criteria) this;
  884. }
  885. public Criteria andStatusNotEqualTo(Integer value) {
  886. addCriterion("status <>", value, "status");
  887. return (Criteria) this;
  888. }
  889. public Criteria andStatusGreaterThan(Integer value) {
  890. addCriterion("status >", value, "status");
  891. return (Criteria) this;
  892. }
  893. public Criteria andStatusGreaterThanOrEqualTo(Integer value) {
  894. addCriterion("status >=", value, "status");
  895. return (Criteria) this;
  896. }
  897. public Criteria andStatusLessThan(Integer value) {
  898. addCriterion("status <", value, "status");
  899. return (Criteria) this;
  900. }
  901. public Criteria andStatusLessThanOrEqualTo(Integer value) {
  902. addCriterion("status <=", value, "status");
  903. return (Criteria) this;
  904. }
  905. public Criteria andStatusIn(List<Integer> values) {
  906. addCriterion("status in", values, "status");
  907. return (Criteria) this;
  908. }
  909. public Criteria andStatusNotIn(List<Integer> values) {
  910. addCriterion("status not in", values, "status");
  911. return (Criteria) this;
  912. }
  913. public Criteria andStatusBetween(Integer value1, Integer value2) {
  914. addCriterion("status between", value1, value2, "status");
  915. return (Criteria) this;
  916. }
  917. public Criteria andStatusNotBetween(Integer value1, Integer value2) {
  918. addCriterion("status not between", value1, value2, "status");
  919. return (Criteria) this;
  920. }
  921. }
  922. /**
  923. * This class was generated by MyBatis Generator. This class corresponds to the database table payment_node
  924. * @mbg.generated Tue Jul 07 13:58:53 CST 2020
  925. */
  926. public static class Criterion {
  927. private String condition;
  928. private Object value;
  929. private Object secondValue;
  930. private boolean noValue;
  931. private boolean singleValue;
  932. private boolean betweenValue;
  933. private boolean listValue;
  934. private String typeHandler;
  935. public String getCondition() {
  936. return condition;
  937. }
  938. public Object getValue() {
  939. return value;
  940. }
  941. public Object getSecondValue() {
  942. return secondValue;
  943. }
  944. public boolean isNoValue() {
  945. return noValue;
  946. }
  947. public boolean isSingleValue() {
  948. return singleValue;
  949. }
  950. public boolean isBetweenValue() {
  951. return betweenValue;
  952. }
  953. public boolean isListValue() {
  954. return listValue;
  955. }
  956. public String getTypeHandler() {
  957. return typeHandler;
  958. }
  959. protected Criterion(String condition) {
  960. super();
  961. this.condition = condition;
  962. this.typeHandler = null;
  963. this.noValue = true;
  964. }
  965. protected Criterion(String condition, Object value, String typeHandler) {
  966. super();
  967. this.condition = condition;
  968. this.value = value;
  969. this.typeHandler = typeHandler;
  970. if (value instanceof List<?>) {
  971. this.listValue = true;
  972. } else {
  973. this.singleValue = true;
  974. }
  975. }
  976. protected Criterion(String condition, Object value) {
  977. this(condition, value, null);
  978. }
  979. protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
  980. super();
  981. this.condition = condition;
  982. this.value = value;
  983. this.secondValue = secondValue;
  984. this.typeHandler = typeHandler;
  985. this.betweenValue = true;
  986. }
  987. protected Criterion(String condition, Object value, Object secondValue) {
  988. this(condition, value, secondValue, null);
  989. }
  990. }
  991. /**
  992. * This class was generated by MyBatis Generator.
  993. * This class corresponds to the database table payment_node
  994. *
  995. * @mbg.generated do_not_delete_during_merge Fri Jun 12 09:19:20 CST 2020
  996. */
  997. public static class Criteria extends GeneratedCriteria {
  998. protected Criteria() {
  999. super();
  1000. }
  1001. }
  1002. }