ContractExample.java 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512
  1. package com.goafanti.common.model;
  2. import java.util.ArrayList;
  3. import java.util.Date;
  4. import java.util.List;
  5. public class ContractExample {
  6. /**
  7. * This field was generated by MyBatis Generator. This field corresponds to the database table contract
  8. * @mbg.generated Wed May 02 19:56:05 CST 2018
  9. */
  10. protected String orderByClause;
  11. /**
  12. * This field was generated by MyBatis Generator. This field corresponds to the database table contract
  13. * @mbg.generated Wed May 02 19:56:05 CST 2018
  14. */
  15. protected boolean distinct;
  16. /**
  17. * This field was generated by MyBatis Generator. This field corresponds to the database table contract
  18. * @mbg.generated Wed May 02 19:56:05 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
  23. * @mbg.generated Wed May 02 19:56:05 CST 2018
  24. */
  25. public ContractExample() {
  26. oredCriteria = new ArrayList<Criteria>();
  27. }
  28. /**
  29. * This method was generated by MyBatis Generator. This method corresponds to the database table contract
  30. * @mbg.generated Wed May 02 19:56:05 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
  37. * @mbg.generated Wed May 02 19:56:05 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
  44. * @mbg.generated Wed May 02 19:56:05 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
  51. * @mbg.generated Wed May 02 19:56:05 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
  58. * @mbg.generated Wed May 02 19:56:05 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
  65. * @mbg.generated Wed May 02 19:56:05 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
  72. * @mbg.generated Wed May 02 19:56:05 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
  81. * @mbg.generated Wed May 02 19:56:05 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
  92. * @mbg.generated Wed May 02 19:56:05 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
  100. * @mbg.generated Wed May 02 19:56:05 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
  109. * @mbg.generated Wed May 02 19:56:05 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 andSerialNumberIsNull() {
  201. addCriterion("serial_number is null");
  202. return (Criteria) this;
  203. }
  204. public Criteria andSerialNumberIsNotNull() {
  205. addCriterion("serial_number is not null");
  206. return (Criteria) this;
  207. }
  208. public Criteria andSerialNumberEqualTo(Integer value) {
  209. addCriterion("serial_number =", value, "serialNumber");
  210. return (Criteria) this;
  211. }
  212. public Criteria andSerialNumberNotEqualTo(Integer value) {
  213. addCriterion("serial_number <>", value, "serialNumber");
  214. return (Criteria) this;
  215. }
  216. public Criteria andSerialNumberGreaterThan(Integer value) {
  217. addCriterion("serial_number >", value, "serialNumber");
  218. return (Criteria) this;
  219. }
  220. public Criteria andSerialNumberGreaterThanOrEqualTo(Integer value) {
  221. addCriterion("serial_number >=", value, "serialNumber");
  222. return (Criteria) this;
  223. }
  224. public Criteria andSerialNumberLessThan(Integer value) {
  225. addCriterion("serial_number <", value, "serialNumber");
  226. return (Criteria) this;
  227. }
  228. public Criteria andSerialNumberLessThanOrEqualTo(Integer value) {
  229. addCriterion("serial_number <=", value, "serialNumber");
  230. return (Criteria) this;
  231. }
  232. public Criteria andSerialNumberIn(List<Integer> values) {
  233. addCriterion("serial_number in", values, "serialNumber");
  234. return (Criteria) this;
  235. }
  236. public Criteria andSerialNumberNotIn(List<Integer> values) {
  237. addCriterion("serial_number not in", values, "serialNumber");
  238. return (Criteria) this;
  239. }
  240. public Criteria andSerialNumberBetween(Integer value1, Integer value2) {
  241. addCriterion("serial_number between", value1, value2, "serialNumber");
  242. return (Criteria) this;
  243. }
  244. public Criteria andSerialNumberNotBetween(Integer value1, Integer value2) {
  245. addCriterion("serial_number not between", value1, value2, "serialNumber");
  246. return (Criteria) this;
  247. }
  248. public Criteria andCreateTimeIsNull() {
  249. addCriterion("create_time is null");
  250. return (Criteria) this;
  251. }
  252. public Criteria andCreateTimeIsNotNull() {
  253. addCriterion("create_time is not null");
  254. return (Criteria) this;
  255. }
  256. public Criteria andCreateTimeEqualTo(Date value) {
  257. addCriterion("create_time =", value, "createTime");
  258. return (Criteria) this;
  259. }
  260. public Criteria andCreateTimeNotEqualTo(Date value) {
  261. addCriterion("create_time <>", value, "createTime");
  262. return (Criteria) this;
  263. }
  264. public Criteria andCreateTimeGreaterThan(Date value) {
  265. addCriterion("create_time >", value, "createTime");
  266. return (Criteria) this;
  267. }
  268. public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) {
  269. addCriterion("create_time >=", value, "createTime");
  270. return (Criteria) this;
  271. }
  272. public Criteria andCreateTimeLessThan(Date value) {
  273. addCriterion("create_time <", value, "createTime");
  274. return (Criteria) this;
  275. }
  276. public Criteria andCreateTimeLessThanOrEqualTo(Date value) {
  277. addCriterion("create_time <=", value, "createTime");
  278. return (Criteria) this;
  279. }
  280. public Criteria andCreateTimeIn(List<Date> values) {
  281. addCriterion("create_time in", values, "createTime");
  282. return (Criteria) this;
  283. }
  284. public Criteria andCreateTimeNotIn(List<Date> values) {
  285. addCriterion("create_time not in", values, "createTime");
  286. return (Criteria) this;
  287. }
  288. public Criteria andCreateTimeBetween(Date value1, Date value2) {
  289. addCriterion("create_time between", value1, value2, "createTime");
  290. return (Criteria) this;
  291. }
  292. public Criteria andCreateTimeNotBetween(Date value1, Date value2) {
  293. addCriterion("create_time not between", value1, value2, "createTime");
  294. return (Criteria) this;
  295. }
  296. public Criteria andUpdateTimeIsNull() {
  297. addCriterion("update_time is null");
  298. return (Criteria) this;
  299. }
  300. public Criteria andUpdateTimeIsNotNull() {
  301. addCriterion("update_time is not null");
  302. return (Criteria) this;
  303. }
  304. public Criteria andUpdateTimeEqualTo(Date value) {
  305. addCriterion("update_time =", value, "updateTime");
  306. return (Criteria) this;
  307. }
  308. public Criteria andUpdateTimeNotEqualTo(Date value) {
  309. addCriterion("update_time <>", value, "updateTime");
  310. return (Criteria) this;
  311. }
  312. public Criteria andUpdateTimeGreaterThan(Date value) {
  313. addCriterion("update_time >", value, "updateTime");
  314. return (Criteria) this;
  315. }
  316. public Criteria andUpdateTimeGreaterThanOrEqualTo(Date value) {
  317. addCriterion("update_time >=", value, "updateTime");
  318. return (Criteria) this;
  319. }
  320. public Criteria andUpdateTimeLessThan(Date value) {
  321. addCriterion("update_time <", value, "updateTime");
  322. return (Criteria) this;
  323. }
  324. public Criteria andUpdateTimeLessThanOrEqualTo(Date value) {
  325. addCriterion("update_time <=", value, "updateTime");
  326. return (Criteria) this;
  327. }
  328. public Criteria andUpdateTimeIn(List<Date> values) {
  329. addCriterion("update_time in", values, "updateTime");
  330. return (Criteria) this;
  331. }
  332. public Criteria andUpdateTimeNotIn(List<Date> values) {
  333. addCriterion("update_time not in", values, "updateTime");
  334. return (Criteria) this;
  335. }
  336. public Criteria andUpdateTimeBetween(Date value1, Date value2) {
  337. addCriterion("update_time between", value1, value2, "updateTime");
  338. return (Criteria) this;
  339. }
  340. public Criteria andUpdateTimeNotBetween(Date value1, Date value2) {
  341. addCriterion("update_time not between", value1, value2, "updateTime");
  342. return (Criteria) this;
  343. }
  344. public Criteria andCreaterIsNull() {
  345. addCriterion("creater is null");
  346. return (Criteria) this;
  347. }
  348. public Criteria andCreaterIsNotNull() {
  349. addCriterion("creater is not null");
  350. return (Criteria) this;
  351. }
  352. public Criteria andCreaterEqualTo(String value) {
  353. addCriterion("creater =", value, "creater");
  354. return (Criteria) this;
  355. }
  356. public Criteria andCreaterNotEqualTo(String value) {
  357. addCriterion("creater <>", value, "creater");
  358. return (Criteria) this;
  359. }
  360. public Criteria andCreaterGreaterThan(String value) {
  361. addCriterion("creater >", value, "creater");
  362. return (Criteria) this;
  363. }
  364. public Criteria andCreaterGreaterThanOrEqualTo(String value) {
  365. addCriterion("creater >=", value, "creater");
  366. return (Criteria) this;
  367. }
  368. public Criteria andCreaterLessThan(String value) {
  369. addCriterion("creater <", value, "creater");
  370. return (Criteria) this;
  371. }
  372. public Criteria andCreaterLessThanOrEqualTo(String value) {
  373. addCriterion("creater <=", value, "creater");
  374. return (Criteria) this;
  375. }
  376. public Criteria andCreaterLike(String value) {
  377. addCriterion("creater like", value, "creater");
  378. return (Criteria) this;
  379. }
  380. public Criteria andCreaterNotLike(String value) {
  381. addCriterion("creater not like", value, "creater");
  382. return (Criteria) this;
  383. }
  384. public Criteria andCreaterIn(List<String> values) {
  385. addCriterion("creater in", values, "creater");
  386. return (Criteria) this;
  387. }
  388. public Criteria andCreaterNotIn(List<String> values) {
  389. addCriterion("creater not in", values, "creater");
  390. return (Criteria) this;
  391. }
  392. public Criteria andCreaterBetween(String value1, String value2) {
  393. addCriterion("creater between", value1, value2, "creater");
  394. return (Criteria) this;
  395. }
  396. public Criteria andCreaterNotBetween(String value1, String value2) {
  397. addCriterion("creater not between", value1, value2, "creater");
  398. return (Criteria) this;
  399. }
  400. public Criteria andNameIsNull() {
  401. addCriterion("name is null");
  402. return (Criteria) this;
  403. }
  404. public Criteria andNameIsNotNull() {
  405. addCriterion("name is not null");
  406. return (Criteria) this;
  407. }
  408. public Criteria andNameEqualTo(String value) {
  409. addCriterion("name =", value, "name");
  410. return (Criteria) this;
  411. }
  412. public Criteria andNameNotEqualTo(String value) {
  413. addCriterion("name <>", value, "name");
  414. return (Criteria) this;
  415. }
  416. public Criteria andNameGreaterThan(String value) {
  417. addCriterion("name >", value, "name");
  418. return (Criteria) this;
  419. }
  420. public Criteria andNameGreaterThanOrEqualTo(String value) {
  421. addCriterion("name >=", value, "name");
  422. return (Criteria) this;
  423. }
  424. public Criteria andNameLessThan(String value) {
  425. addCriterion("name <", value, "name");
  426. return (Criteria) this;
  427. }
  428. public Criteria andNameLessThanOrEqualTo(String value) {
  429. addCriterion("name <=", value, "name");
  430. return (Criteria) this;
  431. }
  432. public Criteria andNameLike(String value) {
  433. addCriterion("name like", value, "name");
  434. return (Criteria) this;
  435. }
  436. public Criteria andNameNotLike(String value) {
  437. addCriterion("name not like", value, "name");
  438. return (Criteria) this;
  439. }
  440. public Criteria andNameIn(List<String> values) {
  441. addCriterion("name in", values, "name");
  442. return (Criteria) this;
  443. }
  444. public Criteria andNameNotIn(List<String> values) {
  445. addCriterion("name not in", values, "name");
  446. return (Criteria) this;
  447. }
  448. public Criteria andNameBetween(String value1, String value2) {
  449. addCriterion("name between", value1, value2, "name");
  450. return (Criteria) this;
  451. }
  452. public Criteria andNameNotBetween(String value1, String value2) {
  453. addCriterion("name not between", value1, value2, "name");
  454. return (Criteria) this;
  455. }
  456. public Criteria andTypeIsNull() {
  457. addCriterion("type is null");
  458. return (Criteria) this;
  459. }
  460. public Criteria andTypeIsNotNull() {
  461. addCriterion("type is not null");
  462. return (Criteria) this;
  463. }
  464. public Criteria andTypeEqualTo(String value) {
  465. addCriterion("type =", value, "type");
  466. return (Criteria) this;
  467. }
  468. public Criteria andTypeNotEqualTo(String value) {
  469. addCriterion("type <>", value, "type");
  470. return (Criteria) this;
  471. }
  472. public Criteria andTypeGreaterThan(String value) {
  473. addCriterion("type >", value, "type");
  474. return (Criteria) this;
  475. }
  476. public Criteria andTypeGreaterThanOrEqualTo(String value) {
  477. addCriterion("type >=", value, "type");
  478. return (Criteria) this;
  479. }
  480. public Criteria andTypeLessThan(String value) {
  481. addCriterion("type <", value, "type");
  482. return (Criteria) this;
  483. }
  484. public Criteria andTypeLessThanOrEqualTo(String value) {
  485. addCriterion("type <=", value, "type");
  486. return (Criteria) this;
  487. }
  488. public Criteria andTypeLike(String value) {
  489. addCriterion("type like", value, "type");
  490. return (Criteria) this;
  491. }
  492. public Criteria andTypeNotLike(String value) {
  493. addCriterion("type not like", value, "type");
  494. return (Criteria) this;
  495. }
  496. public Criteria andTypeIn(List<String> values) {
  497. addCriterion("type in", values, "type");
  498. return (Criteria) this;
  499. }
  500. public Criteria andTypeNotIn(List<String> values) {
  501. addCriterion("type not in", values, "type");
  502. return (Criteria) this;
  503. }
  504. public Criteria andTypeBetween(String value1, String value2) {
  505. addCriterion("type between", value1, value2, "type");
  506. return (Criteria) this;
  507. }
  508. public Criteria andTypeNotBetween(String value1, String value2) {
  509. addCriterion("type not between", value1, value2, "type");
  510. return (Criteria) this;
  511. }
  512. public Criteria andPrincipalIsNull() {
  513. addCriterion("principal is null");
  514. return (Criteria) this;
  515. }
  516. public Criteria andPrincipalIsNotNull() {
  517. addCriterion("principal is not null");
  518. return (Criteria) this;
  519. }
  520. public Criteria andPrincipalEqualTo(String value) {
  521. addCriterion("principal =", value, "principal");
  522. return (Criteria) this;
  523. }
  524. public Criteria andPrincipalNotEqualTo(String value) {
  525. addCriterion("principal <>", value, "principal");
  526. return (Criteria) this;
  527. }
  528. public Criteria andPrincipalGreaterThan(String value) {
  529. addCriterion("principal >", value, "principal");
  530. return (Criteria) this;
  531. }
  532. public Criteria andPrincipalGreaterThanOrEqualTo(String value) {
  533. addCriterion("principal >=", value, "principal");
  534. return (Criteria) this;
  535. }
  536. public Criteria andPrincipalLessThan(String value) {
  537. addCriterion("principal <", value, "principal");
  538. return (Criteria) this;
  539. }
  540. public Criteria andPrincipalLessThanOrEqualTo(String value) {
  541. addCriterion("principal <=", value, "principal");
  542. return (Criteria) this;
  543. }
  544. public Criteria andPrincipalLike(String value) {
  545. addCriterion("principal like", value, "principal");
  546. return (Criteria) this;
  547. }
  548. public Criteria andPrincipalNotLike(String value) {
  549. addCriterion("principal not like", value, "principal");
  550. return (Criteria) this;
  551. }
  552. public Criteria andPrincipalIn(List<String> values) {
  553. addCriterion("principal in", values, "principal");
  554. return (Criteria) this;
  555. }
  556. public Criteria andPrincipalNotIn(List<String> values) {
  557. addCriterion("principal not in", values, "principal");
  558. return (Criteria) this;
  559. }
  560. public Criteria andPrincipalBetween(String value1, String value2) {
  561. addCriterion("principal between", value1, value2, "principal");
  562. return (Criteria) this;
  563. }
  564. public Criteria andPrincipalNotBetween(String value1, String value2) {
  565. addCriterion("principal not between", value1, value2, "principal");
  566. return (Criteria) this;
  567. }
  568. public Criteria andUidIsNull() {
  569. addCriterion("uid is null");
  570. return (Criteria) this;
  571. }
  572. public Criteria andUidIsNotNull() {
  573. addCriterion("uid is not null");
  574. return (Criteria) this;
  575. }
  576. public Criteria andUidEqualTo(String value) {
  577. addCriterion("uid =", value, "uid");
  578. return (Criteria) this;
  579. }
  580. public Criteria andUidNotEqualTo(String value) {
  581. addCriterion("uid <>", value, "uid");
  582. return (Criteria) this;
  583. }
  584. public Criteria andUidGreaterThan(String value) {
  585. addCriterion("uid >", value, "uid");
  586. return (Criteria) this;
  587. }
  588. public Criteria andUidGreaterThanOrEqualTo(String value) {
  589. addCriterion("uid >=", value, "uid");
  590. return (Criteria) this;
  591. }
  592. public Criteria andUidLessThan(String value) {
  593. addCriterion("uid <", value, "uid");
  594. return (Criteria) this;
  595. }
  596. public Criteria andUidLessThanOrEqualTo(String value) {
  597. addCriterion("uid <=", value, "uid");
  598. return (Criteria) this;
  599. }
  600. public Criteria andUidLike(String value) {
  601. addCriterion("uid like", value, "uid");
  602. return (Criteria) this;
  603. }
  604. public Criteria andUidNotLike(String value) {
  605. addCriterion("uid not like", value, "uid");
  606. return (Criteria) this;
  607. }
  608. public Criteria andUidIn(List<String> values) {
  609. addCriterion("uid in", values, "uid");
  610. return (Criteria) this;
  611. }
  612. public Criteria andUidNotIn(List<String> values) {
  613. addCriterion("uid not in", values, "uid");
  614. return (Criteria) this;
  615. }
  616. public Criteria andUidBetween(String value1, String value2) {
  617. addCriterion("uid between", value1, value2, "uid");
  618. return (Criteria) this;
  619. }
  620. public Criteria andUidNotBetween(String value1, String value2) {
  621. addCriterion("uid not between", value1, value2, "uid");
  622. return (Criteria) this;
  623. }
  624. public Criteria andSignDateIsNull() {
  625. addCriterion("sign_date is null");
  626. return (Criteria) this;
  627. }
  628. public Criteria andSignDateIsNotNull() {
  629. addCriterion("sign_date is not null");
  630. return (Criteria) this;
  631. }
  632. public Criteria andSignDateEqualTo(Date value) {
  633. addCriterion("sign_date =", value, "signDate");
  634. return (Criteria) this;
  635. }
  636. public Criteria andSignDateNotEqualTo(Date value) {
  637. addCriterion("sign_date <>", value, "signDate");
  638. return (Criteria) this;
  639. }
  640. public Criteria andSignDateGreaterThan(Date value) {
  641. addCriterion("sign_date >", value, "signDate");
  642. return (Criteria) this;
  643. }
  644. public Criteria andSignDateGreaterThanOrEqualTo(Date value) {
  645. addCriterion("sign_date >=", value, "signDate");
  646. return (Criteria) this;
  647. }
  648. public Criteria andSignDateLessThan(Date value) {
  649. addCriterion("sign_date <", value, "signDate");
  650. return (Criteria) this;
  651. }
  652. public Criteria andSignDateLessThanOrEqualTo(Date value) {
  653. addCriterion("sign_date <=", value, "signDate");
  654. return (Criteria) this;
  655. }
  656. public Criteria andSignDateIn(List<Date> values) {
  657. addCriterion("sign_date in", values, "signDate");
  658. return (Criteria) this;
  659. }
  660. public Criteria andSignDateNotIn(List<Date> values) {
  661. addCriterion("sign_date not in", values, "signDate");
  662. return (Criteria) this;
  663. }
  664. public Criteria andSignDateBetween(Date value1, Date value2) {
  665. addCriterion("sign_date between", value1, value2, "signDate");
  666. return (Criteria) this;
  667. }
  668. public Criteria andSignDateNotBetween(Date value1, Date value2) {
  669. addCriterion("sign_date not between", value1, value2, "signDate");
  670. return (Criteria) this;
  671. }
  672. public Criteria andSignCommentIsNull() {
  673. addCriterion("sign_comment is null");
  674. return (Criteria) this;
  675. }
  676. public Criteria andSignCommentIsNotNull() {
  677. addCriterion("sign_comment is not null");
  678. return (Criteria) this;
  679. }
  680. public Criteria andSignCommentEqualTo(String value) {
  681. addCriterion("sign_comment =", value, "signComment");
  682. return (Criteria) this;
  683. }
  684. public Criteria andSignCommentNotEqualTo(String value) {
  685. addCriterion("sign_comment <>", value, "signComment");
  686. return (Criteria) this;
  687. }
  688. public Criteria andSignCommentGreaterThan(String value) {
  689. addCriterion("sign_comment >", value, "signComment");
  690. return (Criteria) this;
  691. }
  692. public Criteria andSignCommentGreaterThanOrEqualTo(String value) {
  693. addCriterion("sign_comment >=", value, "signComment");
  694. return (Criteria) this;
  695. }
  696. public Criteria andSignCommentLessThan(String value) {
  697. addCriterion("sign_comment <", value, "signComment");
  698. return (Criteria) this;
  699. }
  700. public Criteria andSignCommentLessThanOrEqualTo(String value) {
  701. addCriterion("sign_comment <=", value, "signComment");
  702. return (Criteria) this;
  703. }
  704. public Criteria andSignCommentLike(String value) {
  705. addCriterion("sign_comment like", value, "signComment");
  706. return (Criteria) this;
  707. }
  708. public Criteria andSignCommentNotLike(String value) {
  709. addCriterion("sign_comment not like", value, "signComment");
  710. return (Criteria) this;
  711. }
  712. public Criteria andSignCommentIn(List<String> values) {
  713. addCriterion("sign_comment in", values, "signComment");
  714. return (Criteria) this;
  715. }
  716. public Criteria andSignCommentNotIn(List<String> values) {
  717. addCriterion("sign_comment not in", values, "signComment");
  718. return (Criteria) this;
  719. }
  720. public Criteria andSignCommentBetween(String value1, String value2) {
  721. addCriterion("sign_comment between", value1, value2, "signComment");
  722. return (Criteria) this;
  723. }
  724. public Criteria andSignCommentNotBetween(String value1, String value2) {
  725. addCriterion("sign_comment not between", value1, value2, "signComment");
  726. return (Criteria) this;
  727. }
  728. public Criteria andCompleteDateIsNull() {
  729. addCriterion("complete_date is null");
  730. return (Criteria) this;
  731. }
  732. public Criteria andCompleteDateIsNotNull() {
  733. addCriterion("complete_date is not null");
  734. return (Criteria) this;
  735. }
  736. public Criteria andCompleteDateEqualTo(Date value) {
  737. addCriterion("complete_date =", value, "completeDate");
  738. return (Criteria) this;
  739. }
  740. public Criteria andCompleteDateNotEqualTo(Date value) {
  741. addCriterion("complete_date <>", value, "completeDate");
  742. return (Criteria) this;
  743. }
  744. public Criteria andCompleteDateGreaterThan(Date value) {
  745. addCriterion("complete_date >", value, "completeDate");
  746. return (Criteria) this;
  747. }
  748. public Criteria andCompleteDateGreaterThanOrEqualTo(Date value) {
  749. addCriterion("complete_date >=", value, "completeDate");
  750. return (Criteria) this;
  751. }
  752. public Criteria andCompleteDateLessThan(Date value) {
  753. addCriterion("complete_date <", value, "completeDate");
  754. return (Criteria) this;
  755. }
  756. public Criteria andCompleteDateLessThanOrEqualTo(Date value) {
  757. addCriterion("complete_date <=", value, "completeDate");
  758. return (Criteria) this;
  759. }
  760. public Criteria andCompleteDateIn(List<Date> values) {
  761. addCriterion("complete_date in", values, "completeDate");
  762. return (Criteria) this;
  763. }
  764. public Criteria andCompleteDateNotIn(List<Date> values) {
  765. addCriterion("complete_date not in", values, "completeDate");
  766. return (Criteria) this;
  767. }
  768. public Criteria andCompleteDateBetween(Date value1, Date value2) {
  769. addCriterion("complete_date between", value1, value2, "completeDate");
  770. return (Criteria) this;
  771. }
  772. public Criteria andCompleteDateNotBetween(Date value1, Date value2) {
  773. addCriterion("complete_date not between", value1, value2, "completeDate");
  774. return (Criteria) this;
  775. }
  776. public Criteria andCompleteCommentIsNull() {
  777. addCriterion("complete_comment is null");
  778. return (Criteria) this;
  779. }
  780. public Criteria andCompleteCommentIsNotNull() {
  781. addCriterion("complete_comment is not null");
  782. return (Criteria) this;
  783. }
  784. public Criteria andCompleteCommentEqualTo(String value) {
  785. addCriterion("complete_comment =", value, "completeComment");
  786. return (Criteria) this;
  787. }
  788. public Criteria andCompleteCommentNotEqualTo(String value) {
  789. addCriterion("complete_comment <>", value, "completeComment");
  790. return (Criteria) this;
  791. }
  792. public Criteria andCompleteCommentGreaterThan(String value) {
  793. addCriterion("complete_comment >", value, "completeComment");
  794. return (Criteria) this;
  795. }
  796. public Criteria andCompleteCommentGreaterThanOrEqualTo(String value) {
  797. addCriterion("complete_comment >=", value, "completeComment");
  798. return (Criteria) this;
  799. }
  800. public Criteria andCompleteCommentLessThan(String value) {
  801. addCriterion("complete_comment <", value, "completeComment");
  802. return (Criteria) this;
  803. }
  804. public Criteria andCompleteCommentLessThanOrEqualTo(String value) {
  805. addCriterion("complete_comment <=", value, "completeComment");
  806. return (Criteria) this;
  807. }
  808. public Criteria andCompleteCommentLike(String value) {
  809. addCriterion("complete_comment like", value, "completeComment");
  810. return (Criteria) this;
  811. }
  812. public Criteria andCompleteCommentNotLike(String value) {
  813. addCriterion("complete_comment not like", value, "completeComment");
  814. return (Criteria) this;
  815. }
  816. public Criteria andCompleteCommentIn(List<String> values) {
  817. addCriterion("complete_comment in", values, "completeComment");
  818. return (Criteria) this;
  819. }
  820. public Criteria andCompleteCommentNotIn(List<String> values) {
  821. addCriterion("complete_comment not in", values, "completeComment");
  822. return (Criteria) this;
  823. }
  824. public Criteria andCompleteCommentBetween(String value1, String value2) {
  825. addCriterion("complete_comment between", value1, value2, "completeComment");
  826. return (Criteria) this;
  827. }
  828. public Criteria andCompleteCommentNotBetween(String value1, String value2) {
  829. addCriterion("complete_comment not between", value1, value2, "completeComment");
  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 andOrderNoIsNull() {
  881. addCriterion("order_no is null");
  882. return (Criteria) this;
  883. }
  884. public Criteria andOrderNoIsNotNull() {
  885. addCriterion("order_no is not null");
  886. return (Criteria) this;
  887. }
  888. public Criteria andOrderNoEqualTo(String value) {
  889. addCriterion("order_no =", value, "orderNo");
  890. return (Criteria) this;
  891. }
  892. public Criteria andOrderNoNotEqualTo(String value) {
  893. addCriterion("order_no <>", value, "orderNo");
  894. return (Criteria) this;
  895. }
  896. public Criteria andOrderNoGreaterThan(String value) {
  897. addCriterion("order_no >", value, "orderNo");
  898. return (Criteria) this;
  899. }
  900. public Criteria andOrderNoGreaterThanOrEqualTo(String value) {
  901. addCriterion("order_no >=", value, "orderNo");
  902. return (Criteria) this;
  903. }
  904. public Criteria andOrderNoLessThan(String value) {
  905. addCriterion("order_no <", value, "orderNo");
  906. return (Criteria) this;
  907. }
  908. public Criteria andOrderNoLessThanOrEqualTo(String value) {
  909. addCriterion("order_no <=", value, "orderNo");
  910. return (Criteria) this;
  911. }
  912. public Criteria andOrderNoLike(String value) {
  913. addCriterion("order_no like", value, "orderNo");
  914. return (Criteria) this;
  915. }
  916. public Criteria andOrderNoNotLike(String value) {
  917. addCriterion("order_no not like", value, "orderNo");
  918. return (Criteria) this;
  919. }
  920. public Criteria andOrderNoIn(List<String> values) {
  921. addCriterion("order_no in", values, "orderNo");
  922. return (Criteria) this;
  923. }
  924. public Criteria andOrderNoNotIn(List<String> values) {
  925. addCriterion("order_no not in", values, "orderNo");
  926. return (Criteria) this;
  927. }
  928. public Criteria andOrderNoBetween(String value1, String value2) {
  929. addCriterion("order_no between", value1, value2, "orderNo");
  930. return (Criteria) this;
  931. }
  932. public Criteria andOrderNoNotBetween(String value1, String value2) {
  933. addCriterion("order_no not between", value1, value2, "orderNo");
  934. return (Criteria) this;
  935. }
  936. public Criteria andStatusIsNull() {
  937. addCriterion("status is null");
  938. return (Criteria) this;
  939. }
  940. public Criteria andStatusIsNotNull() {
  941. addCriterion("status is not null");
  942. return (Criteria) this;
  943. }
  944. public Criteria andStatusEqualTo(Integer value) {
  945. addCriterion("status =", value, "status");
  946. return (Criteria) this;
  947. }
  948. public Criteria andStatusNotEqualTo(Integer value) {
  949. addCriterion("status <>", value, "status");
  950. return (Criteria) this;
  951. }
  952. public Criteria andStatusGreaterThan(Integer value) {
  953. addCriterion("status >", value, "status");
  954. return (Criteria) this;
  955. }
  956. public Criteria andStatusGreaterThanOrEqualTo(Integer value) {
  957. addCriterion("status >=", value, "status");
  958. return (Criteria) this;
  959. }
  960. public Criteria andStatusLessThan(Integer value) {
  961. addCriterion("status <", value, "status");
  962. return (Criteria) this;
  963. }
  964. public Criteria andStatusLessThanOrEqualTo(Integer value) {
  965. addCriterion("status <=", value, "status");
  966. return (Criteria) this;
  967. }
  968. public Criteria andStatusIn(List<Integer> values) {
  969. addCriterion("status in", values, "status");
  970. return (Criteria) this;
  971. }
  972. public Criteria andStatusNotIn(List<Integer> values) {
  973. addCriterion("status not in", values, "status");
  974. return (Criteria) this;
  975. }
  976. public Criteria andStatusBetween(Integer value1, Integer value2) {
  977. addCriterion("status between", value1, value2, "status");
  978. return (Criteria) this;
  979. }
  980. public Criteria andStatusNotBetween(Integer value1, Integer value2) {
  981. addCriterion("status not between", value1, value2, "status");
  982. return (Criteria) this;
  983. }
  984. public Criteria andContactsIsNull() {
  985. addCriterion("contacts is null");
  986. return (Criteria) this;
  987. }
  988. public Criteria andContactsIsNotNull() {
  989. addCriterion("contacts is not null");
  990. return (Criteria) this;
  991. }
  992. public Criteria andContactsEqualTo(String value) {
  993. addCriterion("contacts =", value, "contacts");
  994. return (Criteria) this;
  995. }
  996. public Criteria andContactsNotEqualTo(String value) {
  997. addCriterion("contacts <>", value, "contacts");
  998. return (Criteria) this;
  999. }
  1000. public Criteria andContactsGreaterThan(String value) {
  1001. addCriterion("contacts >", value, "contacts");
  1002. return (Criteria) this;
  1003. }
  1004. public Criteria andContactsGreaterThanOrEqualTo(String value) {
  1005. addCriterion("contacts >=", value, "contacts");
  1006. return (Criteria) this;
  1007. }
  1008. public Criteria andContactsLessThan(String value) {
  1009. addCriterion("contacts <", value, "contacts");
  1010. return (Criteria) this;
  1011. }
  1012. public Criteria andContactsLessThanOrEqualTo(String value) {
  1013. addCriterion("contacts <=", value, "contacts");
  1014. return (Criteria) this;
  1015. }
  1016. public Criteria andContactsLike(String value) {
  1017. addCriterion("contacts like", value, "contacts");
  1018. return (Criteria) this;
  1019. }
  1020. public Criteria andContactsNotLike(String value) {
  1021. addCriterion("contacts not like", value, "contacts");
  1022. return (Criteria) this;
  1023. }
  1024. public Criteria andContactsIn(List<String> values) {
  1025. addCriterion("contacts in", values, "contacts");
  1026. return (Criteria) this;
  1027. }
  1028. public Criteria andContactsNotIn(List<String> values) {
  1029. addCriterion("contacts not in", values, "contacts");
  1030. return (Criteria) this;
  1031. }
  1032. public Criteria andContactsBetween(String value1, String value2) {
  1033. addCriterion("contacts between", value1, value2, "contacts");
  1034. return (Criteria) this;
  1035. }
  1036. public Criteria andContactsNotBetween(String value1, String value2) {
  1037. addCriterion("contacts not between", value1, value2, "contacts");
  1038. return (Criteria) this;
  1039. }
  1040. public Criteria andContactMobileIsNull() {
  1041. addCriterion("contact_mobile is null");
  1042. return (Criteria) this;
  1043. }
  1044. public Criteria andContactMobileIsNotNull() {
  1045. addCriterion("contact_mobile is not null");
  1046. return (Criteria) this;
  1047. }
  1048. public Criteria andContactMobileEqualTo(String value) {
  1049. addCriterion("contact_mobile =", value, "contactMobile");
  1050. return (Criteria) this;
  1051. }
  1052. public Criteria andContactMobileNotEqualTo(String value) {
  1053. addCriterion("contact_mobile <>", value, "contactMobile");
  1054. return (Criteria) this;
  1055. }
  1056. public Criteria andContactMobileGreaterThan(String value) {
  1057. addCriterion("contact_mobile >", value, "contactMobile");
  1058. return (Criteria) this;
  1059. }
  1060. public Criteria andContactMobileGreaterThanOrEqualTo(String value) {
  1061. addCriterion("contact_mobile >=", value, "contactMobile");
  1062. return (Criteria) this;
  1063. }
  1064. public Criteria andContactMobileLessThan(String value) {
  1065. addCriterion("contact_mobile <", value, "contactMobile");
  1066. return (Criteria) this;
  1067. }
  1068. public Criteria andContactMobileLessThanOrEqualTo(String value) {
  1069. addCriterion("contact_mobile <=", value, "contactMobile");
  1070. return (Criteria) this;
  1071. }
  1072. public Criteria andContactMobileLike(String value) {
  1073. addCriterion("contact_mobile like", value, "contactMobile");
  1074. return (Criteria) this;
  1075. }
  1076. public Criteria andContactMobileNotLike(String value) {
  1077. addCriterion("contact_mobile not like", value, "contactMobile");
  1078. return (Criteria) this;
  1079. }
  1080. public Criteria andContactMobileIn(List<String> values) {
  1081. addCriterion("contact_mobile in", values, "contactMobile");
  1082. return (Criteria) this;
  1083. }
  1084. public Criteria andContactMobileNotIn(List<String> values) {
  1085. addCriterion("contact_mobile not in", values, "contactMobile");
  1086. return (Criteria) this;
  1087. }
  1088. public Criteria andContactMobileBetween(String value1, String value2) {
  1089. addCriterion("contact_mobile between", value1, value2, "contactMobile");
  1090. return (Criteria) this;
  1091. }
  1092. public Criteria andContactMobileNotBetween(String value1, String value2) {
  1093. addCriterion("contact_mobile not between", value1, value2, "contactMobile");
  1094. return (Criteria) this;
  1095. }
  1096. public Criteria andTaskDistributionIsNull() {
  1097. addCriterion("task_distribution is null");
  1098. return (Criteria) this;
  1099. }
  1100. public Criteria andTaskDistributionIsNotNull() {
  1101. addCriterion("task_distribution is not null");
  1102. return (Criteria) this;
  1103. }
  1104. public Criteria andTaskDistributionEqualTo(Integer value) {
  1105. addCriterion("task_distribution =", value, "taskDistribution");
  1106. return (Criteria) this;
  1107. }
  1108. public Criteria andTaskDistributionNotEqualTo(Integer value) {
  1109. addCriterion("task_distribution <>", value, "taskDistribution");
  1110. return (Criteria) this;
  1111. }
  1112. public Criteria andTaskDistributionGreaterThan(Integer value) {
  1113. addCriterion("task_distribution >", value, "taskDistribution");
  1114. return (Criteria) this;
  1115. }
  1116. public Criteria andTaskDistributionGreaterThanOrEqualTo(Integer value) {
  1117. addCriterion("task_distribution >=", value, "taskDistribution");
  1118. return (Criteria) this;
  1119. }
  1120. public Criteria andTaskDistributionLessThan(Integer value) {
  1121. addCriterion("task_distribution <", value, "taskDistribution");
  1122. return (Criteria) this;
  1123. }
  1124. public Criteria andTaskDistributionLessThanOrEqualTo(Integer value) {
  1125. addCriterion("task_distribution <=", value, "taskDistribution");
  1126. return (Criteria) this;
  1127. }
  1128. public Criteria andTaskDistributionIn(List<Integer> values) {
  1129. addCriterion("task_distribution in", values, "taskDistribution");
  1130. return (Criteria) this;
  1131. }
  1132. public Criteria andTaskDistributionNotIn(List<Integer> values) {
  1133. addCriterion("task_distribution not in", values, "taskDistribution");
  1134. return (Criteria) this;
  1135. }
  1136. public Criteria andTaskDistributionBetween(Integer value1, Integer value2) {
  1137. addCriterion("task_distribution between", value1, value2, "taskDistribution");
  1138. return (Criteria) this;
  1139. }
  1140. public Criteria andTaskDistributionNotBetween(Integer value1, Integer value2) {
  1141. addCriterion("task_distribution not between", value1, value2, "taskDistribution");
  1142. return (Criteria) this;
  1143. }
  1144. }
  1145. /**
  1146. * This class was generated by MyBatis Generator. This class corresponds to the database table contract
  1147. * @mbg.generated Wed May 02 19:56:05 CST 2018
  1148. */
  1149. public static class Criterion {
  1150. private String condition;
  1151. private Object value;
  1152. private Object secondValue;
  1153. private boolean noValue;
  1154. private boolean singleValue;
  1155. private boolean betweenValue;
  1156. private boolean listValue;
  1157. private String typeHandler;
  1158. public String getCondition() {
  1159. return condition;
  1160. }
  1161. public Object getValue() {
  1162. return value;
  1163. }
  1164. public Object getSecondValue() {
  1165. return secondValue;
  1166. }
  1167. public boolean isNoValue() {
  1168. return noValue;
  1169. }
  1170. public boolean isSingleValue() {
  1171. return singleValue;
  1172. }
  1173. public boolean isBetweenValue() {
  1174. return betweenValue;
  1175. }
  1176. public boolean isListValue() {
  1177. return listValue;
  1178. }
  1179. public String getTypeHandler() {
  1180. return typeHandler;
  1181. }
  1182. protected Criterion(String condition) {
  1183. super();
  1184. this.condition = condition;
  1185. this.typeHandler = null;
  1186. this.noValue = true;
  1187. }
  1188. protected Criterion(String condition, Object value, String typeHandler) {
  1189. super();
  1190. this.condition = condition;
  1191. this.value = value;
  1192. this.typeHandler = typeHandler;
  1193. if (value instanceof List<?>) {
  1194. this.listValue = true;
  1195. } else {
  1196. this.singleValue = true;
  1197. }
  1198. }
  1199. protected Criterion(String condition, Object value) {
  1200. this(condition, value, null);
  1201. }
  1202. protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
  1203. super();
  1204. this.condition = condition;
  1205. this.value = value;
  1206. this.secondValue = secondValue;
  1207. this.typeHandler = typeHandler;
  1208. this.betweenValue = true;
  1209. }
  1210. protected Criterion(String condition, Object value, Object secondValue) {
  1211. this(condition, value, secondValue, null);
  1212. }
  1213. }
  1214. /**
  1215. * This class was generated by MyBatis Generator.
  1216. * This class corresponds to the database table contract
  1217. *
  1218. * @mbg.generated do_not_delete_during_merge Tue Jan 16 20:45:36 CST 2018
  1219. */
  1220. public static class Criteria extends GeneratedCriteria {
  1221. protected Criteria() {
  1222. super();
  1223. }
  1224. }
  1225. }