TChangeTaskExample.java 35 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213
  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 TChangeTaskExample {
  7. /**
  8. * This field was generated by MyBatis Generator. This field corresponds to the database table t_change_task
  9. * @mbg.generated Mon Mar 30 15:38:22 CST 2020
  10. */
  11. protected String orderByClause;
  12. /**
  13. * This field was generated by MyBatis Generator. This field corresponds to the database table t_change_task
  14. * @mbg.generated Mon Mar 30 15:38:22 CST 2020
  15. */
  16. protected boolean distinct;
  17. /**
  18. * This field was generated by MyBatis Generator. This field corresponds to the database table t_change_task
  19. * @mbg.generated Mon Mar 30 15:38:22 CST 2020
  20. */
  21. protected List<Criteria> oredCriteria;
  22. /**
  23. * This method was generated by MyBatis Generator. This method corresponds to the database table t_change_task
  24. * @mbg.generated Mon Mar 30 15:38:22 CST 2020
  25. */
  26. public TChangeTaskExample() {
  27. oredCriteria = new ArrayList<Criteria>();
  28. }
  29. /**
  30. * This method was generated by MyBatis Generator. This method corresponds to the database table t_change_task
  31. * @mbg.generated Mon Mar 30 15:38:22 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 t_change_task
  38. * @mbg.generated Mon Mar 30 15:38:22 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 t_change_task
  45. * @mbg.generated Mon Mar 30 15:38:22 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 t_change_task
  52. * @mbg.generated Mon Mar 30 15:38:22 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 t_change_task
  59. * @mbg.generated Mon Mar 30 15:38:22 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 t_change_task
  66. * @mbg.generated Mon Mar 30 15:38:22 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 t_change_task
  73. * @mbg.generated Mon Mar 30 15:38:22 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 t_change_task
  82. * @mbg.generated Mon Mar 30 15:38:22 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 t_change_task
  93. * @mbg.generated Mon Mar 30 15:38:22 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 t_change_task
  101. * @mbg.generated Mon Mar 30 15:38:22 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 t_change_task
  110. * @mbg.generated Mon Mar 30 15:38:22 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 andOrderNoIsNull() {
  290. addCriterion("order_no is null");
  291. return (Criteria) this;
  292. }
  293. public Criteria andOrderNoIsNotNull() {
  294. addCriterion("order_no is not null");
  295. return (Criteria) this;
  296. }
  297. public Criteria andOrderNoEqualTo(String value) {
  298. addCriterion("order_no =", value, "orderNo");
  299. return (Criteria) this;
  300. }
  301. public Criteria andOrderNoNotEqualTo(String value) {
  302. addCriterion("order_no <>", value, "orderNo");
  303. return (Criteria) this;
  304. }
  305. public Criteria andOrderNoGreaterThan(String value) {
  306. addCriterion("order_no >", value, "orderNo");
  307. return (Criteria) this;
  308. }
  309. public Criteria andOrderNoGreaterThanOrEqualTo(String value) {
  310. addCriterion("order_no >=", value, "orderNo");
  311. return (Criteria) this;
  312. }
  313. public Criteria andOrderNoLessThan(String value) {
  314. addCriterion("order_no <", value, "orderNo");
  315. return (Criteria) this;
  316. }
  317. public Criteria andOrderNoLessThanOrEqualTo(String value) {
  318. addCriterion("order_no <=", value, "orderNo");
  319. return (Criteria) this;
  320. }
  321. public Criteria andOrderNoLike(String value) {
  322. addCriterion("order_no like", value, "orderNo");
  323. return (Criteria) this;
  324. }
  325. public Criteria andOrderNoNotLike(String value) {
  326. addCriterion("order_no not like", value, "orderNo");
  327. return (Criteria) this;
  328. }
  329. public Criteria andOrderNoIn(List<String> values) {
  330. addCriterion("order_no in", values, "orderNo");
  331. return (Criteria) this;
  332. }
  333. public Criteria andOrderNoNotIn(List<String> values) {
  334. addCriterion("order_no not in", values, "orderNo");
  335. return (Criteria) this;
  336. }
  337. public Criteria andOrderNoBetween(String value1, String value2) {
  338. addCriterion("order_no between", value1, value2, "orderNo");
  339. return (Criteria) this;
  340. }
  341. public Criteria andOrderNoNotBetween(String value1, String value2) {
  342. addCriterion("order_no not between", value1, value2, "orderNo");
  343. return (Criteria) this;
  344. }
  345. public Criteria andMainIsNull() {
  346. addCriterion("main is null");
  347. return (Criteria) this;
  348. }
  349. public Criteria andMainIsNotNull() {
  350. addCriterion("main is not null");
  351. return (Criteria) this;
  352. }
  353. public Criteria andMainEqualTo(Integer value) {
  354. addCriterion("main =", value, "main");
  355. return (Criteria) this;
  356. }
  357. public Criteria andMainNotEqualTo(Integer value) {
  358. addCriterion("main <>", value, "main");
  359. return (Criteria) this;
  360. }
  361. public Criteria andMainGreaterThan(Integer value) {
  362. addCriterion("main >", value, "main");
  363. return (Criteria) this;
  364. }
  365. public Criteria andMainGreaterThanOrEqualTo(Integer value) {
  366. addCriterion("main >=", value, "main");
  367. return (Criteria) this;
  368. }
  369. public Criteria andMainLessThan(Integer value) {
  370. addCriterion("main <", value, "main");
  371. return (Criteria) this;
  372. }
  373. public Criteria andMainLessThanOrEqualTo(Integer value) {
  374. addCriterion("main <=", value, "main");
  375. return (Criteria) this;
  376. }
  377. public Criteria andMainIn(List<Integer> values) {
  378. addCriterion("main in", values, "main");
  379. return (Criteria) this;
  380. }
  381. public Criteria andMainNotIn(List<Integer> values) {
  382. addCriterion("main not in", values, "main");
  383. return (Criteria) this;
  384. }
  385. public Criteria andMainBetween(Integer value1, Integer value2) {
  386. addCriterion("main between", value1, value2, "main");
  387. return (Criteria) this;
  388. }
  389. public Criteria andMainNotBetween(Integer value1, Integer value2) {
  390. addCriterion("main not between", value1, value2, "main");
  391. return (Criteria) this;
  392. }
  393. public Criteria andCommodityIdIsNull() {
  394. addCriterion("commodity_id is null");
  395. return (Criteria) this;
  396. }
  397. public Criteria andCommodityIdIsNotNull() {
  398. addCriterion("commodity_id is not null");
  399. return (Criteria) this;
  400. }
  401. public Criteria andCommodityIdEqualTo(String value) {
  402. addCriterion("commodity_id =", value, "commodityId");
  403. return (Criteria) this;
  404. }
  405. public Criteria andCommodityIdNotEqualTo(String value) {
  406. addCriterion("commodity_id <>", value, "commodityId");
  407. return (Criteria) this;
  408. }
  409. public Criteria andCommodityIdGreaterThan(String value) {
  410. addCriterion("commodity_id >", value, "commodityId");
  411. return (Criteria) this;
  412. }
  413. public Criteria andCommodityIdGreaterThanOrEqualTo(String value) {
  414. addCriterion("commodity_id >=", value, "commodityId");
  415. return (Criteria) this;
  416. }
  417. public Criteria andCommodityIdLessThan(String value) {
  418. addCriterion("commodity_id <", value, "commodityId");
  419. return (Criteria) this;
  420. }
  421. public Criteria andCommodityIdLessThanOrEqualTo(String value) {
  422. addCriterion("commodity_id <=", value, "commodityId");
  423. return (Criteria) this;
  424. }
  425. public Criteria andCommodityIdLike(String value) {
  426. addCriterion("commodity_id like", value, "commodityId");
  427. return (Criteria) this;
  428. }
  429. public Criteria andCommodityIdNotLike(String value) {
  430. addCriterion("commodity_id not like", value, "commodityId");
  431. return (Criteria) this;
  432. }
  433. public Criteria andCommodityIdIn(List<String> values) {
  434. addCriterion("commodity_id in", values, "commodityId");
  435. return (Criteria) this;
  436. }
  437. public Criteria andCommodityIdNotIn(List<String> values) {
  438. addCriterion("commodity_id not in", values, "commodityId");
  439. return (Criteria) this;
  440. }
  441. public Criteria andCommodityIdBetween(String value1, String value2) {
  442. addCriterion("commodity_id between", value1, value2, "commodityId");
  443. return (Criteria) this;
  444. }
  445. public Criteria andCommodityIdNotBetween(String value1, String value2) {
  446. addCriterion("commodity_id not between", value1, value2, "commodityId");
  447. return (Criteria) this;
  448. }
  449. public Criteria andCommodityNameIsNull() {
  450. addCriterion("commodity_name is null");
  451. return (Criteria) this;
  452. }
  453. public Criteria andCommodityNameIsNotNull() {
  454. addCriterion("commodity_name is not null");
  455. return (Criteria) this;
  456. }
  457. public Criteria andCommodityNameEqualTo(String value) {
  458. addCriterion("commodity_name =", value, "commodityName");
  459. return (Criteria) this;
  460. }
  461. public Criteria andCommodityNameNotEqualTo(String value) {
  462. addCriterion("commodity_name <>", value, "commodityName");
  463. return (Criteria) this;
  464. }
  465. public Criteria andCommodityNameGreaterThan(String value) {
  466. addCriterion("commodity_name >", value, "commodityName");
  467. return (Criteria) this;
  468. }
  469. public Criteria andCommodityNameGreaterThanOrEqualTo(String value) {
  470. addCriterion("commodity_name >=", value, "commodityName");
  471. return (Criteria) this;
  472. }
  473. public Criteria andCommodityNameLessThan(String value) {
  474. addCriterion("commodity_name <", value, "commodityName");
  475. return (Criteria) this;
  476. }
  477. public Criteria andCommodityNameLessThanOrEqualTo(String value) {
  478. addCriterion("commodity_name <=", value, "commodityName");
  479. return (Criteria) this;
  480. }
  481. public Criteria andCommodityNameLike(String value) {
  482. addCriterion("commodity_name like", value, "commodityName");
  483. return (Criteria) this;
  484. }
  485. public Criteria andCommodityNameNotLike(String value) {
  486. addCriterion("commodity_name not like", value, "commodityName");
  487. return (Criteria) this;
  488. }
  489. public Criteria andCommodityNameIn(List<String> values) {
  490. addCriterion("commodity_name in", values, "commodityName");
  491. return (Criteria) this;
  492. }
  493. public Criteria andCommodityNameNotIn(List<String> values) {
  494. addCriterion("commodity_name not in", values, "commodityName");
  495. return (Criteria) this;
  496. }
  497. public Criteria andCommodityNameBetween(String value1, String value2) {
  498. addCriterion("commodity_name between", value1, value2, "commodityName");
  499. return (Criteria) this;
  500. }
  501. public Criteria andCommodityNameNotBetween(String value1, String value2) {
  502. addCriterion("commodity_name not between", value1, value2, "commodityName");
  503. return (Criteria) this;
  504. }
  505. public Criteria andCommodityQuantityIsNull() {
  506. addCriterion("commodity_quantity is null");
  507. return (Criteria) this;
  508. }
  509. public Criteria andCommodityQuantityIsNotNull() {
  510. addCriterion("commodity_quantity is not null");
  511. return (Criteria) this;
  512. }
  513. public Criteria andCommodityQuantityEqualTo(Integer value) {
  514. addCriterion("commodity_quantity =", value, "commodityQuantity");
  515. return (Criteria) this;
  516. }
  517. public Criteria andCommodityQuantityNotEqualTo(Integer value) {
  518. addCriterion("commodity_quantity <>", value, "commodityQuantity");
  519. return (Criteria) this;
  520. }
  521. public Criteria andCommodityQuantityGreaterThan(Integer value) {
  522. addCriterion("commodity_quantity >", value, "commodityQuantity");
  523. return (Criteria) this;
  524. }
  525. public Criteria andCommodityQuantityGreaterThanOrEqualTo(Integer value) {
  526. addCriterion("commodity_quantity >=", value, "commodityQuantity");
  527. return (Criteria) this;
  528. }
  529. public Criteria andCommodityQuantityLessThan(Integer value) {
  530. addCriterion("commodity_quantity <", value, "commodityQuantity");
  531. return (Criteria) this;
  532. }
  533. public Criteria andCommodityQuantityLessThanOrEqualTo(Integer value) {
  534. addCriterion("commodity_quantity <=", value, "commodityQuantity");
  535. return (Criteria) this;
  536. }
  537. public Criteria andCommodityQuantityIn(List<Integer> values) {
  538. addCriterion("commodity_quantity in", values, "commodityQuantity");
  539. return (Criteria) this;
  540. }
  541. public Criteria andCommodityQuantityNotIn(List<Integer> values) {
  542. addCriterion("commodity_quantity not in", values, "commodityQuantity");
  543. return (Criteria) this;
  544. }
  545. public Criteria andCommodityQuantityBetween(Integer value1, Integer value2) {
  546. addCriterion("commodity_quantity between", value1, value2, "commodityQuantity");
  547. return (Criteria) this;
  548. }
  549. public Criteria andCommodityQuantityNotBetween(Integer value1, Integer value2) {
  550. addCriterion("commodity_quantity not between", value1, value2, "commodityQuantity");
  551. return (Criteria) this;
  552. }
  553. public Criteria andCommodityPriceIsNull() {
  554. addCriterion("commodity_price is null");
  555. return (Criteria) this;
  556. }
  557. public Criteria andCommodityPriceIsNotNull() {
  558. addCriterion("commodity_price is not null");
  559. return (Criteria) this;
  560. }
  561. public Criteria andCommodityPriceEqualTo(BigDecimal value) {
  562. addCriterion("commodity_price =", value, "commodityPrice");
  563. return (Criteria) this;
  564. }
  565. public Criteria andCommodityPriceNotEqualTo(BigDecimal value) {
  566. addCriterion("commodity_price <>", value, "commodityPrice");
  567. return (Criteria) this;
  568. }
  569. public Criteria andCommodityPriceGreaterThan(BigDecimal value) {
  570. addCriterion("commodity_price >", value, "commodityPrice");
  571. return (Criteria) this;
  572. }
  573. public Criteria andCommodityPriceGreaterThanOrEqualTo(BigDecimal value) {
  574. addCriterion("commodity_price >=", value, "commodityPrice");
  575. return (Criteria) this;
  576. }
  577. public Criteria andCommodityPriceLessThan(BigDecimal value) {
  578. addCriterion("commodity_price <", value, "commodityPrice");
  579. return (Criteria) this;
  580. }
  581. public Criteria andCommodityPriceLessThanOrEqualTo(BigDecimal value) {
  582. addCriterion("commodity_price <=", value, "commodityPrice");
  583. return (Criteria) this;
  584. }
  585. public Criteria andCommodityPriceIn(List<BigDecimal> values) {
  586. addCriterion("commodity_price in", values, "commodityPrice");
  587. return (Criteria) this;
  588. }
  589. public Criteria andCommodityPriceNotIn(List<BigDecimal> values) {
  590. addCriterion("commodity_price not in", values, "commodityPrice");
  591. return (Criteria) this;
  592. }
  593. public Criteria andCommodityPriceBetween(BigDecimal value1, BigDecimal value2) {
  594. addCriterion("commodity_price between", value1, value2, "commodityPrice");
  595. return (Criteria) this;
  596. }
  597. public Criteria andCommodityPriceNotBetween(BigDecimal value1, BigDecimal value2) {
  598. addCriterion("commodity_price not between", value1, value2, "commodityPrice");
  599. return (Criteria) this;
  600. }
  601. public Criteria andTaskCommentIsNull() {
  602. addCriterion("task_comment is null");
  603. return (Criteria) this;
  604. }
  605. public Criteria andTaskCommentIsNotNull() {
  606. addCriterion("task_comment is not null");
  607. return (Criteria) this;
  608. }
  609. public Criteria andTaskCommentEqualTo(String value) {
  610. addCriterion("task_comment =", value, "taskComment");
  611. return (Criteria) this;
  612. }
  613. public Criteria andTaskCommentNotEqualTo(String value) {
  614. addCriterion("task_comment <>", value, "taskComment");
  615. return (Criteria) this;
  616. }
  617. public Criteria andTaskCommentGreaterThan(String value) {
  618. addCriterion("task_comment >", value, "taskComment");
  619. return (Criteria) this;
  620. }
  621. public Criteria andTaskCommentGreaterThanOrEqualTo(String value) {
  622. addCriterion("task_comment >=", value, "taskComment");
  623. return (Criteria) this;
  624. }
  625. public Criteria andTaskCommentLessThan(String value) {
  626. addCriterion("task_comment <", value, "taskComment");
  627. return (Criteria) this;
  628. }
  629. public Criteria andTaskCommentLessThanOrEqualTo(String value) {
  630. addCriterion("task_comment <=", value, "taskComment");
  631. return (Criteria) this;
  632. }
  633. public Criteria andTaskCommentLike(String value) {
  634. addCriterion("task_comment like", value, "taskComment");
  635. return (Criteria) this;
  636. }
  637. public Criteria andTaskCommentNotLike(String value) {
  638. addCriterion("task_comment not like", value, "taskComment");
  639. return (Criteria) this;
  640. }
  641. public Criteria andTaskCommentIn(List<String> values) {
  642. addCriterion("task_comment in", values, "taskComment");
  643. return (Criteria) this;
  644. }
  645. public Criteria andTaskCommentNotIn(List<String> values) {
  646. addCriterion("task_comment not in", values, "taskComment");
  647. return (Criteria) this;
  648. }
  649. public Criteria andTaskCommentBetween(String value1, String value2) {
  650. addCriterion("task_comment between", value1, value2, "taskComment");
  651. return (Criteria) this;
  652. }
  653. public Criteria andTaskCommentNotBetween(String value1, String value2) {
  654. addCriterion("task_comment not between", value1, value2, "taskComment");
  655. return (Criteria) this;
  656. }
  657. public Criteria andTypeIsNull() {
  658. addCriterion("type is null");
  659. return (Criteria) this;
  660. }
  661. public Criteria andTypeIsNotNull() {
  662. addCriterion("type is not null");
  663. return (Criteria) this;
  664. }
  665. public Criteria andTypeEqualTo(Integer value) {
  666. addCriterion("type =", value, "type");
  667. return (Criteria) this;
  668. }
  669. public Criteria andTypeNotEqualTo(Integer value) {
  670. addCriterion("type <>", value, "type");
  671. return (Criteria) this;
  672. }
  673. public Criteria andTypeGreaterThan(Integer value) {
  674. addCriterion("type >", value, "type");
  675. return (Criteria) this;
  676. }
  677. public Criteria andTypeGreaterThanOrEqualTo(Integer value) {
  678. addCriterion("type >=", value, "type");
  679. return (Criteria) this;
  680. }
  681. public Criteria andTypeLessThan(Integer value) {
  682. addCriterion("type <", value, "type");
  683. return (Criteria) this;
  684. }
  685. public Criteria andTypeLessThanOrEqualTo(Integer value) {
  686. addCriterion("type <=", value, "type");
  687. return (Criteria) this;
  688. }
  689. public Criteria andTypeIn(List<Integer> values) {
  690. addCriterion("type in", values, "type");
  691. return (Criteria) this;
  692. }
  693. public Criteria andTypeNotIn(List<Integer> values) {
  694. addCriterion("type not in", values, "type");
  695. return (Criteria) this;
  696. }
  697. public Criteria andTypeBetween(Integer value1, Integer value2) {
  698. addCriterion("type between", value1, value2, "type");
  699. return (Criteria) this;
  700. }
  701. public Criteria andTypeNotBetween(Integer value1, Integer value2) {
  702. addCriterion("type not between", value1, value2, "type");
  703. return (Criteria) this;
  704. }
  705. public Criteria andCreateTimeIsNull() {
  706. addCriterion("create_time is null");
  707. return (Criteria) this;
  708. }
  709. public Criteria andCreateTimeIsNotNull() {
  710. addCriterion("create_time is not null");
  711. return (Criteria) this;
  712. }
  713. public Criteria andCreateTimeEqualTo(Date value) {
  714. addCriterion("create_time =", value, "createTime");
  715. return (Criteria) this;
  716. }
  717. public Criteria andCreateTimeNotEqualTo(Date value) {
  718. addCriterion("create_time <>", value, "createTime");
  719. return (Criteria) this;
  720. }
  721. public Criteria andCreateTimeGreaterThan(Date value) {
  722. addCriterion("create_time >", value, "createTime");
  723. return (Criteria) this;
  724. }
  725. public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) {
  726. addCriterion("create_time >=", value, "createTime");
  727. return (Criteria) this;
  728. }
  729. public Criteria andCreateTimeLessThan(Date value) {
  730. addCriterion("create_time <", value, "createTime");
  731. return (Criteria) this;
  732. }
  733. public Criteria andCreateTimeLessThanOrEqualTo(Date value) {
  734. addCriterion("create_time <=", value, "createTime");
  735. return (Criteria) this;
  736. }
  737. public Criteria andCreateTimeIn(List<Date> values) {
  738. addCriterion("create_time in", values, "createTime");
  739. return (Criteria) this;
  740. }
  741. public Criteria andCreateTimeNotIn(List<Date> values) {
  742. addCriterion("create_time not in", values, "createTime");
  743. return (Criteria) this;
  744. }
  745. public Criteria andCreateTimeBetween(Date value1, Date value2) {
  746. addCriterion("create_time between", value1, value2, "createTime");
  747. return (Criteria) this;
  748. }
  749. public Criteria andCreateTimeNotBetween(Date value1, Date value2) {
  750. addCriterion("create_time not between", value1, value2, "createTime");
  751. return (Criteria) this;
  752. }
  753. public Criteria andSplitStatusIsNull() {
  754. addCriterion("split_status is null");
  755. return (Criteria) this;
  756. }
  757. public Criteria andSplitStatusIsNotNull() {
  758. addCriterion("split_status is not null");
  759. return (Criteria) this;
  760. }
  761. public Criteria andSplitStatusEqualTo(Integer value) {
  762. addCriterion("split_status =", value, "splitStatus");
  763. return (Criteria) this;
  764. }
  765. public Criteria andSplitStatusNotEqualTo(Integer value) {
  766. addCriterion("split_status <>", value, "splitStatus");
  767. return (Criteria) this;
  768. }
  769. public Criteria andSplitStatusGreaterThan(Integer value) {
  770. addCriterion("split_status >", value, "splitStatus");
  771. return (Criteria) this;
  772. }
  773. public Criteria andSplitStatusGreaterThanOrEqualTo(Integer value) {
  774. addCriterion("split_status >=", value, "splitStatus");
  775. return (Criteria) this;
  776. }
  777. public Criteria andSplitStatusLessThan(Integer value) {
  778. addCriterion("split_status <", value, "splitStatus");
  779. return (Criteria) this;
  780. }
  781. public Criteria andSplitStatusLessThanOrEqualTo(Integer value) {
  782. addCriterion("split_status <=", value, "splitStatus");
  783. return (Criteria) this;
  784. }
  785. public Criteria andSplitStatusIn(List<Integer> values) {
  786. addCriterion("split_status in", values, "splitStatus");
  787. return (Criteria) this;
  788. }
  789. public Criteria andSplitStatusNotIn(List<Integer> values) {
  790. addCriterion("split_status not in", values, "splitStatus");
  791. return (Criteria) this;
  792. }
  793. public Criteria andSplitStatusBetween(Integer value1, Integer value2) {
  794. addCriterion("split_status between", value1, value2, "splitStatus");
  795. return (Criteria) this;
  796. }
  797. public Criteria andSplitStatusNotBetween(Integer value1, Integer value2) {
  798. addCriterion("split_status not between", value1, value2, "splitStatus");
  799. return (Criteria) this;
  800. }
  801. public Criteria andSplitSuperIsNull() {
  802. addCriterion("split_super is null");
  803. return (Criteria) this;
  804. }
  805. public Criteria andSplitSuperIsNotNull() {
  806. addCriterion("split_super is not null");
  807. return (Criteria) this;
  808. }
  809. public Criteria andSplitSuperEqualTo(Integer value) {
  810. addCriterion("split_super =", value, "splitSuper");
  811. return (Criteria) this;
  812. }
  813. public Criteria andSplitSuperNotEqualTo(Integer value) {
  814. addCriterion("split_super <>", value, "splitSuper");
  815. return (Criteria) this;
  816. }
  817. public Criteria andSplitSuperGreaterThan(Integer value) {
  818. addCriterion("split_super >", value, "splitSuper");
  819. return (Criteria) this;
  820. }
  821. public Criteria andSplitSuperGreaterThanOrEqualTo(Integer value) {
  822. addCriterion("split_super >=", value, "splitSuper");
  823. return (Criteria) this;
  824. }
  825. public Criteria andSplitSuperLessThan(Integer value) {
  826. addCriterion("split_super <", value, "splitSuper");
  827. return (Criteria) this;
  828. }
  829. public Criteria andSplitSuperLessThanOrEqualTo(Integer value) {
  830. addCriterion("split_super <=", value, "splitSuper");
  831. return (Criteria) this;
  832. }
  833. public Criteria andSplitSuperIn(List<Integer> values) {
  834. addCriterion("split_super in", values, "splitSuper");
  835. return (Criteria) this;
  836. }
  837. public Criteria andSplitSuperNotIn(List<Integer> values) {
  838. addCriterion("split_super not in", values, "splitSuper");
  839. return (Criteria) this;
  840. }
  841. public Criteria andSplitSuperBetween(Integer value1, Integer value2) {
  842. addCriterion("split_super between", value1, value2, "splitSuper");
  843. return (Criteria) this;
  844. }
  845. public Criteria andSplitSuperNotBetween(Integer value1, Integer value2) {
  846. addCriterion("split_super not between", value1, value2, "splitSuper");
  847. return (Criteria) this;
  848. }
  849. public Criteria andReceiverNameIsNull() {
  850. addCriterion("receiver_name is null");
  851. return (Criteria) this;
  852. }
  853. public Criteria andReceiverNameIsNotNull() {
  854. addCriterion("receiver_name is not null");
  855. return (Criteria) this;
  856. }
  857. public Criteria andReceiverNameEqualTo(String value) {
  858. addCriterion("receiver_name =", value, "receiverName");
  859. return (Criteria) this;
  860. }
  861. public Criteria andReceiverNameNotEqualTo(String value) {
  862. addCriterion("receiver_name <>", value, "receiverName");
  863. return (Criteria) this;
  864. }
  865. public Criteria andReceiverNameGreaterThan(String value) {
  866. addCriterion("receiver_name >", value, "receiverName");
  867. return (Criteria) this;
  868. }
  869. public Criteria andReceiverNameGreaterThanOrEqualTo(String value) {
  870. addCriterion("receiver_name >=", value, "receiverName");
  871. return (Criteria) this;
  872. }
  873. public Criteria andReceiverNameLessThan(String value) {
  874. addCriterion("receiver_name <", value, "receiverName");
  875. return (Criteria) this;
  876. }
  877. public Criteria andReceiverNameLessThanOrEqualTo(String value) {
  878. addCriterion("receiver_name <=", value, "receiverName");
  879. return (Criteria) this;
  880. }
  881. public Criteria andReceiverNameLike(String value) {
  882. addCriterion("receiver_name like", value, "receiverName");
  883. return (Criteria) this;
  884. }
  885. public Criteria andReceiverNameNotLike(String value) {
  886. addCriterion("receiver_name not like", value, "receiverName");
  887. return (Criteria) this;
  888. }
  889. public Criteria andReceiverNameIn(List<String> values) {
  890. addCriterion("receiver_name in", values, "receiverName");
  891. return (Criteria) this;
  892. }
  893. public Criteria andReceiverNameNotIn(List<String> values) {
  894. addCriterion("receiver_name not in", values, "receiverName");
  895. return (Criteria) this;
  896. }
  897. public Criteria andReceiverNameBetween(String value1, String value2) {
  898. addCriterion("receiver_name between", value1, value2, "receiverName");
  899. return (Criteria) this;
  900. }
  901. public Criteria andReceiverNameNotBetween(String value1, String value2) {
  902. addCriterion("receiver_name not between", value1, value2, "receiverName");
  903. return (Criteria) this;
  904. }
  905. }
  906. /**
  907. * This class was generated by MyBatis Generator. This class corresponds to the database table t_change_task
  908. * @mbg.generated Mon Mar 30 15:38:22 CST 2020
  909. */
  910. public static class Criterion {
  911. private String condition;
  912. private Object value;
  913. private Object secondValue;
  914. private boolean noValue;
  915. private boolean singleValue;
  916. private boolean betweenValue;
  917. private boolean listValue;
  918. private String typeHandler;
  919. public String getCondition() {
  920. return condition;
  921. }
  922. public Object getValue() {
  923. return value;
  924. }
  925. public Object getSecondValue() {
  926. return secondValue;
  927. }
  928. public boolean isNoValue() {
  929. return noValue;
  930. }
  931. public boolean isSingleValue() {
  932. return singleValue;
  933. }
  934. public boolean isBetweenValue() {
  935. return betweenValue;
  936. }
  937. public boolean isListValue() {
  938. return listValue;
  939. }
  940. public String getTypeHandler() {
  941. return typeHandler;
  942. }
  943. protected Criterion(String condition) {
  944. super();
  945. this.condition = condition;
  946. this.typeHandler = null;
  947. this.noValue = true;
  948. }
  949. protected Criterion(String condition, Object value, String typeHandler) {
  950. super();
  951. this.condition = condition;
  952. this.value = value;
  953. this.typeHandler = typeHandler;
  954. if (value instanceof List<?>) {
  955. this.listValue = true;
  956. } else {
  957. this.singleValue = true;
  958. }
  959. }
  960. protected Criterion(String condition, Object value) {
  961. this(condition, value, null);
  962. }
  963. protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
  964. super();
  965. this.condition = condition;
  966. this.value = value;
  967. this.secondValue = secondValue;
  968. this.typeHandler = typeHandler;
  969. this.betweenValue = true;
  970. }
  971. protected Criterion(String condition, Object value, Object secondValue) {
  972. this(condition, value, secondValue, null);
  973. }
  974. }
  975. /**
  976. * This class was generated by MyBatis Generator.
  977. * This class corresponds to the database table t_changge_task
  978. *
  979. * @mbg.generated do_not_delete_during_merge Fri Jan 10 14:30:20 CST 2020
  980. */
  981. public static class Criteria extends GeneratedCriteria {
  982. protected Criteria() {
  983. super();
  984. }
  985. }
  986. }