ContractTaskExample.java 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242
  1. package com.goafanti.common.model;
  2. import java.util.ArrayList;
  3. import java.util.Date;
  4. import java.util.List;
  5. public class ContractTaskExample {
  6. /**
  7. * This field was generated by MyBatis Generator. This field corresponds to the database table contract_task
  8. * @mbg.generated Fri Mar 02 15:45:51 CST 2018
  9. */
  10. protected String orderByClause;
  11. /**
  12. * This field was generated by MyBatis Generator. This field corresponds to the database table contract_task
  13. * @mbg.generated Fri Mar 02 15:45:51 CST 2018
  14. */
  15. protected boolean distinct;
  16. /**
  17. * This field was generated by MyBatis Generator. This field corresponds to the database table contract_task
  18. * @mbg.generated Fri Mar 02 15:45:51 CST 2018
  19. */
  20. protected List<Criteria> oredCriteria;
  21. /**
  22. * This method was generated by MyBatis Generator. This method corresponds to the database table contract_task
  23. * @mbg.generated Fri Mar 02 15:45:51 CST 2018
  24. */
  25. public ContractTaskExample() {
  26. oredCriteria = new ArrayList<Criteria>();
  27. }
  28. /**
  29. * This method was generated by MyBatis Generator. This method corresponds to the database table contract_task
  30. * @mbg.generated Fri Mar 02 15:45:51 CST 2018
  31. */
  32. public void setOrderByClause(String orderByClause) {
  33. this.orderByClause = orderByClause;
  34. }
  35. /**
  36. * This method was generated by MyBatis Generator. This method corresponds to the database table contract_task
  37. * @mbg.generated Fri Mar 02 15:45:51 CST 2018
  38. */
  39. public String getOrderByClause() {
  40. return orderByClause;
  41. }
  42. /**
  43. * This method was generated by MyBatis Generator. This method corresponds to the database table contract_task
  44. * @mbg.generated Fri Mar 02 15:45:51 CST 2018
  45. */
  46. public void setDistinct(boolean distinct) {
  47. this.distinct = distinct;
  48. }
  49. /**
  50. * This method was generated by MyBatis Generator. This method corresponds to the database table contract_task
  51. * @mbg.generated Fri Mar 02 15:45:51 CST 2018
  52. */
  53. public boolean isDistinct() {
  54. return distinct;
  55. }
  56. /**
  57. * This method was generated by MyBatis Generator. This method corresponds to the database table contract_task
  58. * @mbg.generated Fri Mar 02 15:45:51 CST 2018
  59. */
  60. public List<Criteria> getOredCriteria() {
  61. return oredCriteria;
  62. }
  63. /**
  64. * This method was generated by MyBatis Generator. This method corresponds to the database table contract_task
  65. * @mbg.generated Fri Mar 02 15:45:51 CST 2018
  66. */
  67. public void or(Criteria criteria) {
  68. oredCriteria.add(criteria);
  69. }
  70. /**
  71. * This method was generated by MyBatis Generator. This method corresponds to the database table contract_task
  72. * @mbg.generated Fri Mar 02 15:45:51 CST 2018
  73. */
  74. public Criteria or() {
  75. Criteria criteria = createCriteriaInternal();
  76. oredCriteria.add(criteria);
  77. return criteria;
  78. }
  79. /**
  80. * This method was generated by MyBatis Generator. This method corresponds to the database table contract_task
  81. * @mbg.generated Fri Mar 02 15:45:51 CST 2018
  82. */
  83. public Criteria createCriteria() {
  84. Criteria criteria = createCriteriaInternal();
  85. if (oredCriteria.size() == 0) {
  86. oredCriteria.add(criteria);
  87. }
  88. return criteria;
  89. }
  90. /**
  91. * This method was generated by MyBatis Generator. This method corresponds to the database table contract_task
  92. * @mbg.generated Fri Mar 02 15:45:51 CST 2018
  93. */
  94. protected Criteria createCriteriaInternal() {
  95. Criteria criteria = new Criteria();
  96. return criteria;
  97. }
  98. /**
  99. * This method was generated by MyBatis Generator. This method corresponds to the database table contract_task
  100. * @mbg.generated Fri Mar 02 15:45:51 CST 2018
  101. */
  102. public void clear() {
  103. oredCriteria.clear();
  104. orderByClause = null;
  105. distinct = false;
  106. }
  107. /**
  108. * This class was generated by MyBatis Generator. This class corresponds to the database table contract_task
  109. * @mbg.generated Fri Mar 02 15:45:51 CST 2018
  110. */
  111. protected abstract static class GeneratedCriteria {
  112. protected List<Criterion> criteria;
  113. protected GeneratedCriteria() {
  114. super();
  115. criteria = new ArrayList<Criterion>();
  116. }
  117. public boolean isValid() {
  118. return criteria.size() > 0;
  119. }
  120. public List<Criterion> getAllCriteria() {
  121. return criteria;
  122. }
  123. public List<Criterion> getCriteria() {
  124. return criteria;
  125. }
  126. protected void addCriterion(String condition) {
  127. if (condition == null) {
  128. throw new RuntimeException("Value for condition cannot be null");
  129. }
  130. criteria.add(new Criterion(condition));
  131. }
  132. protected void addCriterion(String condition, Object value, String property) {
  133. if (value == null) {
  134. throw new RuntimeException("Value for " + property + " cannot be null");
  135. }
  136. criteria.add(new Criterion(condition, value));
  137. }
  138. protected void addCriterion(String condition, Object value1, Object value2, String property) {
  139. if (value1 == null || value2 == null) {
  140. throw new RuntimeException("Between values for " + property + " cannot be null");
  141. }
  142. criteria.add(new Criterion(condition, value1, value2));
  143. }
  144. public Criteria andIdIsNull() {
  145. addCriterion("id is null");
  146. return (Criteria) this;
  147. }
  148. public Criteria andIdIsNotNull() {
  149. addCriterion("id is not null");
  150. return (Criteria) this;
  151. }
  152. public Criteria andIdEqualTo(String value) {
  153. addCriterion("id =", value, "id");
  154. return (Criteria) this;
  155. }
  156. public Criteria andIdNotEqualTo(String value) {
  157. addCriterion("id <>", value, "id");
  158. return (Criteria) this;
  159. }
  160. public Criteria andIdGreaterThan(String value) {
  161. addCriterion("id >", value, "id");
  162. return (Criteria) this;
  163. }
  164. public Criteria andIdGreaterThanOrEqualTo(String value) {
  165. addCriterion("id >=", value, "id");
  166. return (Criteria) this;
  167. }
  168. public Criteria andIdLessThan(String value) {
  169. addCriterion("id <", value, "id");
  170. return (Criteria) this;
  171. }
  172. public Criteria andIdLessThanOrEqualTo(String value) {
  173. addCriterion("id <=", value, "id");
  174. return (Criteria) this;
  175. }
  176. public Criteria andIdLike(String value) {
  177. addCriterion("id like", value, "id");
  178. return (Criteria) this;
  179. }
  180. public Criteria andIdNotLike(String value) {
  181. addCriterion("id not like", value, "id");
  182. return (Criteria) this;
  183. }
  184. public Criteria andIdIn(List<String> values) {
  185. addCriterion("id in", values, "id");
  186. return (Criteria) this;
  187. }
  188. public Criteria andIdNotIn(List<String> values) {
  189. addCriterion("id not in", values, "id");
  190. return (Criteria) this;
  191. }
  192. public Criteria andIdBetween(String value1, String value2) {
  193. addCriterion("id between", value1, value2, "id");
  194. return (Criteria) this;
  195. }
  196. public Criteria andIdNotBetween(String value1, String value2) {
  197. addCriterion("id not between", value1, value2, "id");
  198. return (Criteria) this;
  199. }
  200. public Criteria andContractIdIsNull() {
  201. addCriterion("contract_id is null");
  202. return (Criteria) this;
  203. }
  204. public Criteria andContractIdIsNotNull() {
  205. addCriterion("contract_id is not null");
  206. return (Criteria) this;
  207. }
  208. public Criteria andContractIdEqualTo(String value) {
  209. addCriterion("contract_id =", value, "contractId");
  210. return (Criteria) this;
  211. }
  212. public Criteria andContractIdNotEqualTo(String value) {
  213. addCriterion("contract_id <>", value, "contractId");
  214. return (Criteria) this;
  215. }
  216. public Criteria andContractIdGreaterThan(String value) {
  217. addCriterion("contract_id >", value, "contractId");
  218. return (Criteria) this;
  219. }
  220. public Criteria andContractIdGreaterThanOrEqualTo(String value) {
  221. addCriterion("contract_id >=", value, "contractId");
  222. return (Criteria) this;
  223. }
  224. public Criteria andContractIdLessThan(String value) {
  225. addCriterion("contract_id <", value, "contractId");
  226. return (Criteria) this;
  227. }
  228. public Criteria andContractIdLessThanOrEqualTo(String value) {
  229. addCriterion("contract_id <=", value, "contractId");
  230. return (Criteria) this;
  231. }
  232. public Criteria andContractIdLike(String value) {
  233. addCriterion("contract_id like", value, "contractId");
  234. return (Criteria) this;
  235. }
  236. public Criteria andContractIdNotLike(String value) {
  237. addCriterion("contract_id not like", value, "contractId");
  238. return (Criteria) this;
  239. }
  240. public Criteria andContractIdIn(List<String> values) {
  241. addCriterion("contract_id in", values, "contractId");
  242. return (Criteria) this;
  243. }
  244. public Criteria andContractIdNotIn(List<String> values) {
  245. addCriterion("contract_id not in", values, "contractId");
  246. return (Criteria) this;
  247. }
  248. public Criteria andContractIdBetween(String value1, String value2) {
  249. addCriterion("contract_id between", value1, value2, "contractId");
  250. return (Criteria) this;
  251. }
  252. public Criteria andContractIdNotBetween(String value1, String value2) {
  253. addCriterion("contract_id not between", value1, value2, "contractId");
  254. return (Criteria) this;
  255. }
  256. public Criteria andCommodityIdIsNull() {
  257. addCriterion("commodity_id is null");
  258. return (Criteria) this;
  259. }
  260. public Criteria andCommodityIdIsNotNull() {
  261. addCriterion("commodity_id is not null");
  262. return (Criteria) this;
  263. }
  264. public Criteria andCommodityIdEqualTo(String value) {
  265. addCriterion("commodity_id =", value, "commodityId");
  266. return (Criteria) this;
  267. }
  268. public Criteria andCommodityIdNotEqualTo(String value) {
  269. addCriterion("commodity_id <>", value, "commodityId");
  270. return (Criteria) this;
  271. }
  272. public Criteria andCommodityIdGreaterThan(String value) {
  273. addCriterion("commodity_id >", value, "commodityId");
  274. return (Criteria) this;
  275. }
  276. public Criteria andCommodityIdGreaterThanOrEqualTo(String value) {
  277. addCriterion("commodity_id >=", value, "commodityId");
  278. return (Criteria) this;
  279. }
  280. public Criteria andCommodityIdLessThan(String value) {
  281. addCriterion("commodity_id <", value, "commodityId");
  282. return (Criteria) this;
  283. }
  284. public Criteria andCommodityIdLessThanOrEqualTo(String value) {
  285. addCriterion("commodity_id <=", value, "commodityId");
  286. return (Criteria) this;
  287. }
  288. public Criteria andCommodityIdLike(String value) {
  289. addCriterion("commodity_id like", value, "commodityId");
  290. return (Criteria) this;
  291. }
  292. public Criteria andCommodityIdNotLike(String value) {
  293. addCriterion("commodity_id not like", value, "commodityId");
  294. return (Criteria) this;
  295. }
  296. public Criteria andCommodityIdIn(List<String> values) {
  297. addCriterion("commodity_id in", values, "commodityId");
  298. return (Criteria) this;
  299. }
  300. public Criteria andCommodityIdNotIn(List<String> values) {
  301. addCriterion("commodity_id not in", values, "commodityId");
  302. return (Criteria) this;
  303. }
  304. public Criteria andCommodityIdBetween(String value1, String value2) {
  305. addCriterion("commodity_id between", value1, value2, "commodityId");
  306. return (Criteria) this;
  307. }
  308. public Criteria andCommodityIdNotBetween(String value1, String value2) {
  309. addCriterion("commodity_id not between", value1, value2, "commodityId");
  310. return (Criteria) this;
  311. }
  312. public Criteria andCommodityNameIsNull() {
  313. addCriterion("commodity_name is null");
  314. return (Criteria) this;
  315. }
  316. public Criteria andCommodityNameIsNotNull() {
  317. addCriterion("commodity_name is not null");
  318. return (Criteria) this;
  319. }
  320. public Criteria andCommodityNameEqualTo(String value) {
  321. addCriterion("commodity_name =", value, "commodityName");
  322. return (Criteria) this;
  323. }
  324. public Criteria andCommodityNameNotEqualTo(String value) {
  325. addCriterion("commodity_name <>", value, "commodityName");
  326. return (Criteria) this;
  327. }
  328. public Criteria andCommodityNameGreaterThan(String value) {
  329. addCriterion("commodity_name >", value, "commodityName");
  330. return (Criteria) this;
  331. }
  332. public Criteria andCommodityNameGreaterThanOrEqualTo(String value) {
  333. addCriterion("commodity_name >=", value, "commodityName");
  334. return (Criteria) this;
  335. }
  336. public Criteria andCommodityNameLessThan(String value) {
  337. addCriterion("commodity_name <", value, "commodityName");
  338. return (Criteria) this;
  339. }
  340. public Criteria andCommodityNameLessThanOrEqualTo(String value) {
  341. addCriterion("commodity_name <=", value, "commodityName");
  342. return (Criteria) this;
  343. }
  344. public Criteria andCommodityNameLike(String value) {
  345. addCriterion("commodity_name like", value, "commodityName");
  346. return (Criteria) this;
  347. }
  348. public Criteria andCommodityNameNotLike(String value) {
  349. addCriterion("commodity_name not like", value, "commodityName");
  350. return (Criteria) this;
  351. }
  352. public Criteria andCommodityNameIn(List<String> values) {
  353. addCriterion("commodity_name in", values, "commodityName");
  354. return (Criteria) this;
  355. }
  356. public Criteria andCommodityNameNotIn(List<String> values) {
  357. addCriterion("commodity_name not in", values, "commodityName");
  358. return (Criteria) this;
  359. }
  360. public Criteria andCommodityNameBetween(String value1, String value2) {
  361. addCriterion("commodity_name between", value1, value2, "commodityName");
  362. return (Criteria) this;
  363. }
  364. public Criteria andCommodityNameNotBetween(String value1, String value2) {
  365. addCriterion("commodity_name not between", value1, value2, "commodityName");
  366. return (Criteria) this;
  367. }
  368. public Criteria andCommodityQuantityIsNull() {
  369. addCriterion("commodity_quantity is null");
  370. return (Criteria) this;
  371. }
  372. public Criteria andCommodityQuantityIsNotNull() {
  373. addCriterion("commodity_quantity is not null");
  374. return (Criteria) this;
  375. }
  376. public Criteria andCommodityQuantityEqualTo(Integer value) {
  377. addCriterion("commodity_quantity =", value, "commodityQuantity");
  378. return (Criteria) this;
  379. }
  380. public Criteria andCommodityQuantityNotEqualTo(Integer value) {
  381. addCriterion("commodity_quantity <>", value, "commodityQuantity");
  382. return (Criteria) this;
  383. }
  384. public Criteria andCommodityQuantityGreaterThan(Integer value) {
  385. addCriterion("commodity_quantity >", value, "commodityQuantity");
  386. return (Criteria) this;
  387. }
  388. public Criteria andCommodityQuantityGreaterThanOrEqualTo(Integer value) {
  389. addCriterion("commodity_quantity >=", value, "commodityQuantity");
  390. return (Criteria) this;
  391. }
  392. public Criteria andCommodityQuantityLessThan(Integer value) {
  393. addCriterion("commodity_quantity <", value, "commodityQuantity");
  394. return (Criteria) this;
  395. }
  396. public Criteria andCommodityQuantityLessThanOrEqualTo(Integer value) {
  397. addCriterion("commodity_quantity <=", value, "commodityQuantity");
  398. return (Criteria) this;
  399. }
  400. public Criteria andCommodityQuantityIn(List<Integer> values) {
  401. addCriterion("commodity_quantity in", values, "commodityQuantity");
  402. return (Criteria) this;
  403. }
  404. public Criteria andCommodityQuantityNotIn(List<Integer> values) {
  405. addCriterion("commodity_quantity not in", values, "commodityQuantity");
  406. return (Criteria) this;
  407. }
  408. public Criteria andCommodityQuantityBetween(Integer value1, Integer value2) {
  409. addCriterion("commodity_quantity between", value1, value2, "commodityQuantity");
  410. return (Criteria) this;
  411. }
  412. public Criteria andCommodityQuantityNotBetween(Integer value1, Integer value2) {
  413. addCriterion("commodity_quantity not between", value1, value2, "commodityQuantity");
  414. return (Criteria) this;
  415. }
  416. public Criteria andCommodityTypeIsNull() {
  417. addCriterion("commodity_type is null");
  418. return (Criteria) this;
  419. }
  420. public Criteria andCommodityTypeIsNotNull() {
  421. addCriterion("commodity_type is not null");
  422. return (Criteria) this;
  423. }
  424. public Criteria andCommodityTypeEqualTo(Integer value) {
  425. addCriterion("commodity_type =", value, "commodityType");
  426. return (Criteria) this;
  427. }
  428. public Criteria andCommodityTypeNotEqualTo(Integer value) {
  429. addCriterion("commodity_type <>", value, "commodityType");
  430. return (Criteria) this;
  431. }
  432. public Criteria andCommodityTypeGreaterThan(Integer value) {
  433. addCriterion("commodity_type >", value, "commodityType");
  434. return (Criteria) this;
  435. }
  436. public Criteria andCommodityTypeGreaterThanOrEqualTo(Integer value) {
  437. addCriterion("commodity_type >=", value, "commodityType");
  438. return (Criteria) this;
  439. }
  440. public Criteria andCommodityTypeLessThan(Integer value) {
  441. addCriterion("commodity_type <", value, "commodityType");
  442. return (Criteria) this;
  443. }
  444. public Criteria andCommodityTypeLessThanOrEqualTo(Integer value) {
  445. addCriterion("commodity_type <=", value, "commodityType");
  446. return (Criteria) this;
  447. }
  448. public Criteria andCommodityTypeIn(List<Integer> values) {
  449. addCriterion("commodity_type in", values, "commodityType");
  450. return (Criteria) this;
  451. }
  452. public Criteria andCommodityTypeNotIn(List<Integer> values) {
  453. addCriterion("commodity_type not in", values, "commodityType");
  454. return (Criteria) this;
  455. }
  456. public Criteria andCommodityTypeBetween(Integer value1, Integer value2) {
  457. addCriterion("commodity_type between", value1, value2, "commodityType");
  458. return (Criteria) this;
  459. }
  460. public Criteria andCommodityTypeNotBetween(Integer value1, Integer value2) {
  461. addCriterion("commodity_type not between", value1, value2, "commodityType");
  462. return (Criteria) this;
  463. }
  464. public Criteria andCommodityModeIsNull() {
  465. addCriterion("commodity_mode is null");
  466. return (Criteria) this;
  467. }
  468. public Criteria andCommodityModeIsNotNull() {
  469. addCriterion("commodity_mode is not null");
  470. return (Criteria) this;
  471. }
  472. public Criteria andCommodityModeEqualTo(String value) {
  473. addCriterion("commodity_mode =", value, "commodityMode");
  474. return (Criteria) this;
  475. }
  476. public Criteria andCommodityModeNotEqualTo(String value) {
  477. addCriterion("commodity_mode <>", value, "commodityMode");
  478. return (Criteria) this;
  479. }
  480. public Criteria andCommodityModeGreaterThan(String value) {
  481. addCriterion("commodity_mode >", value, "commodityMode");
  482. return (Criteria) this;
  483. }
  484. public Criteria andCommodityModeGreaterThanOrEqualTo(String value) {
  485. addCriterion("commodity_mode >=", value, "commodityMode");
  486. return (Criteria) this;
  487. }
  488. public Criteria andCommodityModeLessThan(String value) {
  489. addCriterion("commodity_mode <", value, "commodityMode");
  490. return (Criteria) this;
  491. }
  492. public Criteria andCommodityModeLessThanOrEqualTo(String value) {
  493. addCriterion("commodity_mode <=", value, "commodityMode");
  494. return (Criteria) this;
  495. }
  496. public Criteria andCommodityModeLike(String value) {
  497. addCriterion("commodity_mode like", value, "commodityMode");
  498. return (Criteria) this;
  499. }
  500. public Criteria andCommodityModeNotLike(String value) {
  501. addCriterion("commodity_mode not like", value, "commodityMode");
  502. return (Criteria) this;
  503. }
  504. public Criteria andCommodityModeIn(List<String> values) {
  505. addCriterion("commodity_mode in", values, "commodityMode");
  506. return (Criteria) this;
  507. }
  508. public Criteria andCommodityModeNotIn(List<String> values) {
  509. addCriterion("commodity_mode not in", values, "commodityMode");
  510. return (Criteria) this;
  511. }
  512. public Criteria andCommodityModeBetween(String value1, String value2) {
  513. addCriterion("commodity_mode between", value1, value2, "commodityMode");
  514. return (Criteria) this;
  515. }
  516. public Criteria andCommodityModeNotBetween(String value1, String value2) {
  517. addCriterion("commodity_mode not between", value1, value2, "commodityMode");
  518. return (Criteria) this;
  519. }
  520. public Criteria andCreateTimeIsNull() {
  521. addCriterion("create_time is null");
  522. return (Criteria) this;
  523. }
  524. public Criteria andCreateTimeIsNotNull() {
  525. addCriterion("create_time is not null");
  526. return (Criteria) this;
  527. }
  528. public Criteria andCreateTimeEqualTo(Date value) {
  529. addCriterion("create_time =", value, "createTime");
  530. return (Criteria) this;
  531. }
  532. public Criteria andCreateTimeNotEqualTo(Date value) {
  533. addCriterion("create_time <>", value, "createTime");
  534. return (Criteria) this;
  535. }
  536. public Criteria andCreateTimeGreaterThan(Date value) {
  537. addCriterion("create_time >", value, "createTime");
  538. return (Criteria) this;
  539. }
  540. public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) {
  541. addCriterion("create_time >=", value, "createTime");
  542. return (Criteria) this;
  543. }
  544. public Criteria andCreateTimeLessThan(Date value) {
  545. addCriterion("create_time <", value, "createTime");
  546. return (Criteria) this;
  547. }
  548. public Criteria andCreateTimeLessThanOrEqualTo(Date value) {
  549. addCriterion("create_time <=", value, "createTime");
  550. return (Criteria) this;
  551. }
  552. public Criteria andCreateTimeIn(List<Date> values) {
  553. addCriterion("create_time in", values, "createTime");
  554. return (Criteria) this;
  555. }
  556. public Criteria andCreateTimeNotIn(List<Date> values) {
  557. addCriterion("create_time not in", values, "createTime");
  558. return (Criteria) this;
  559. }
  560. public Criteria andCreateTimeBetween(Date value1, Date value2) {
  561. addCriterion("create_time between", value1, value2, "createTime");
  562. return (Criteria) this;
  563. }
  564. public Criteria andCreateTimeNotBetween(Date value1, Date value2) {
  565. addCriterion("create_time not between", value1, value2, "createTime");
  566. return (Criteria) this;
  567. }
  568. public Criteria andTaskCommentIsNull() {
  569. addCriterion("task_comment is null");
  570. return (Criteria) this;
  571. }
  572. public Criteria andTaskCommentIsNotNull() {
  573. addCriterion("task_comment is not null");
  574. return (Criteria) this;
  575. }
  576. public Criteria andTaskCommentEqualTo(String value) {
  577. addCriterion("task_comment =", value, "taskComment");
  578. return (Criteria) this;
  579. }
  580. public Criteria andTaskCommentNotEqualTo(String value) {
  581. addCriterion("task_comment <>", value, "taskComment");
  582. return (Criteria) this;
  583. }
  584. public Criteria andTaskCommentGreaterThan(String value) {
  585. addCriterion("task_comment >", value, "taskComment");
  586. return (Criteria) this;
  587. }
  588. public Criteria andTaskCommentGreaterThanOrEqualTo(String value) {
  589. addCriterion("task_comment >=", value, "taskComment");
  590. return (Criteria) this;
  591. }
  592. public Criteria andTaskCommentLessThan(String value) {
  593. addCriterion("task_comment <", value, "taskComment");
  594. return (Criteria) this;
  595. }
  596. public Criteria andTaskCommentLessThanOrEqualTo(String value) {
  597. addCriterion("task_comment <=", value, "taskComment");
  598. return (Criteria) this;
  599. }
  600. public Criteria andTaskCommentLike(String value) {
  601. addCriterion("task_comment like", value, "taskComment");
  602. return (Criteria) this;
  603. }
  604. public Criteria andTaskCommentNotLike(String value) {
  605. addCriterion("task_comment not like", value, "taskComment");
  606. return (Criteria) this;
  607. }
  608. public Criteria andTaskCommentIn(List<String> values) {
  609. addCriterion("task_comment in", values, "taskComment");
  610. return (Criteria) this;
  611. }
  612. public Criteria andTaskCommentNotIn(List<String> values) {
  613. addCriterion("task_comment not in", values, "taskComment");
  614. return (Criteria) this;
  615. }
  616. public Criteria andTaskCommentBetween(String value1, String value2) {
  617. addCriterion("task_comment between", value1, value2, "taskComment");
  618. return (Criteria) this;
  619. }
  620. public Criteria andTaskCommentNotBetween(String value1, String value2) {
  621. addCriterion("task_comment not between", value1, value2, "taskComment");
  622. return (Criteria) this;
  623. }
  624. public Criteria andTaskStatusIsNull() {
  625. addCriterion("task_status is null");
  626. return (Criteria) this;
  627. }
  628. public Criteria andTaskStatusIsNotNull() {
  629. addCriterion("task_status is not null");
  630. return (Criteria) this;
  631. }
  632. public Criteria andTaskStatusEqualTo(Integer value) {
  633. addCriterion("task_status =", value, "taskStatus");
  634. return (Criteria) this;
  635. }
  636. public Criteria andTaskStatusNotEqualTo(Integer value) {
  637. addCriterion("task_status <>", value, "taskStatus");
  638. return (Criteria) this;
  639. }
  640. public Criteria andTaskStatusGreaterThan(Integer value) {
  641. addCriterion("task_status >", value, "taskStatus");
  642. return (Criteria) this;
  643. }
  644. public Criteria andTaskStatusGreaterThanOrEqualTo(Integer value) {
  645. addCriterion("task_status >=", value, "taskStatus");
  646. return (Criteria) this;
  647. }
  648. public Criteria andTaskStatusLessThan(Integer value) {
  649. addCriterion("task_status <", value, "taskStatus");
  650. return (Criteria) this;
  651. }
  652. public Criteria andTaskStatusLessThanOrEqualTo(Integer value) {
  653. addCriterion("task_status <=", value, "taskStatus");
  654. return (Criteria) this;
  655. }
  656. public Criteria andTaskStatusIn(List<Integer> values) {
  657. addCriterion("task_status in", values, "taskStatus");
  658. return (Criteria) this;
  659. }
  660. public Criteria andTaskStatusNotIn(List<Integer> values) {
  661. addCriterion("task_status not in", values, "taskStatus");
  662. return (Criteria) this;
  663. }
  664. public Criteria andTaskStatusBetween(Integer value1, Integer value2) {
  665. addCriterion("task_status between", value1, value2, "taskStatus");
  666. return (Criteria) this;
  667. }
  668. public Criteria andTaskStatusNotBetween(Integer value1, Integer value2) {
  669. addCriterion("task_status not between", value1, value2, "taskStatus");
  670. return (Criteria) this;
  671. }
  672. public Criteria andTaskDistributionTimeIsNull() {
  673. addCriterion("task_distribution_time is null");
  674. return (Criteria) this;
  675. }
  676. public Criteria andTaskDistributionTimeIsNotNull() {
  677. addCriterion("task_distribution_time is not null");
  678. return (Criteria) this;
  679. }
  680. public Criteria andTaskDistributionTimeEqualTo(Date value) {
  681. addCriterion("task_distribution_time =", value, "taskDistributionTime");
  682. return (Criteria) this;
  683. }
  684. public Criteria andTaskDistributionTimeNotEqualTo(Date value) {
  685. addCriterion("task_distribution_time <>", value, "taskDistributionTime");
  686. return (Criteria) this;
  687. }
  688. public Criteria andTaskDistributionTimeGreaterThan(Date value) {
  689. addCriterion("task_distribution_time >", value, "taskDistributionTime");
  690. return (Criteria) this;
  691. }
  692. public Criteria andTaskDistributionTimeGreaterThanOrEqualTo(Date value) {
  693. addCriterion("task_distribution_time >=", value, "taskDistributionTime");
  694. return (Criteria) this;
  695. }
  696. public Criteria andTaskDistributionTimeLessThan(Date value) {
  697. addCriterion("task_distribution_time <", value, "taskDistributionTime");
  698. return (Criteria) this;
  699. }
  700. public Criteria andTaskDistributionTimeLessThanOrEqualTo(Date value) {
  701. addCriterion("task_distribution_time <=", value, "taskDistributionTime");
  702. return (Criteria) this;
  703. }
  704. public Criteria andTaskDistributionTimeIn(List<Date> values) {
  705. addCriterion("task_distribution_time in", values, "taskDistributionTime");
  706. return (Criteria) this;
  707. }
  708. public Criteria andTaskDistributionTimeNotIn(List<Date> values) {
  709. addCriterion("task_distribution_time not in", values, "taskDistributionTime");
  710. return (Criteria) this;
  711. }
  712. public Criteria andTaskDistributionTimeBetween(Date value1, Date value2) {
  713. addCriterion("task_distribution_time between", value1, value2, "taskDistributionTime");
  714. return (Criteria) this;
  715. }
  716. public Criteria andTaskDistributionTimeNotBetween(Date value1, Date value2) {
  717. addCriterion("task_distribution_time not between", value1, value2, "taskDistributionTime");
  718. return (Criteria) this;
  719. }
  720. public Criteria andTaskAllocatorIsNull() {
  721. addCriterion("task_allocator is null");
  722. return (Criteria) this;
  723. }
  724. public Criteria andTaskAllocatorIsNotNull() {
  725. addCriterion("task_allocator is not null");
  726. return (Criteria) this;
  727. }
  728. public Criteria andTaskAllocatorEqualTo(String value) {
  729. addCriterion("task_allocator =", value, "taskAllocator");
  730. return (Criteria) this;
  731. }
  732. public Criteria andTaskAllocatorNotEqualTo(String value) {
  733. addCriterion("task_allocator <>", value, "taskAllocator");
  734. return (Criteria) this;
  735. }
  736. public Criteria andTaskAllocatorGreaterThan(String value) {
  737. addCriterion("task_allocator >", value, "taskAllocator");
  738. return (Criteria) this;
  739. }
  740. public Criteria andTaskAllocatorGreaterThanOrEqualTo(String value) {
  741. addCriterion("task_allocator >=", value, "taskAllocator");
  742. return (Criteria) this;
  743. }
  744. public Criteria andTaskAllocatorLessThan(String value) {
  745. addCriterion("task_allocator <", value, "taskAllocator");
  746. return (Criteria) this;
  747. }
  748. public Criteria andTaskAllocatorLessThanOrEqualTo(String value) {
  749. addCriterion("task_allocator <=", value, "taskAllocator");
  750. return (Criteria) this;
  751. }
  752. public Criteria andTaskAllocatorLike(String value) {
  753. addCriterion("task_allocator like", value, "taskAllocator");
  754. return (Criteria) this;
  755. }
  756. public Criteria andTaskAllocatorNotLike(String value) {
  757. addCriterion("task_allocator not like", value, "taskAllocator");
  758. return (Criteria) this;
  759. }
  760. public Criteria andTaskAllocatorIn(List<String> values) {
  761. addCriterion("task_allocator in", values, "taskAllocator");
  762. return (Criteria) this;
  763. }
  764. public Criteria andTaskAllocatorNotIn(List<String> values) {
  765. addCriterion("task_allocator not in", values, "taskAllocator");
  766. return (Criteria) this;
  767. }
  768. public Criteria andTaskAllocatorBetween(String value1, String value2) {
  769. addCriterion("task_allocator between", value1, value2, "taskAllocator");
  770. return (Criteria) this;
  771. }
  772. public Criteria andTaskAllocatorNotBetween(String value1, String value2) {
  773. addCriterion("task_allocator not between", value1, value2, "taskAllocator");
  774. return (Criteria) this;
  775. }
  776. public Criteria andTaskReceiverIsNull() {
  777. addCriterion("task_receiver is null");
  778. return (Criteria) this;
  779. }
  780. public Criteria andTaskReceiverIsNotNull() {
  781. addCriterion("task_receiver is not null");
  782. return (Criteria) this;
  783. }
  784. public Criteria andTaskReceiverEqualTo(String value) {
  785. addCriterion("task_receiver =", value, "taskReceiver");
  786. return (Criteria) this;
  787. }
  788. public Criteria andTaskReceiverNotEqualTo(String value) {
  789. addCriterion("task_receiver <>", value, "taskReceiver");
  790. return (Criteria) this;
  791. }
  792. public Criteria andTaskReceiverGreaterThan(String value) {
  793. addCriterion("task_receiver >", value, "taskReceiver");
  794. return (Criteria) this;
  795. }
  796. public Criteria andTaskReceiverGreaterThanOrEqualTo(String value) {
  797. addCriterion("task_receiver >=", value, "taskReceiver");
  798. return (Criteria) this;
  799. }
  800. public Criteria andTaskReceiverLessThan(String value) {
  801. addCriterion("task_receiver <", value, "taskReceiver");
  802. return (Criteria) this;
  803. }
  804. public Criteria andTaskReceiverLessThanOrEqualTo(String value) {
  805. addCriterion("task_receiver <=", value, "taskReceiver");
  806. return (Criteria) this;
  807. }
  808. public Criteria andTaskReceiverLike(String value) {
  809. addCriterion("task_receiver like", value, "taskReceiver");
  810. return (Criteria) this;
  811. }
  812. public Criteria andTaskReceiverNotLike(String value) {
  813. addCriterion("task_receiver not like", value, "taskReceiver");
  814. return (Criteria) this;
  815. }
  816. public Criteria andTaskReceiverIn(List<String> values) {
  817. addCriterion("task_receiver in", values, "taskReceiver");
  818. return (Criteria) this;
  819. }
  820. public Criteria andTaskReceiverNotIn(List<String> values) {
  821. addCriterion("task_receiver not in", values, "taskReceiver");
  822. return (Criteria) this;
  823. }
  824. public Criteria andTaskReceiverBetween(String value1, String value2) {
  825. addCriterion("task_receiver between", value1, value2, "taskReceiver");
  826. return (Criteria) this;
  827. }
  828. public Criteria andTaskReceiverNotBetween(String value1, String value2) {
  829. addCriterion("task_receiver not between", value1, value2, "taskReceiver");
  830. return (Criteria) this;
  831. }
  832. public Criteria andDeletedSignIsNull() {
  833. addCriterion("deleted_sign is null");
  834. return (Criteria) this;
  835. }
  836. public Criteria andDeletedSignIsNotNull() {
  837. addCriterion("deleted_sign is not null");
  838. return (Criteria) this;
  839. }
  840. public Criteria andDeletedSignEqualTo(Integer value) {
  841. addCriterion("deleted_sign =", value, "deletedSign");
  842. return (Criteria) this;
  843. }
  844. public Criteria andDeletedSignNotEqualTo(Integer value) {
  845. addCriterion("deleted_sign <>", value, "deletedSign");
  846. return (Criteria) this;
  847. }
  848. public Criteria andDeletedSignGreaterThan(Integer value) {
  849. addCriterion("deleted_sign >", value, "deletedSign");
  850. return (Criteria) this;
  851. }
  852. public Criteria andDeletedSignGreaterThanOrEqualTo(Integer value) {
  853. addCriterion("deleted_sign >=", value, "deletedSign");
  854. return (Criteria) this;
  855. }
  856. public Criteria andDeletedSignLessThan(Integer value) {
  857. addCriterion("deleted_sign <", value, "deletedSign");
  858. return (Criteria) this;
  859. }
  860. public Criteria andDeletedSignLessThanOrEqualTo(Integer value) {
  861. addCriterion("deleted_sign <=", value, "deletedSign");
  862. return (Criteria) this;
  863. }
  864. public Criteria andDeletedSignIn(List<Integer> values) {
  865. addCriterion("deleted_sign in", values, "deletedSign");
  866. return (Criteria) this;
  867. }
  868. public Criteria andDeletedSignNotIn(List<Integer> values) {
  869. addCriterion("deleted_sign not in", values, "deletedSign");
  870. return (Criteria) this;
  871. }
  872. public Criteria andDeletedSignBetween(Integer value1, Integer value2) {
  873. addCriterion("deleted_sign between", value1, value2, "deletedSign");
  874. return (Criteria) this;
  875. }
  876. public Criteria andDeletedSignNotBetween(Integer value1, Integer value2) {
  877. addCriterion("deleted_sign not between", value1, value2, "deletedSign");
  878. return (Criteria) this;
  879. }
  880. public Criteria andSerialNumberIsNull() {
  881. addCriterion("serial_number is null");
  882. return (Criteria) this;
  883. }
  884. public Criteria andSerialNumberIsNotNull() {
  885. addCriterion("serial_number is not null");
  886. return (Criteria) this;
  887. }
  888. public Criteria andSerialNumberEqualTo(Integer value) {
  889. addCriterion("serial_number =", value, "serialNumber");
  890. return (Criteria) this;
  891. }
  892. public Criteria andSerialNumberNotEqualTo(Integer value) {
  893. addCriterion("serial_number <>", value, "serialNumber");
  894. return (Criteria) this;
  895. }
  896. public Criteria andSerialNumberGreaterThan(Integer value) {
  897. addCriterion("serial_number >", value, "serialNumber");
  898. return (Criteria) this;
  899. }
  900. public Criteria andSerialNumberGreaterThanOrEqualTo(Integer value) {
  901. addCriterion("serial_number >=", value, "serialNumber");
  902. return (Criteria) this;
  903. }
  904. public Criteria andSerialNumberLessThan(Integer value) {
  905. addCriterion("serial_number <", value, "serialNumber");
  906. return (Criteria) this;
  907. }
  908. public Criteria andSerialNumberLessThanOrEqualTo(Integer value) {
  909. addCriterion("serial_number <=", value, "serialNumber");
  910. return (Criteria) this;
  911. }
  912. public Criteria andSerialNumberIn(List<Integer> values) {
  913. addCriterion("serial_number in", values, "serialNumber");
  914. return (Criteria) this;
  915. }
  916. public Criteria andSerialNumberNotIn(List<Integer> values) {
  917. addCriterion("serial_number not in", values, "serialNumber");
  918. return (Criteria) this;
  919. }
  920. public Criteria andSerialNumberBetween(Integer value1, Integer value2) {
  921. addCriterion("serial_number between", value1, value2, "serialNumber");
  922. return (Criteria) this;
  923. }
  924. public Criteria andSerialNumberNotBetween(Integer value1, Integer value2) {
  925. addCriterion("serial_number not between", value1, value2, "serialNumber");
  926. return (Criteria) this;
  927. }
  928. }
  929. /**
  930. * This class was generated by MyBatis Generator. This class corresponds to the database table contract_task
  931. * @mbg.generated Fri Mar 02 15:45:51 CST 2018
  932. */
  933. public static class Criterion {
  934. private String condition;
  935. private Object value;
  936. private Object secondValue;
  937. private boolean noValue;
  938. private boolean singleValue;
  939. private boolean betweenValue;
  940. private boolean listValue;
  941. private String typeHandler;
  942. public String getCondition() {
  943. return condition;
  944. }
  945. public Object getValue() {
  946. return value;
  947. }
  948. public Object getSecondValue() {
  949. return secondValue;
  950. }
  951. public boolean isNoValue() {
  952. return noValue;
  953. }
  954. public boolean isSingleValue() {
  955. return singleValue;
  956. }
  957. public boolean isBetweenValue() {
  958. return betweenValue;
  959. }
  960. public boolean isListValue() {
  961. return listValue;
  962. }
  963. public String getTypeHandler() {
  964. return typeHandler;
  965. }
  966. protected Criterion(String condition) {
  967. super();
  968. this.condition = condition;
  969. this.typeHandler = null;
  970. this.noValue = true;
  971. }
  972. protected Criterion(String condition, Object value, String typeHandler) {
  973. super();
  974. this.condition = condition;
  975. this.value = value;
  976. this.typeHandler = typeHandler;
  977. if (value instanceof List<?>) {
  978. this.listValue = true;
  979. } else {
  980. this.singleValue = true;
  981. }
  982. }
  983. protected Criterion(String condition, Object value) {
  984. this(condition, value, null);
  985. }
  986. protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
  987. super();
  988. this.condition = condition;
  989. this.value = value;
  990. this.secondValue = secondValue;
  991. this.typeHandler = typeHandler;
  992. this.betweenValue = true;
  993. }
  994. protected Criterion(String condition, Object value, Object secondValue) {
  995. this(condition, value, secondValue, null);
  996. }
  997. }
  998. /**
  999. * This class was generated by MyBatis Generator.
  1000. * This class corresponds to the database table contract_task
  1001. *
  1002. * @mbg.generated do_not_delete_during_merge Fri Jan 26 16:01:38 CST 2018
  1003. */
  1004. public static class Criteria extends GeneratedCriteria {
  1005. protected Criteria() {
  1006. super();
  1007. }
  1008. }
  1009. }