BannersExample.java 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851
  1. package com.goafanti.common.model;
  2. import java.util.ArrayList;
  3. import java.util.List;
  4. public class BannersExample {
  5. /**
  6. * This field was generated by MyBatis Generator. This field corresponds to the database table banners
  7. * @mbg.generated Thu Aug 30 08:27:53 CST 2018
  8. */
  9. protected String orderByClause;
  10. /**
  11. * This field was generated by MyBatis Generator. This field corresponds to the database table banners
  12. * @mbg.generated Thu Aug 30 08:27:53 CST 2018
  13. */
  14. protected boolean distinct;
  15. /**
  16. * This field was generated by MyBatis Generator. This field corresponds to the database table banners
  17. * @mbg.generated Thu Aug 30 08:27:53 CST 2018
  18. */
  19. protected List<Criteria> oredCriteria;
  20. /**
  21. * This method was generated by MyBatis Generator. This method corresponds to the database table banners
  22. * @mbg.generated Thu Aug 30 08:27:53 CST 2018
  23. */
  24. public BannersExample() {
  25. oredCriteria = new ArrayList<Criteria>();
  26. }
  27. /**
  28. * This method was generated by MyBatis Generator. This method corresponds to the database table banners
  29. * @mbg.generated Thu Aug 30 08:27:53 CST 2018
  30. */
  31. public void setOrderByClause(String orderByClause) {
  32. this.orderByClause = orderByClause;
  33. }
  34. /**
  35. * This method was generated by MyBatis Generator. This method corresponds to the database table banners
  36. * @mbg.generated Thu Aug 30 08:27:53 CST 2018
  37. */
  38. public String getOrderByClause() {
  39. return orderByClause;
  40. }
  41. /**
  42. * This method was generated by MyBatis Generator. This method corresponds to the database table banners
  43. * @mbg.generated Thu Aug 30 08:27:53 CST 2018
  44. */
  45. public void setDistinct(boolean distinct) {
  46. this.distinct = distinct;
  47. }
  48. /**
  49. * This method was generated by MyBatis Generator. This method corresponds to the database table banners
  50. * @mbg.generated Thu Aug 30 08:27:53 CST 2018
  51. */
  52. public boolean isDistinct() {
  53. return distinct;
  54. }
  55. /**
  56. * This method was generated by MyBatis Generator. This method corresponds to the database table banners
  57. * @mbg.generated Thu Aug 30 08:27:53 CST 2018
  58. */
  59. public List<Criteria> getOredCriteria() {
  60. return oredCriteria;
  61. }
  62. /**
  63. * This method was generated by MyBatis Generator. This method corresponds to the database table banners
  64. * @mbg.generated Thu Aug 30 08:27:53 CST 2018
  65. */
  66. public void or(Criteria criteria) {
  67. oredCriteria.add(criteria);
  68. }
  69. /**
  70. * This method was generated by MyBatis Generator. This method corresponds to the database table banners
  71. * @mbg.generated Thu Aug 30 08:27:53 CST 2018
  72. */
  73. public Criteria or() {
  74. Criteria criteria = createCriteriaInternal();
  75. oredCriteria.add(criteria);
  76. return criteria;
  77. }
  78. /**
  79. * This method was generated by MyBatis Generator. This method corresponds to the database table banners
  80. * @mbg.generated Thu Aug 30 08:27:53 CST 2018
  81. */
  82. public Criteria createCriteria() {
  83. Criteria criteria = createCriteriaInternal();
  84. if (oredCriteria.size() == 0) {
  85. oredCriteria.add(criteria);
  86. }
  87. return criteria;
  88. }
  89. /**
  90. * This method was generated by MyBatis Generator. This method corresponds to the database table banners
  91. * @mbg.generated Thu Aug 30 08:27:53 CST 2018
  92. */
  93. protected Criteria createCriteriaInternal() {
  94. Criteria criteria = new Criteria();
  95. return criteria;
  96. }
  97. /**
  98. * This method was generated by MyBatis Generator. This method corresponds to the database table banners
  99. * @mbg.generated Thu Aug 30 08:27:53 CST 2018
  100. */
  101. public void clear() {
  102. oredCriteria.clear();
  103. orderByClause = null;
  104. distinct = false;
  105. }
  106. /**
  107. * This class was generated by MyBatis Generator. This class corresponds to the database table banners
  108. * @mbg.generated Thu Aug 30 08:27:53 CST 2018
  109. */
  110. protected abstract static class GeneratedCriteria {
  111. protected List<Criterion> criteria;
  112. protected GeneratedCriteria() {
  113. super();
  114. criteria = new ArrayList<Criterion>();
  115. }
  116. public boolean isValid() {
  117. return criteria.size() > 0;
  118. }
  119. public List<Criterion> getAllCriteria() {
  120. return criteria;
  121. }
  122. public List<Criterion> getCriteria() {
  123. return criteria;
  124. }
  125. protected void addCriterion(String condition) {
  126. if (condition == null) {
  127. throw new RuntimeException("Value for condition cannot be null");
  128. }
  129. criteria.add(new Criterion(condition));
  130. }
  131. protected void addCriterion(String condition, Object value, String property) {
  132. if (value == null) {
  133. throw new RuntimeException("Value for " + property + " cannot be null");
  134. }
  135. criteria.add(new Criterion(condition, value));
  136. }
  137. protected void addCriterion(String condition, Object value1, Object value2, String property) {
  138. if (value1 == null || value2 == null) {
  139. throw new RuntimeException("Between values for " + property + " cannot be null");
  140. }
  141. criteria.add(new Criterion(condition, value1, value2));
  142. }
  143. public Criteria andIdIsNull() {
  144. addCriterion("id is null");
  145. return (Criteria) this;
  146. }
  147. public Criteria andIdIsNotNull() {
  148. addCriterion("id is not null");
  149. return (Criteria) this;
  150. }
  151. public Criteria andIdEqualTo(String value) {
  152. addCriterion("id =", value, "id");
  153. return (Criteria) this;
  154. }
  155. public Criteria andIdNotEqualTo(String value) {
  156. addCriterion("id <>", value, "id");
  157. return (Criteria) this;
  158. }
  159. public Criteria andIdGreaterThan(String value) {
  160. addCriterion("id >", value, "id");
  161. return (Criteria) this;
  162. }
  163. public Criteria andIdGreaterThanOrEqualTo(String value) {
  164. addCriterion("id >=", value, "id");
  165. return (Criteria) this;
  166. }
  167. public Criteria andIdLessThan(String value) {
  168. addCriterion("id <", value, "id");
  169. return (Criteria) this;
  170. }
  171. public Criteria andIdLessThanOrEqualTo(String value) {
  172. addCriterion("id <=", value, "id");
  173. return (Criteria) this;
  174. }
  175. public Criteria andIdLike(String value) {
  176. addCriterion("id like", value, "id");
  177. return (Criteria) this;
  178. }
  179. public Criteria andIdNotLike(String value) {
  180. addCriterion("id not like", value, "id");
  181. return (Criteria) this;
  182. }
  183. public Criteria andIdIn(List<String> values) {
  184. addCriterion("id in", values, "id");
  185. return (Criteria) this;
  186. }
  187. public Criteria andIdNotIn(List<String> values) {
  188. addCriterion("id not in", values, "id");
  189. return (Criteria) this;
  190. }
  191. public Criteria andIdBetween(String value1, String value2) {
  192. addCriterion("id between", value1, value2, "id");
  193. return (Criteria) this;
  194. }
  195. public Criteria andIdNotBetween(String value1, String value2) {
  196. addCriterion("id not between", value1, value2, "id");
  197. return (Criteria) this;
  198. }
  199. public Criteria andTextIsNull() {
  200. addCriterion("text is null");
  201. return (Criteria) this;
  202. }
  203. public Criteria andTextIsNotNull() {
  204. addCriterion("text is not null");
  205. return (Criteria) this;
  206. }
  207. public Criteria andTextEqualTo(String value) {
  208. addCriterion("text =", value, "text");
  209. return (Criteria) this;
  210. }
  211. public Criteria andTextNotEqualTo(String value) {
  212. addCriterion("text <>", value, "text");
  213. return (Criteria) this;
  214. }
  215. public Criteria andTextGreaterThan(String value) {
  216. addCriterion("text >", value, "text");
  217. return (Criteria) this;
  218. }
  219. public Criteria andTextGreaterThanOrEqualTo(String value) {
  220. addCriterion("text >=", value, "text");
  221. return (Criteria) this;
  222. }
  223. public Criteria andTextLessThan(String value) {
  224. addCriterion("text <", value, "text");
  225. return (Criteria) this;
  226. }
  227. public Criteria andTextLessThanOrEqualTo(String value) {
  228. addCriterion("text <=", value, "text");
  229. return (Criteria) this;
  230. }
  231. public Criteria andTextLike(String value) {
  232. addCriterion("text like", value, "text");
  233. return (Criteria) this;
  234. }
  235. public Criteria andTextNotLike(String value) {
  236. addCriterion("text not like", value, "text");
  237. return (Criteria) this;
  238. }
  239. public Criteria andTextIn(List<String> values) {
  240. addCriterion("text in", values, "text");
  241. return (Criteria) this;
  242. }
  243. public Criteria andTextNotIn(List<String> values) {
  244. addCriterion("text not in", values, "text");
  245. return (Criteria) this;
  246. }
  247. public Criteria andTextBetween(String value1, String value2) {
  248. addCriterion("text between", value1, value2, "text");
  249. return (Criteria) this;
  250. }
  251. public Criteria andTextNotBetween(String value1, String value2) {
  252. addCriterion("text not between", value1, value2, "text");
  253. return (Criteria) this;
  254. }
  255. public Criteria andImgUrlIsNull() {
  256. addCriterion("img_url is null");
  257. return (Criteria) this;
  258. }
  259. public Criteria andImgUrlIsNotNull() {
  260. addCriterion("img_url is not null");
  261. return (Criteria) this;
  262. }
  263. public Criteria andImgUrlEqualTo(String value) {
  264. addCriterion("img_url =", value, "imgUrl");
  265. return (Criteria) this;
  266. }
  267. public Criteria andImgUrlNotEqualTo(String value) {
  268. addCriterion("img_url <>", value, "imgUrl");
  269. return (Criteria) this;
  270. }
  271. public Criteria andImgUrlGreaterThan(String value) {
  272. addCriterion("img_url >", value, "imgUrl");
  273. return (Criteria) this;
  274. }
  275. public Criteria andImgUrlGreaterThanOrEqualTo(String value) {
  276. addCriterion("img_url >=", value, "imgUrl");
  277. return (Criteria) this;
  278. }
  279. public Criteria andImgUrlLessThan(String value) {
  280. addCriterion("img_url <", value, "imgUrl");
  281. return (Criteria) this;
  282. }
  283. public Criteria andImgUrlLessThanOrEqualTo(String value) {
  284. addCriterion("img_url <=", value, "imgUrl");
  285. return (Criteria) this;
  286. }
  287. public Criteria andImgUrlLike(String value) {
  288. addCriterion("img_url like", value, "imgUrl");
  289. return (Criteria) this;
  290. }
  291. public Criteria andImgUrlNotLike(String value) {
  292. addCriterion("img_url not like", value, "imgUrl");
  293. return (Criteria) this;
  294. }
  295. public Criteria andImgUrlIn(List<String> values) {
  296. addCriterion("img_url in", values, "imgUrl");
  297. return (Criteria) this;
  298. }
  299. public Criteria andImgUrlNotIn(List<String> values) {
  300. addCriterion("img_url not in", values, "imgUrl");
  301. return (Criteria) this;
  302. }
  303. public Criteria andImgUrlBetween(String value1, String value2) {
  304. addCriterion("img_url between", value1, value2, "imgUrl");
  305. return (Criteria) this;
  306. }
  307. public Criteria andImgUrlNotBetween(String value1, String value2) {
  308. addCriterion("img_url not between", value1, value2, "imgUrl");
  309. return (Criteria) this;
  310. }
  311. public Criteria andApiUrlIsNull() {
  312. addCriterion("api_url is null");
  313. return (Criteria) this;
  314. }
  315. public Criteria andApiUrlIsNotNull() {
  316. addCriterion("api_url is not null");
  317. return (Criteria) this;
  318. }
  319. public Criteria andApiUrlEqualTo(String value) {
  320. addCriterion("api_url =", value, "apiUrl");
  321. return (Criteria) this;
  322. }
  323. public Criteria andApiUrlNotEqualTo(String value) {
  324. addCriterion("api_url <>", value, "apiUrl");
  325. return (Criteria) this;
  326. }
  327. public Criteria andApiUrlGreaterThan(String value) {
  328. addCriterion("api_url >", value, "apiUrl");
  329. return (Criteria) this;
  330. }
  331. public Criteria andApiUrlGreaterThanOrEqualTo(String value) {
  332. addCriterion("api_url >=", value, "apiUrl");
  333. return (Criteria) this;
  334. }
  335. public Criteria andApiUrlLessThan(String value) {
  336. addCriterion("api_url <", value, "apiUrl");
  337. return (Criteria) this;
  338. }
  339. public Criteria andApiUrlLessThanOrEqualTo(String value) {
  340. addCriterion("api_url <=", value, "apiUrl");
  341. return (Criteria) this;
  342. }
  343. public Criteria andApiUrlLike(String value) {
  344. addCriterion("api_url like", value, "apiUrl");
  345. return (Criteria) this;
  346. }
  347. public Criteria andApiUrlNotLike(String value) {
  348. addCriterion("api_url not like", value, "apiUrl");
  349. return (Criteria) this;
  350. }
  351. public Criteria andApiUrlIn(List<String> values) {
  352. addCriterion("api_url in", values, "apiUrl");
  353. return (Criteria) this;
  354. }
  355. public Criteria andApiUrlNotIn(List<String> values) {
  356. addCriterion("api_url not in", values, "apiUrl");
  357. return (Criteria) this;
  358. }
  359. public Criteria andApiUrlBetween(String value1, String value2) {
  360. addCriterion("api_url between", value1, value2, "apiUrl");
  361. return (Criteria) this;
  362. }
  363. public Criteria andApiUrlNotBetween(String value1, String value2) {
  364. addCriterion("api_url not between", value1, value2, "apiUrl");
  365. return (Criteria) this;
  366. }
  367. public Criteria andForwardUrlIsNull() {
  368. addCriterion("forward_url is null");
  369. return (Criteria) this;
  370. }
  371. public Criteria andForwardUrlIsNotNull() {
  372. addCriterion("forward_url is not null");
  373. return (Criteria) this;
  374. }
  375. public Criteria andForwardUrlEqualTo(String value) {
  376. addCriterion("forward_url =", value, "forwardUrl");
  377. return (Criteria) this;
  378. }
  379. public Criteria andForwardUrlNotEqualTo(String value) {
  380. addCriterion("forward_url <>", value, "forwardUrl");
  381. return (Criteria) this;
  382. }
  383. public Criteria andForwardUrlGreaterThan(String value) {
  384. addCriterion("forward_url >", value, "forwardUrl");
  385. return (Criteria) this;
  386. }
  387. public Criteria andForwardUrlGreaterThanOrEqualTo(String value) {
  388. addCriterion("forward_url >=", value, "forwardUrl");
  389. return (Criteria) this;
  390. }
  391. public Criteria andForwardUrlLessThan(String value) {
  392. addCriterion("forward_url <", value, "forwardUrl");
  393. return (Criteria) this;
  394. }
  395. public Criteria andForwardUrlLessThanOrEqualTo(String value) {
  396. addCriterion("forward_url <=", value, "forwardUrl");
  397. return (Criteria) this;
  398. }
  399. public Criteria andForwardUrlLike(String value) {
  400. addCriterion("forward_url like", value, "forwardUrl");
  401. return (Criteria) this;
  402. }
  403. public Criteria andForwardUrlNotLike(String value) {
  404. addCriterion("forward_url not like", value, "forwardUrl");
  405. return (Criteria) this;
  406. }
  407. public Criteria andForwardUrlIn(List<String> values) {
  408. addCriterion("forward_url in", values, "forwardUrl");
  409. return (Criteria) this;
  410. }
  411. public Criteria andForwardUrlNotIn(List<String> values) {
  412. addCriterion("forward_url not in", values, "forwardUrl");
  413. return (Criteria) this;
  414. }
  415. public Criteria andForwardUrlBetween(String value1, String value2) {
  416. addCriterion("forward_url between", value1, value2, "forwardUrl");
  417. return (Criteria) this;
  418. }
  419. public Criteria andForwardUrlNotBetween(String value1, String value2) {
  420. addCriterion("forward_url not between", value1, value2, "forwardUrl");
  421. return (Criteria) this;
  422. }
  423. public Criteria andWidthIsNull() {
  424. addCriterion("width is null");
  425. return (Criteria) this;
  426. }
  427. public Criteria andWidthIsNotNull() {
  428. addCriterion("width is not null");
  429. return (Criteria) this;
  430. }
  431. public Criteria andWidthEqualTo(Integer value) {
  432. addCriterion("width =", value, "width");
  433. return (Criteria) this;
  434. }
  435. public Criteria andWidthNotEqualTo(Integer value) {
  436. addCriterion("width <>", value, "width");
  437. return (Criteria) this;
  438. }
  439. public Criteria andWidthGreaterThan(Integer value) {
  440. addCriterion("width >", value, "width");
  441. return (Criteria) this;
  442. }
  443. public Criteria andWidthGreaterThanOrEqualTo(Integer value) {
  444. addCriterion("width >=", value, "width");
  445. return (Criteria) this;
  446. }
  447. public Criteria andWidthLessThan(Integer value) {
  448. addCriterion("width <", value, "width");
  449. return (Criteria) this;
  450. }
  451. public Criteria andWidthLessThanOrEqualTo(Integer value) {
  452. addCriterion("width <=", value, "width");
  453. return (Criteria) this;
  454. }
  455. public Criteria andWidthIn(List<Integer> values) {
  456. addCriterion("width in", values, "width");
  457. return (Criteria) this;
  458. }
  459. public Criteria andWidthNotIn(List<Integer> values) {
  460. addCriterion("width not in", values, "width");
  461. return (Criteria) this;
  462. }
  463. public Criteria andWidthBetween(Integer value1, Integer value2) {
  464. addCriterion("width between", value1, value2, "width");
  465. return (Criteria) this;
  466. }
  467. public Criteria andWidthNotBetween(Integer value1, Integer value2) {
  468. addCriterion("width not between", value1, value2, "width");
  469. return (Criteria) this;
  470. }
  471. public Criteria andHeightIsNull() {
  472. addCriterion("height is null");
  473. return (Criteria) this;
  474. }
  475. public Criteria andHeightIsNotNull() {
  476. addCriterion("height is not null");
  477. return (Criteria) this;
  478. }
  479. public Criteria andHeightEqualTo(Integer value) {
  480. addCriterion("height =", value, "height");
  481. return (Criteria) this;
  482. }
  483. public Criteria andHeightNotEqualTo(Integer value) {
  484. addCriterion("height <>", value, "height");
  485. return (Criteria) this;
  486. }
  487. public Criteria andHeightGreaterThan(Integer value) {
  488. addCriterion("height >", value, "height");
  489. return (Criteria) this;
  490. }
  491. public Criteria andHeightGreaterThanOrEqualTo(Integer value) {
  492. addCriterion("height >=", value, "height");
  493. return (Criteria) this;
  494. }
  495. public Criteria andHeightLessThan(Integer value) {
  496. addCriterion("height <", value, "height");
  497. return (Criteria) this;
  498. }
  499. public Criteria andHeightLessThanOrEqualTo(Integer value) {
  500. addCriterion("height <=", value, "height");
  501. return (Criteria) this;
  502. }
  503. public Criteria andHeightIn(List<Integer> values) {
  504. addCriterion("height in", values, "height");
  505. return (Criteria) this;
  506. }
  507. public Criteria andHeightNotIn(List<Integer> values) {
  508. addCriterion("height not in", values, "height");
  509. return (Criteria) this;
  510. }
  511. public Criteria andHeightBetween(Integer value1, Integer value2) {
  512. addCriterion("height between", value1, value2, "height");
  513. return (Criteria) this;
  514. }
  515. public Criteria andHeightNotBetween(Integer value1, Integer value2) {
  516. addCriterion("height not between", value1, value2, "height");
  517. return (Criteria) this;
  518. }
  519. public Criteria andClientIsNull() {
  520. addCriterion("client is null");
  521. return (Criteria) this;
  522. }
  523. public Criteria andClientIsNotNull() {
  524. addCriterion("client is not null");
  525. return (Criteria) this;
  526. }
  527. public Criteria andClientEqualTo(Integer value) {
  528. addCriterion("client =", value, "client");
  529. return (Criteria) this;
  530. }
  531. public Criteria andClientNotEqualTo(Integer value) {
  532. addCriterion("client <>", value, "client");
  533. return (Criteria) this;
  534. }
  535. public Criteria andClientGreaterThan(Integer value) {
  536. addCriterion("client >", value, "client");
  537. return (Criteria) this;
  538. }
  539. public Criteria andClientGreaterThanOrEqualTo(Integer value) {
  540. addCriterion("client >=", value, "client");
  541. return (Criteria) this;
  542. }
  543. public Criteria andClientLessThan(Integer value) {
  544. addCriterion("client <", value, "client");
  545. return (Criteria) this;
  546. }
  547. public Criteria andClientLessThanOrEqualTo(Integer value) {
  548. addCriterion("client <=", value, "client");
  549. return (Criteria) this;
  550. }
  551. public Criteria andClientIn(List<Integer> values) {
  552. addCriterion("client in", values, "client");
  553. return (Criteria) this;
  554. }
  555. public Criteria andClientNotIn(List<Integer> values) {
  556. addCriterion("client not in", values, "client");
  557. return (Criteria) this;
  558. }
  559. public Criteria andClientBetween(Integer value1, Integer value2) {
  560. addCriterion("client between", value1, value2, "client");
  561. return (Criteria) this;
  562. }
  563. public Criteria andClientNotBetween(Integer value1, Integer value2) {
  564. addCriterion("client not between", value1, value2, "client");
  565. return (Criteria) this;
  566. }
  567. public Criteria andDeleteSignIsNull() {
  568. addCriterion("delete_sign is null");
  569. return (Criteria) this;
  570. }
  571. public Criteria andDeleteSignIsNotNull() {
  572. addCriterion("delete_sign is not null");
  573. return (Criteria) this;
  574. }
  575. public Criteria andDeleteSignEqualTo(Boolean value) {
  576. addCriterion("delete_sign =", value, "deleteSign");
  577. return (Criteria) this;
  578. }
  579. public Criteria andDeleteSignNotEqualTo(Boolean value) {
  580. addCriterion("delete_sign <>", value, "deleteSign");
  581. return (Criteria) this;
  582. }
  583. public Criteria andDeleteSignGreaterThan(Boolean value) {
  584. addCriterion("delete_sign >", value, "deleteSign");
  585. return (Criteria) this;
  586. }
  587. public Criteria andDeleteSignGreaterThanOrEqualTo(Boolean value) {
  588. addCriterion("delete_sign >=", value, "deleteSign");
  589. return (Criteria) this;
  590. }
  591. public Criteria andDeleteSignLessThan(Boolean value) {
  592. addCriterion("delete_sign <", value, "deleteSign");
  593. return (Criteria) this;
  594. }
  595. public Criteria andDeleteSignLessThanOrEqualTo(Boolean value) {
  596. addCriterion("delete_sign <=", value, "deleteSign");
  597. return (Criteria) this;
  598. }
  599. public Criteria andDeleteSignIn(List<Boolean> values) {
  600. addCriterion("delete_sign in", values, "deleteSign");
  601. return (Criteria) this;
  602. }
  603. public Criteria andDeleteSignNotIn(List<Boolean> values) {
  604. addCriterion("delete_sign not in", values, "deleteSign");
  605. return (Criteria) this;
  606. }
  607. public Criteria andDeleteSignBetween(Boolean value1, Boolean value2) {
  608. addCriterion("delete_sign between", value1, value2, "deleteSign");
  609. return (Criteria) this;
  610. }
  611. public Criteria andDeleteSignNotBetween(Boolean value1, Boolean value2) {
  612. addCriterion("delete_sign not between", value1, value2, "deleteSign");
  613. return (Criteria) this;
  614. }
  615. }
  616. /**
  617. * This class was generated by MyBatis Generator. This class corresponds to the database table banners
  618. * @mbg.generated Thu Aug 30 08:27:53 CST 2018
  619. */
  620. public static class Criterion {
  621. private String condition;
  622. private Object value;
  623. private Object secondValue;
  624. private boolean noValue;
  625. private boolean singleValue;
  626. private boolean betweenValue;
  627. private boolean listValue;
  628. private String typeHandler;
  629. public String getCondition() {
  630. return condition;
  631. }
  632. public Object getValue() {
  633. return value;
  634. }
  635. public Object getSecondValue() {
  636. return secondValue;
  637. }
  638. public boolean isNoValue() {
  639. return noValue;
  640. }
  641. public boolean isSingleValue() {
  642. return singleValue;
  643. }
  644. public boolean isBetweenValue() {
  645. return betweenValue;
  646. }
  647. public boolean isListValue() {
  648. return listValue;
  649. }
  650. public String getTypeHandler() {
  651. return typeHandler;
  652. }
  653. protected Criterion(String condition) {
  654. super();
  655. this.condition = condition;
  656. this.typeHandler = null;
  657. this.noValue = true;
  658. }
  659. protected Criterion(String condition, Object value, String typeHandler) {
  660. super();
  661. this.condition = condition;
  662. this.value = value;
  663. this.typeHandler = typeHandler;
  664. if (value instanceof List<?>) {
  665. this.listValue = true;
  666. } else {
  667. this.singleValue = true;
  668. }
  669. }
  670. protected Criterion(String condition, Object value) {
  671. this(condition, value, null);
  672. }
  673. protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
  674. super();
  675. this.condition = condition;
  676. this.value = value;
  677. this.secondValue = secondValue;
  678. this.typeHandler = typeHandler;
  679. this.betweenValue = true;
  680. }
  681. protected Criterion(String condition, Object value, Object secondValue) {
  682. this(condition, value, secondValue, null);
  683. }
  684. }
  685. /**
  686. * This class was generated by MyBatis Generator.
  687. * This class corresponds to the database table banners
  688. *
  689. * @mbg.generated do_not_delete_during_merge Thu Aug 30 08:14:36 CST 2018
  690. */
  691. public static class Criteria extends GeneratedCriteria {
  692. protected Criteria() {
  693. super();
  694. }
  695. }
  696. }