NewOrderDunExample.java 30 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063
  1. package com.goafanti.common.model;
  2. import java.util.ArrayList;
  3. import java.util.Date;
  4. import java.util.List;
  5. import java.math.BigDecimal;
  6. public class NewOrderDunExample {
  7. /**
  8. * This field was generated by MyBatis Generator. This field corresponds to the database table new_order_dun
  9. * @mbg.generated Thu Dec 19 11:46:22 CST 2019
  10. */
  11. protected String orderByClause;
  12. /**
  13. * This field was generated by MyBatis Generator. This field corresponds to the database table new_order_dun
  14. * @mbg.generated Thu Dec 19 11:46:22 CST 2019
  15. */
  16. protected boolean distinct;
  17. /**
  18. * This field was generated by MyBatis Generator. This field corresponds to the database table new_order_dun
  19. * @mbg.generated Thu Dec 19 11:46:22 CST 2019
  20. */
  21. protected List<Criteria> oredCriteria;
  22. /**
  23. * This method was generated by MyBatis Generator. This method corresponds to the database table new_order_dun
  24. * @mbg.generated Thu Dec 19 11:46:22 CST 2019
  25. */
  26. public NewOrderDunExample() {
  27. oredCriteria = new ArrayList<Criteria>();
  28. }
  29. /**
  30. * This method was generated by MyBatis Generator. This method corresponds to the database table new_order_dun
  31. * @mbg.generated Thu Dec 19 11:46:22 CST 2019
  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 new_order_dun
  38. * @mbg.generated Thu Dec 19 11:46:22 CST 2019
  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 new_order_dun
  45. * @mbg.generated Thu Dec 19 11:46:22 CST 2019
  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 new_order_dun
  52. * @mbg.generated Thu Dec 19 11:46:22 CST 2019
  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 new_order_dun
  59. * @mbg.generated Thu Dec 19 11:46:22 CST 2019
  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 new_order_dun
  66. * @mbg.generated Thu Dec 19 11:46:22 CST 2019
  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 new_order_dun
  73. * @mbg.generated Thu Dec 19 11:46:22 CST 2019
  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 new_order_dun
  82. * @mbg.generated Thu Dec 19 11:46:22 CST 2019
  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 new_order_dun
  93. * @mbg.generated Thu Dec 19 11:46:22 CST 2019
  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 new_order_dun
  101. * @mbg.generated Thu Dec 19 11:46:22 CST 2019
  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 new_order_dun
  110. * @mbg.generated Thu Dec 19 11:46:22 CST 2019
  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 andOrderNoIsNull() {
  194. addCriterion("order_no is null");
  195. return (Criteria) this;
  196. }
  197. public Criteria andOrderNoIsNotNull() {
  198. addCriterion("order_no is not null");
  199. return (Criteria) this;
  200. }
  201. public Criteria andOrderNoEqualTo(String value) {
  202. addCriterion("order_no =", value, "orderNo");
  203. return (Criteria) this;
  204. }
  205. public Criteria andOrderNoNotEqualTo(String value) {
  206. addCriterion("order_no <>", value, "orderNo");
  207. return (Criteria) this;
  208. }
  209. public Criteria andOrderNoGreaterThan(String value) {
  210. addCriterion("order_no >", value, "orderNo");
  211. return (Criteria) this;
  212. }
  213. public Criteria andOrderNoGreaterThanOrEqualTo(String value) {
  214. addCriterion("order_no >=", value, "orderNo");
  215. return (Criteria) this;
  216. }
  217. public Criteria andOrderNoLessThan(String value) {
  218. addCriterion("order_no <", value, "orderNo");
  219. return (Criteria) this;
  220. }
  221. public Criteria andOrderNoLessThanOrEqualTo(String value) {
  222. addCriterion("order_no <=", value, "orderNo");
  223. return (Criteria) this;
  224. }
  225. public Criteria andOrderNoLike(String value) {
  226. addCriterion("order_no like", value, "orderNo");
  227. return (Criteria) this;
  228. }
  229. public Criteria andOrderNoNotLike(String value) {
  230. addCriterion("order_no not like", value, "orderNo");
  231. return (Criteria) this;
  232. }
  233. public Criteria andOrderNoIn(List<String> values) {
  234. addCriterion("order_no in", values, "orderNo");
  235. return (Criteria) this;
  236. }
  237. public Criteria andOrderNoNotIn(List<String> values) {
  238. addCriterion("order_no not in", values, "orderNo");
  239. return (Criteria) this;
  240. }
  241. public Criteria andOrderNoBetween(String value1, String value2) {
  242. addCriterion("order_no between", value1, value2, "orderNo");
  243. return (Criteria) this;
  244. }
  245. public Criteria andOrderNoNotBetween(String value1, String value2) {
  246. addCriterion("order_no not between", value1, value2, "orderNo");
  247. return (Criteria) this;
  248. }
  249. public Criteria andTidIsNull() {
  250. addCriterion("tid is null");
  251. return (Criteria) this;
  252. }
  253. public Criteria andTidIsNotNull() {
  254. addCriterion("tid is not null");
  255. return (Criteria) this;
  256. }
  257. public Criteria andTidEqualTo(Integer value) {
  258. addCriterion("tid =", value, "tid");
  259. return (Criteria) this;
  260. }
  261. public Criteria andTidNotEqualTo(Integer value) {
  262. addCriterion("tid <>", value, "tid");
  263. return (Criteria) this;
  264. }
  265. public Criteria andTidGreaterThan(Integer value) {
  266. addCriterion("tid >", value, "tid");
  267. return (Criteria) this;
  268. }
  269. public Criteria andTidGreaterThanOrEqualTo(Integer value) {
  270. addCriterion("tid >=", value, "tid");
  271. return (Criteria) this;
  272. }
  273. public Criteria andTidLessThan(Integer value) {
  274. addCriterion("tid <", value, "tid");
  275. return (Criteria) this;
  276. }
  277. public Criteria andTidLessThanOrEqualTo(Integer value) {
  278. addCriterion("tid <=", value, "tid");
  279. return (Criteria) this;
  280. }
  281. public Criteria andTidIn(List<Integer> values) {
  282. addCriterion("tid in", values, "tid");
  283. return (Criteria) this;
  284. }
  285. public Criteria andTidNotIn(List<Integer> values) {
  286. addCriterion("tid not in", values, "tid");
  287. return (Criteria) this;
  288. }
  289. public Criteria andTidBetween(Integer value1, Integer value2) {
  290. addCriterion("tid between", value1, value2, "tid");
  291. return (Criteria) this;
  292. }
  293. public Criteria andTidNotBetween(Integer value1, Integer value2) {
  294. addCriterion("tid not between", value1, value2, "tid");
  295. return (Criteria) this;
  296. }
  297. public Criteria andProjectTypeIsNull() {
  298. addCriterion("project_type is null");
  299. return (Criteria) this;
  300. }
  301. public Criteria andProjectTypeIsNotNull() {
  302. addCriterion("project_type is not null");
  303. return (Criteria) this;
  304. }
  305. public Criteria andProjectTypeEqualTo(Integer value) {
  306. addCriterion("project_type =", value, "projectType");
  307. return (Criteria) this;
  308. }
  309. public Criteria andProjectTypeNotEqualTo(Integer value) {
  310. addCriterion("project_type <>", value, "projectType");
  311. return (Criteria) this;
  312. }
  313. public Criteria andProjectTypeGreaterThan(Integer value) {
  314. addCriterion("project_type >", value, "projectType");
  315. return (Criteria) this;
  316. }
  317. public Criteria andProjectTypeGreaterThanOrEqualTo(Integer value) {
  318. addCriterion("project_type >=", value, "projectType");
  319. return (Criteria) this;
  320. }
  321. public Criteria andProjectTypeLessThan(Integer value) {
  322. addCriterion("project_type <", value, "projectType");
  323. return (Criteria) this;
  324. }
  325. public Criteria andProjectTypeLessThanOrEqualTo(Integer value) {
  326. addCriterion("project_type <=", value, "projectType");
  327. return (Criteria) this;
  328. }
  329. public Criteria andProjectTypeIn(List<Integer> values) {
  330. addCriterion("project_type in", values, "projectType");
  331. return (Criteria) this;
  332. }
  333. public Criteria andProjectTypeNotIn(List<Integer> values) {
  334. addCriterion("project_type not in", values, "projectType");
  335. return (Criteria) this;
  336. }
  337. public Criteria andProjectTypeBetween(Integer value1, Integer value2) {
  338. addCriterion("project_type between", value1, value2, "projectType");
  339. return (Criteria) this;
  340. }
  341. public Criteria andProjectTypeNotBetween(Integer value1, Integer value2) {
  342. addCriterion("project_type not between", value1, value2, "projectType");
  343. return (Criteria) this;
  344. }
  345. public Criteria andDunTypeIsNull() {
  346. addCriterion("dun_type is null");
  347. return (Criteria) this;
  348. }
  349. public Criteria andDunTypeIsNotNull() {
  350. addCriterion("dun_type is not null");
  351. return (Criteria) this;
  352. }
  353. public Criteria andDunTypeEqualTo(Integer value) {
  354. addCriterion("dun_type =", value, "dunType");
  355. return (Criteria) this;
  356. }
  357. public Criteria andDunTypeNotEqualTo(Integer value) {
  358. addCriterion("dun_type <>", value, "dunType");
  359. return (Criteria) this;
  360. }
  361. public Criteria andDunTypeGreaterThan(Integer value) {
  362. addCriterion("dun_type >", value, "dunType");
  363. return (Criteria) this;
  364. }
  365. public Criteria andDunTypeGreaterThanOrEqualTo(Integer value) {
  366. addCriterion("dun_type >=", value, "dunType");
  367. return (Criteria) this;
  368. }
  369. public Criteria andDunTypeLessThan(Integer value) {
  370. addCriterion("dun_type <", value, "dunType");
  371. return (Criteria) this;
  372. }
  373. public Criteria andDunTypeLessThanOrEqualTo(Integer value) {
  374. addCriterion("dun_type <=", value, "dunType");
  375. return (Criteria) this;
  376. }
  377. public Criteria andDunTypeIn(List<Integer> values) {
  378. addCriterion("dun_type in", values, "dunType");
  379. return (Criteria) this;
  380. }
  381. public Criteria andDunTypeNotIn(List<Integer> values) {
  382. addCriterion("dun_type not in", values, "dunType");
  383. return (Criteria) this;
  384. }
  385. public Criteria andDunTypeBetween(Integer value1, Integer value2) {
  386. addCriterion("dun_type between", value1, value2, "dunType");
  387. return (Criteria) this;
  388. }
  389. public Criteria andDunTypeNotBetween(Integer value1, Integer value2) {
  390. addCriterion("dun_type not between", value1, value2, "dunType");
  391. return (Criteria) this;
  392. }
  393. public Criteria andWaitDayIsNull() {
  394. addCriterion("wait_day is null");
  395. return (Criteria) this;
  396. }
  397. public Criteria andWaitDayIsNotNull() {
  398. addCriterion("wait_day is not null");
  399. return (Criteria) this;
  400. }
  401. public Criteria andWaitDayEqualTo(Integer value) {
  402. addCriterion("wait_day =", value, "waitDay");
  403. return (Criteria) this;
  404. }
  405. public Criteria andWaitDayNotEqualTo(Integer value) {
  406. addCriterion("wait_day <>", value, "waitDay");
  407. return (Criteria) this;
  408. }
  409. public Criteria andWaitDayGreaterThan(Integer value) {
  410. addCriterion("wait_day >", value, "waitDay");
  411. return (Criteria) this;
  412. }
  413. public Criteria andWaitDayGreaterThanOrEqualTo(Integer value) {
  414. addCriterion("wait_day >=", value, "waitDay");
  415. return (Criteria) this;
  416. }
  417. public Criteria andWaitDayLessThan(Integer value) {
  418. addCriterion("wait_day <", value, "waitDay");
  419. return (Criteria) this;
  420. }
  421. public Criteria andWaitDayLessThanOrEqualTo(Integer value) {
  422. addCriterion("wait_day <=", value, "waitDay");
  423. return (Criteria) this;
  424. }
  425. public Criteria andWaitDayIn(List<Integer> values) {
  426. addCriterion("wait_day in", values, "waitDay");
  427. return (Criteria) this;
  428. }
  429. public Criteria andWaitDayNotIn(List<Integer> values) {
  430. addCriterion("wait_day not in", values, "waitDay");
  431. return (Criteria) this;
  432. }
  433. public Criteria andWaitDayBetween(Integer value1, Integer value2) {
  434. addCriterion("wait_day between", value1, value2, "waitDay");
  435. return (Criteria) this;
  436. }
  437. public Criteria andWaitDayNotBetween(Integer value1, Integer value2) {
  438. addCriterion("wait_day not between", value1, value2, "waitDay");
  439. return (Criteria) this;
  440. }
  441. public Criteria andEffectiveCountIsNull() {
  442. addCriterion("effective_count is null");
  443. return (Criteria) this;
  444. }
  445. public Criteria andEffectiveCountIsNotNull() {
  446. addCriterion("effective_count is not null");
  447. return (Criteria) this;
  448. }
  449. public Criteria andEffectiveCountEqualTo(Integer value) {
  450. addCriterion("effective_count =", value, "effectiveCount");
  451. return (Criteria) this;
  452. }
  453. public Criteria andEffectiveCountNotEqualTo(Integer value) {
  454. addCriterion("effective_count <>", value, "effectiveCount");
  455. return (Criteria) this;
  456. }
  457. public Criteria andEffectiveCountGreaterThan(Integer value) {
  458. addCriterion("effective_count >", value, "effectiveCount");
  459. return (Criteria) this;
  460. }
  461. public Criteria andEffectiveCountGreaterThanOrEqualTo(Integer value) {
  462. addCriterion("effective_count >=", value, "effectiveCount");
  463. return (Criteria) this;
  464. }
  465. public Criteria andEffectiveCountLessThan(Integer value) {
  466. addCriterion("effective_count <", value, "effectiveCount");
  467. return (Criteria) this;
  468. }
  469. public Criteria andEffectiveCountLessThanOrEqualTo(Integer value) {
  470. addCriterion("effective_count <=", value, "effectiveCount");
  471. return (Criteria) this;
  472. }
  473. public Criteria andEffectiveCountIn(List<Integer> values) {
  474. addCriterion("effective_count in", values, "effectiveCount");
  475. return (Criteria) this;
  476. }
  477. public Criteria andEffectiveCountNotIn(List<Integer> values) {
  478. addCriterion("effective_count not in", values, "effectiveCount");
  479. return (Criteria) this;
  480. }
  481. public Criteria andEffectiveCountBetween(Integer value1, Integer value2) {
  482. addCriterion("effective_count between", value1, value2, "effectiveCount");
  483. return (Criteria) this;
  484. }
  485. public Criteria andEffectiveCountNotBetween(Integer value1, Integer value2) {
  486. addCriterion("effective_count not between", value1, value2, "effectiveCount");
  487. return (Criteria) this;
  488. }
  489. public Criteria andAidIsNull() {
  490. addCriterion("aid is null");
  491. return (Criteria) this;
  492. }
  493. public Criteria andAidIsNotNull() {
  494. addCriterion("aid is not null");
  495. return (Criteria) this;
  496. }
  497. public Criteria andAidEqualTo(String value) {
  498. addCriterion("aid =", value, "aid");
  499. return (Criteria) this;
  500. }
  501. public Criteria andAidNotEqualTo(String value) {
  502. addCriterion("aid <>", value, "aid");
  503. return (Criteria) this;
  504. }
  505. public Criteria andAidGreaterThan(String value) {
  506. addCriterion("aid >", value, "aid");
  507. return (Criteria) this;
  508. }
  509. public Criteria andAidGreaterThanOrEqualTo(String value) {
  510. addCriterion("aid >=", value, "aid");
  511. return (Criteria) this;
  512. }
  513. public Criteria andAidLessThan(String value) {
  514. addCriterion("aid <", value, "aid");
  515. return (Criteria) this;
  516. }
  517. public Criteria andAidLessThanOrEqualTo(String value) {
  518. addCriterion("aid <=", value, "aid");
  519. return (Criteria) this;
  520. }
  521. public Criteria andAidLike(String value) {
  522. addCriterion("aid like", value, "aid");
  523. return (Criteria) this;
  524. }
  525. public Criteria andAidNotLike(String value) {
  526. addCriterion("aid not like", value, "aid");
  527. return (Criteria) this;
  528. }
  529. public Criteria andAidIn(List<String> values) {
  530. addCriterion("aid in", values, "aid");
  531. return (Criteria) this;
  532. }
  533. public Criteria andAidNotIn(List<String> values) {
  534. addCriterion("aid not in", values, "aid");
  535. return (Criteria) this;
  536. }
  537. public Criteria andAidBetween(String value1, String value2) {
  538. addCriterion("aid between", value1, value2, "aid");
  539. return (Criteria) this;
  540. }
  541. public Criteria andAidNotBetween(String value1, String value2) {
  542. addCriterion("aid not between", value1, value2, "aid");
  543. return (Criteria) this;
  544. }
  545. public Criteria andStatusIsNull() {
  546. addCriterion("status is null");
  547. return (Criteria) this;
  548. }
  549. public Criteria andStatusIsNotNull() {
  550. addCriterion("status is not null");
  551. return (Criteria) this;
  552. }
  553. public Criteria andStatusEqualTo(Integer value) {
  554. addCriterion("status =", value, "status");
  555. return (Criteria) this;
  556. }
  557. public Criteria andStatusNotEqualTo(Integer value) {
  558. addCriterion("status <>", value, "status");
  559. return (Criteria) this;
  560. }
  561. public Criteria andStatusGreaterThan(Integer value) {
  562. addCriterion("status >", value, "status");
  563. return (Criteria) this;
  564. }
  565. public Criteria andStatusGreaterThanOrEqualTo(Integer value) {
  566. addCriterion("status >=", value, "status");
  567. return (Criteria) this;
  568. }
  569. public Criteria andStatusLessThan(Integer value) {
  570. addCriterion("status <", value, "status");
  571. return (Criteria) this;
  572. }
  573. public Criteria andStatusLessThanOrEqualTo(Integer value) {
  574. addCriterion("status <=", value, "status");
  575. return (Criteria) this;
  576. }
  577. public Criteria andStatusIn(List<Integer> values) {
  578. addCriterion("status in", values, "status");
  579. return (Criteria) this;
  580. }
  581. public Criteria andStatusNotIn(List<Integer> values) {
  582. addCriterion("status not in", values, "status");
  583. return (Criteria) this;
  584. }
  585. public Criteria andStatusBetween(Integer value1, Integer value2) {
  586. addCriterion("status between", value1, value2, "status");
  587. return (Criteria) this;
  588. }
  589. public Criteria andStatusNotBetween(Integer value1, Integer value2) {
  590. addCriterion("status not between", value1, value2, "status");
  591. return (Criteria) this;
  592. }
  593. public Criteria andCreateTimeIsNull() {
  594. addCriterion("create_time is null");
  595. return (Criteria) this;
  596. }
  597. public Criteria andCreateTimeIsNotNull() {
  598. addCriterion("create_time is not null");
  599. return (Criteria) this;
  600. }
  601. public Criteria andCreateTimeEqualTo(Date value) {
  602. addCriterion("create_time =", value, "createTime");
  603. return (Criteria) this;
  604. }
  605. public Criteria andCreateTimeNotEqualTo(Date value) {
  606. addCriterion("create_time <>", value, "createTime");
  607. return (Criteria) this;
  608. }
  609. public Criteria andCreateTimeGreaterThan(Date value) {
  610. addCriterion("create_time >", value, "createTime");
  611. return (Criteria) this;
  612. }
  613. public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) {
  614. addCriterion("create_time >=", value, "createTime");
  615. return (Criteria) this;
  616. }
  617. public Criteria andCreateTimeLessThan(Date value) {
  618. addCriterion("create_time <", value, "createTime");
  619. return (Criteria) this;
  620. }
  621. public Criteria andCreateTimeLessThanOrEqualTo(Date value) {
  622. addCriterion("create_time <=", value, "createTime");
  623. return (Criteria) this;
  624. }
  625. public Criteria andCreateTimeIn(List<Date> values) {
  626. addCriterion("create_time in", values, "createTime");
  627. return (Criteria) this;
  628. }
  629. public Criteria andCreateTimeNotIn(List<Date> values) {
  630. addCriterion("create_time not in", values, "createTime");
  631. return (Criteria) this;
  632. }
  633. public Criteria andCreateTimeBetween(Date value1, Date value2) {
  634. addCriterion("create_time between", value1, value2, "createTime");
  635. return (Criteria) this;
  636. }
  637. public Criteria andCreateTimeNotBetween(Date value1, Date value2) {
  638. addCriterion("create_time not between", value1, value2, "createTime");
  639. return (Criteria) this;
  640. }
  641. public Criteria andStartTimeIsNull() {
  642. addCriterion("start_time is null");
  643. return (Criteria) this;
  644. }
  645. public Criteria andStartTimeIsNotNull() {
  646. addCriterion("start_time is not null");
  647. return (Criteria) this;
  648. }
  649. public Criteria andStartTimeEqualTo(Date value) {
  650. addCriterion("start_time =", value, "startTime");
  651. return (Criteria) this;
  652. }
  653. public Criteria andStartTimeNotEqualTo(Date value) {
  654. addCriterion("start_time <>", value, "startTime");
  655. return (Criteria) this;
  656. }
  657. public Criteria andStartTimeGreaterThan(Date value) {
  658. addCriterion("start_time >", value, "startTime");
  659. return (Criteria) this;
  660. }
  661. public Criteria andStartTimeGreaterThanOrEqualTo(Date value) {
  662. addCriterion("start_time >=", value, "startTime");
  663. return (Criteria) this;
  664. }
  665. public Criteria andStartTimeLessThan(Date value) {
  666. addCriterion("start_time <", value, "startTime");
  667. return (Criteria) this;
  668. }
  669. public Criteria andStartTimeLessThanOrEqualTo(Date value) {
  670. addCriterion("start_time <=", value, "startTime");
  671. return (Criteria) this;
  672. }
  673. public Criteria andStartTimeIn(List<Date> values) {
  674. addCriterion("start_time in", values, "startTime");
  675. return (Criteria) this;
  676. }
  677. public Criteria andStartTimeNotIn(List<Date> values) {
  678. addCriterion("start_time not in", values, "startTime");
  679. return (Criteria) this;
  680. }
  681. public Criteria andStartTimeBetween(Date value1, Date value2) {
  682. addCriterion("start_time between", value1, value2, "startTime");
  683. return (Criteria) this;
  684. }
  685. public Criteria andStartTimeNotBetween(Date value1, Date value2) {
  686. addCriterion("start_time not between", value1, value2, "startTime");
  687. return (Criteria) this;
  688. }
  689. public Criteria andMoneyIsNull() {
  690. addCriterion("money is null");
  691. return (Criteria) this;
  692. }
  693. public Criteria andMoneyIsNotNull() {
  694. addCriterion("money is not null");
  695. return (Criteria) this;
  696. }
  697. public Criteria andMoneyEqualTo(BigDecimal value) {
  698. addCriterion("money =", value, "money");
  699. return (Criteria) this;
  700. }
  701. public Criteria andMoneyNotEqualTo(BigDecimal value) {
  702. addCriterion("money <>", value, "money");
  703. return (Criteria) this;
  704. }
  705. public Criteria andMoneyGreaterThan(BigDecimal value) {
  706. addCriterion("money >", value, "money");
  707. return (Criteria) this;
  708. }
  709. public Criteria andMoneyGreaterThanOrEqualTo(BigDecimal value) {
  710. addCriterion("money >=", value, "money");
  711. return (Criteria) this;
  712. }
  713. public Criteria andMoneyLessThan(BigDecimal value) {
  714. addCriterion("money <", value, "money");
  715. return (Criteria) this;
  716. }
  717. public Criteria andMoneyLessThanOrEqualTo(BigDecimal value) {
  718. addCriterion("money <=", value, "money");
  719. return (Criteria) this;
  720. }
  721. public Criteria andMoneyIn(List<BigDecimal> values) {
  722. addCriterion("money in", values, "money");
  723. return (Criteria) this;
  724. }
  725. public Criteria andMoneyNotIn(List<BigDecimal> values) {
  726. addCriterion("money not in", values, "money");
  727. return (Criteria) this;
  728. }
  729. public Criteria andMoneyBetween(BigDecimal value1, BigDecimal value2) {
  730. addCriterion("money between", value1, value2, "money");
  731. return (Criteria) this;
  732. }
  733. public Criteria andMoneyNotBetween(BigDecimal value1, BigDecimal value2) {
  734. addCriterion("money not between", value1, value2, "money");
  735. return (Criteria) this;
  736. }
  737. public Criteria andAppropriationRatioIsNull() {
  738. addCriterion("appropriation_ratio is null");
  739. return (Criteria) this;
  740. }
  741. public Criteria andAppropriationRatioIsNotNull() {
  742. addCriterion("appropriation_ratio is not null");
  743. return (Criteria) this;
  744. }
  745. public Criteria andAppropriationRatioEqualTo(BigDecimal value) {
  746. addCriterion("appropriation_ratio =", value, "appropriationRatio");
  747. return (Criteria) this;
  748. }
  749. public Criteria andAppropriationRatioNotEqualTo(BigDecimal value) {
  750. addCriterion("appropriation_ratio <>", value, "appropriationRatio");
  751. return (Criteria) this;
  752. }
  753. public Criteria andAppropriationRatioGreaterThan(BigDecimal value) {
  754. addCriterion("appropriation_ratio >", value, "appropriationRatio");
  755. return (Criteria) this;
  756. }
  757. public Criteria andAppropriationRatioGreaterThanOrEqualTo(BigDecimal value) {
  758. addCriterion("appropriation_ratio >=", value, "appropriationRatio");
  759. return (Criteria) this;
  760. }
  761. public Criteria andAppropriationRatioLessThan(BigDecimal value) {
  762. addCriterion("appropriation_ratio <", value, "appropriationRatio");
  763. return (Criteria) this;
  764. }
  765. public Criteria andAppropriationRatioLessThanOrEqualTo(BigDecimal value) {
  766. addCriterion("appropriation_ratio <=", value, "appropriationRatio");
  767. return (Criteria) this;
  768. }
  769. public Criteria andAppropriationRatioIn(List<BigDecimal> values) {
  770. addCriterion("appropriation_ratio in", values, "appropriationRatio");
  771. return (Criteria) this;
  772. }
  773. public Criteria andAppropriationRatioNotIn(List<BigDecimal> values) {
  774. addCriterion("appropriation_ratio not in", values, "appropriationRatio");
  775. return (Criteria) this;
  776. }
  777. public Criteria andAppropriationRatioBetween(BigDecimal value1, BigDecimal value2) {
  778. addCriterion("appropriation_ratio between", value1, value2, "appropriationRatio");
  779. return (Criteria) this;
  780. }
  781. public Criteria andAppropriationRatioNotBetween(BigDecimal value1, BigDecimal value2) {
  782. addCriterion("appropriation_ratio not between", value1, value2, "appropriationRatio");
  783. return (Criteria) this;
  784. }
  785. }
  786. /**
  787. * This class was generated by MyBatis Generator. This class corresponds to the database table new_order_dun
  788. * @mbg.generated Thu Dec 19 11:46:22 CST 2019
  789. */
  790. public static class Criterion {
  791. private String condition;
  792. private Object value;
  793. private Object secondValue;
  794. private boolean noValue;
  795. private boolean singleValue;
  796. private boolean betweenValue;
  797. private boolean listValue;
  798. private String typeHandler;
  799. public String getCondition() {
  800. return condition;
  801. }
  802. public Object getValue() {
  803. return value;
  804. }
  805. public Object getSecondValue() {
  806. return secondValue;
  807. }
  808. public boolean isNoValue() {
  809. return noValue;
  810. }
  811. public boolean isSingleValue() {
  812. return singleValue;
  813. }
  814. public boolean isBetweenValue() {
  815. return betweenValue;
  816. }
  817. public boolean isListValue() {
  818. return listValue;
  819. }
  820. public String getTypeHandler() {
  821. return typeHandler;
  822. }
  823. protected Criterion(String condition) {
  824. super();
  825. this.condition = condition;
  826. this.typeHandler = null;
  827. this.noValue = true;
  828. }
  829. protected Criterion(String condition, Object value, String typeHandler) {
  830. super();
  831. this.condition = condition;
  832. this.value = value;
  833. this.typeHandler = typeHandler;
  834. if (value instanceof List<?>) {
  835. this.listValue = true;
  836. } else {
  837. this.singleValue = true;
  838. }
  839. }
  840. protected Criterion(String condition, Object value) {
  841. this(condition, value, null);
  842. }
  843. protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
  844. super();
  845. this.condition = condition;
  846. this.value = value;
  847. this.secondValue = secondValue;
  848. this.typeHandler = typeHandler;
  849. this.betweenValue = true;
  850. }
  851. protected Criterion(String condition, Object value, Object secondValue) {
  852. this(condition, value, secondValue, null);
  853. }
  854. }
  855. /**
  856. * This class was generated by MyBatis Generator.
  857. * This class corresponds to the database table new_order_dun
  858. *
  859. * @mbg.generated do_not_delete_during_merge Mon Dec 02 14:11:03 CST 2019
  860. */
  861. public static class Criteria extends GeneratedCriteria {
  862. protected Criteria() {
  863. super();
  864. }
  865. }
  866. }