OrganizationExample.java 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762
  1. package com.kede.common.model;
  2. import java.util.ArrayList;
  3. import java.util.Date;
  4. import java.util.List;
  5. public class OrganizationExample {
  6. /**
  7. * This field was generated by MyBatis Generator. This field corresponds to the database table organization
  8. * @mbg.generated Mon Dec 30 09:44:39 CST 2019
  9. */
  10. protected String orderByClause;
  11. /**
  12. * This field was generated by MyBatis Generator. This field corresponds to the database table organization
  13. * @mbg.generated Mon Dec 30 09:44:39 CST 2019
  14. */
  15. protected boolean distinct;
  16. /**
  17. * This field was generated by MyBatis Generator. This field corresponds to the database table organization
  18. * @mbg.generated Mon Dec 30 09:44:39 CST 2019
  19. */
  20. protected List<Criteria> oredCriteria;
  21. /**
  22. * This method was generated by MyBatis Generator. This method corresponds to the database table organization
  23. * @mbg.generated Mon Dec 30 09:44:39 CST 2019
  24. */
  25. public OrganizationExample() {
  26. oredCriteria = new ArrayList<Criteria>();
  27. }
  28. /**
  29. * This method was generated by MyBatis Generator. This method corresponds to the database table organization
  30. * @mbg.generated Mon Dec 30 09:44:39 CST 2019
  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 organization
  37. * @mbg.generated Mon Dec 30 09:44:39 CST 2019
  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 organization
  44. * @mbg.generated Mon Dec 30 09:44:39 CST 2019
  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 organization
  51. * @mbg.generated Mon Dec 30 09:44:39 CST 2019
  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 organization
  58. * @mbg.generated Mon Dec 30 09:44:39 CST 2019
  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 organization
  65. * @mbg.generated Mon Dec 30 09:44:39 CST 2019
  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 organization
  72. * @mbg.generated Mon Dec 30 09:44:39 CST 2019
  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 organization
  81. * @mbg.generated Mon Dec 30 09:44:39 CST 2019
  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 organization
  92. * @mbg.generated Mon Dec 30 09:44:39 CST 2019
  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 organization
  100. * @mbg.generated Mon Dec 30 09:44:39 CST 2019
  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 organization
  109. * @mbg.generated Mon Dec 30 09:44:39 CST 2019
  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(Integer value) {
  153. addCriterion("id =", value, "id");
  154. return (Criteria) this;
  155. }
  156. public Criteria andIdNotEqualTo(Integer value) {
  157. addCriterion("id <>", value, "id");
  158. return (Criteria) this;
  159. }
  160. public Criteria andIdGreaterThan(Integer value) {
  161. addCriterion("id >", value, "id");
  162. return (Criteria) this;
  163. }
  164. public Criteria andIdGreaterThanOrEqualTo(Integer value) {
  165. addCriterion("id >=", value, "id");
  166. return (Criteria) this;
  167. }
  168. public Criteria andIdLessThan(Integer value) {
  169. addCriterion("id <", value, "id");
  170. return (Criteria) this;
  171. }
  172. public Criteria andIdLessThanOrEqualTo(Integer value) {
  173. addCriterion("id <=", value, "id");
  174. return (Criteria) this;
  175. }
  176. public Criteria andIdIn(List<Integer> values) {
  177. addCriterion("id in", values, "id");
  178. return (Criteria) this;
  179. }
  180. public Criteria andIdNotIn(List<Integer> values) {
  181. addCriterion("id not in", values, "id");
  182. return (Criteria) this;
  183. }
  184. public Criteria andIdBetween(Integer value1, Integer value2) {
  185. addCriterion("id between", value1, value2, "id");
  186. return (Criteria) this;
  187. }
  188. public Criteria andIdNotBetween(Integer value1, Integer value2) {
  189. addCriterion("id not between", value1, value2, "id");
  190. return (Criteria) this;
  191. }
  192. public Criteria andNameIsNull() {
  193. addCriterion("name is null");
  194. return (Criteria) this;
  195. }
  196. public Criteria andNameIsNotNull() {
  197. addCriterion("name is not null");
  198. return (Criteria) this;
  199. }
  200. public Criteria andNameEqualTo(String value) {
  201. addCriterion("name =", value, "name");
  202. return (Criteria) this;
  203. }
  204. public Criteria andNameNotEqualTo(String value) {
  205. addCriterion("name <>", value, "name");
  206. return (Criteria) this;
  207. }
  208. public Criteria andNameGreaterThan(String value) {
  209. addCriterion("name >", value, "name");
  210. return (Criteria) this;
  211. }
  212. public Criteria andNameGreaterThanOrEqualTo(String value) {
  213. addCriterion("name >=", value, "name");
  214. return (Criteria) this;
  215. }
  216. public Criteria andNameLessThan(String value) {
  217. addCriterion("name <", value, "name");
  218. return (Criteria) this;
  219. }
  220. public Criteria andNameLessThanOrEqualTo(String value) {
  221. addCriterion("name <=", value, "name");
  222. return (Criteria) this;
  223. }
  224. public Criteria andNameLike(String value) {
  225. addCriterion("name like", value, "name");
  226. return (Criteria) this;
  227. }
  228. public Criteria andNameNotLike(String value) {
  229. addCriterion("name not like", value, "name");
  230. return (Criteria) this;
  231. }
  232. public Criteria andNameIn(List<String> values) {
  233. addCriterion("name in", values, "name");
  234. return (Criteria) this;
  235. }
  236. public Criteria andNameNotIn(List<String> values) {
  237. addCriterion("name not in", values, "name");
  238. return (Criteria) this;
  239. }
  240. public Criteria andNameBetween(String value1, String value2) {
  241. addCriterion("name between", value1, value2, "name");
  242. return (Criteria) this;
  243. }
  244. public Criteria andNameNotBetween(String value1, String value2) {
  245. addCriterion("name not between", value1, value2, "name");
  246. return (Criteria) this;
  247. }
  248. public Criteria andPictureUrlIsNull() {
  249. addCriterion("picture_url is null");
  250. return (Criteria) this;
  251. }
  252. public Criteria andPictureUrlIsNotNull() {
  253. addCriterion("picture_url is not null");
  254. return (Criteria) this;
  255. }
  256. public Criteria andPictureUrlEqualTo(String value) {
  257. addCriterion("picture_url =", value, "pictureUrl");
  258. return (Criteria) this;
  259. }
  260. public Criteria andPictureUrlNotEqualTo(String value) {
  261. addCriterion("picture_url <>", value, "pictureUrl");
  262. return (Criteria) this;
  263. }
  264. public Criteria andPictureUrlGreaterThan(String value) {
  265. addCriterion("picture_url >", value, "pictureUrl");
  266. return (Criteria) this;
  267. }
  268. public Criteria andPictureUrlGreaterThanOrEqualTo(String value) {
  269. addCriterion("picture_url >=", value, "pictureUrl");
  270. return (Criteria) this;
  271. }
  272. public Criteria andPictureUrlLessThan(String value) {
  273. addCriterion("picture_url <", value, "pictureUrl");
  274. return (Criteria) this;
  275. }
  276. public Criteria andPictureUrlLessThanOrEqualTo(String value) {
  277. addCriterion("picture_url <=", value, "pictureUrl");
  278. return (Criteria) this;
  279. }
  280. public Criteria andPictureUrlLike(String value) {
  281. addCriterion("picture_url like", value, "pictureUrl");
  282. return (Criteria) this;
  283. }
  284. public Criteria andPictureUrlNotLike(String value) {
  285. addCriterion("picture_url not like", value, "pictureUrl");
  286. return (Criteria) this;
  287. }
  288. public Criteria andPictureUrlIn(List<String> values) {
  289. addCriterion("picture_url in", values, "pictureUrl");
  290. return (Criteria) this;
  291. }
  292. public Criteria andPictureUrlNotIn(List<String> values) {
  293. addCriterion("picture_url not in", values, "pictureUrl");
  294. return (Criteria) this;
  295. }
  296. public Criteria andPictureUrlBetween(String value1, String value2) {
  297. addCriterion("picture_url between", value1, value2, "pictureUrl");
  298. return (Criteria) this;
  299. }
  300. public Criteria andPictureUrlNotBetween(String value1, String value2) {
  301. addCriterion("picture_url not between", value1, value2, "pictureUrl");
  302. return (Criteria) this;
  303. }
  304. public Criteria andReleaseStatusIsNull() {
  305. addCriterion("release_status is null");
  306. return (Criteria) this;
  307. }
  308. public Criteria andReleaseStatusIsNotNull() {
  309. addCriterion("release_status is not null");
  310. return (Criteria) this;
  311. }
  312. public Criteria andReleaseStatusEqualTo(Integer value) {
  313. addCriterion("release_status =", value, "releaseStatus");
  314. return (Criteria) this;
  315. }
  316. public Criteria andReleaseStatusNotEqualTo(Integer value) {
  317. addCriterion("release_status <>", value, "releaseStatus");
  318. return (Criteria) this;
  319. }
  320. public Criteria andReleaseStatusGreaterThan(Integer value) {
  321. addCriterion("release_status >", value, "releaseStatus");
  322. return (Criteria) this;
  323. }
  324. public Criteria andReleaseStatusGreaterThanOrEqualTo(Integer value) {
  325. addCriterion("release_status >=", value, "releaseStatus");
  326. return (Criteria) this;
  327. }
  328. public Criteria andReleaseStatusLessThan(Integer value) {
  329. addCriterion("release_status <", value, "releaseStatus");
  330. return (Criteria) this;
  331. }
  332. public Criteria andReleaseStatusLessThanOrEqualTo(Integer value) {
  333. addCriterion("release_status <=", value, "releaseStatus");
  334. return (Criteria) this;
  335. }
  336. public Criteria andReleaseStatusIn(List<Integer> values) {
  337. addCriterion("release_status in", values, "releaseStatus");
  338. return (Criteria) this;
  339. }
  340. public Criteria andReleaseStatusNotIn(List<Integer> values) {
  341. addCriterion("release_status not in", values, "releaseStatus");
  342. return (Criteria) this;
  343. }
  344. public Criteria andReleaseStatusBetween(Integer value1, Integer value2) {
  345. addCriterion("release_status between", value1, value2, "releaseStatus");
  346. return (Criteria) this;
  347. }
  348. public Criteria andReleaseStatusNotBetween(Integer value1, Integer value2) {
  349. addCriterion("release_status not between", value1, value2, "releaseStatus");
  350. return (Criteria) this;
  351. }
  352. public Criteria andReleaseTimeIsNull() {
  353. addCriterion("release_time is null");
  354. return (Criteria) this;
  355. }
  356. public Criteria andReleaseTimeIsNotNull() {
  357. addCriterion("release_time is not null");
  358. return (Criteria) this;
  359. }
  360. public Criteria andReleaseTimeEqualTo(Date value) {
  361. addCriterion("release_time =", value, "releaseTime");
  362. return (Criteria) this;
  363. }
  364. public Criteria andReleaseTimeNotEqualTo(Date value) {
  365. addCriterion("release_time <>", value, "releaseTime");
  366. return (Criteria) this;
  367. }
  368. public Criteria andReleaseTimeGreaterThan(Date value) {
  369. addCriterion("release_time >", value, "releaseTime");
  370. return (Criteria) this;
  371. }
  372. public Criteria andReleaseTimeGreaterThanOrEqualTo(Date value) {
  373. addCriterion("release_time >=", value, "releaseTime");
  374. return (Criteria) this;
  375. }
  376. public Criteria andReleaseTimeLessThan(Date value) {
  377. addCriterion("release_time <", value, "releaseTime");
  378. return (Criteria) this;
  379. }
  380. public Criteria andReleaseTimeLessThanOrEqualTo(Date value) {
  381. addCriterion("release_time <=", value, "releaseTime");
  382. return (Criteria) this;
  383. }
  384. public Criteria andReleaseTimeIn(List<Date> values) {
  385. addCriterion("release_time in", values, "releaseTime");
  386. return (Criteria) this;
  387. }
  388. public Criteria andReleaseTimeNotIn(List<Date> values) {
  389. addCriterion("release_time not in", values, "releaseTime");
  390. return (Criteria) this;
  391. }
  392. public Criteria andReleaseTimeBetween(Date value1, Date value2) {
  393. addCriterion("release_time between", value1, value2, "releaseTime");
  394. return (Criteria) this;
  395. }
  396. public Criteria andReleaseTimeNotBetween(Date value1, Date value2) {
  397. addCriterion("release_time not between", value1, value2, "releaseTime");
  398. return (Criteria) this;
  399. }
  400. public Criteria andSortIsNull() {
  401. addCriterion("sort is null");
  402. return (Criteria) this;
  403. }
  404. public Criteria andSortIsNotNull() {
  405. addCriterion("sort is not null");
  406. return (Criteria) this;
  407. }
  408. public Criteria andSortEqualTo(Integer value) {
  409. addCriterion("sort =", value, "sort");
  410. return (Criteria) this;
  411. }
  412. public Criteria andSortNotEqualTo(Integer value) {
  413. addCriterion("sort <>", value, "sort");
  414. return (Criteria) this;
  415. }
  416. public Criteria andSortGreaterThan(Integer value) {
  417. addCriterion("sort >", value, "sort");
  418. return (Criteria) this;
  419. }
  420. public Criteria andSortGreaterThanOrEqualTo(Integer value) {
  421. addCriterion("sort >=", value, "sort");
  422. return (Criteria) this;
  423. }
  424. public Criteria andSortLessThan(Integer value) {
  425. addCriterion("sort <", value, "sort");
  426. return (Criteria) this;
  427. }
  428. public Criteria andSortLessThanOrEqualTo(Integer value) {
  429. addCriterion("sort <=", value, "sort");
  430. return (Criteria) this;
  431. }
  432. public Criteria andSortIn(List<Integer> values) {
  433. addCriterion("sort in", values, "sort");
  434. return (Criteria) this;
  435. }
  436. public Criteria andSortNotIn(List<Integer> values) {
  437. addCriterion("sort not in", values, "sort");
  438. return (Criteria) this;
  439. }
  440. public Criteria andSortBetween(Integer value1, Integer value2) {
  441. addCriterion("sort between", value1, value2, "sort");
  442. return (Criteria) this;
  443. }
  444. public Criteria andSortNotBetween(Integer value1, Integer value2) {
  445. addCriterion("sort not between", value1, value2, "sort");
  446. return (Criteria) this;
  447. }
  448. public Criteria andCreateTimeIsNull() {
  449. addCriterion("create_time is null");
  450. return (Criteria) this;
  451. }
  452. public Criteria andCreateTimeIsNotNull() {
  453. addCriterion("create_time is not null");
  454. return (Criteria) this;
  455. }
  456. public Criteria andCreateTimeEqualTo(Date value) {
  457. addCriterion("create_time =", value, "createTime");
  458. return (Criteria) this;
  459. }
  460. public Criteria andCreateTimeNotEqualTo(Date value) {
  461. addCriterion("create_time <>", value, "createTime");
  462. return (Criteria) this;
  463. }
  464. public Criteria andCreateTimeGreaterThan(Date value) {
  465. addCriterion("create_time >", value, "createTime");
  466. return (Criteria) this;
  467. }
  468. public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) {
  469. addCriterion("create_time >=", value, "createTime");
  470. return (Criteria) this;
  471. }
  472. public Criteria andCreateTimeLessThan(Date value) {
  473. addCriterion("create_time <", value, "createTime");
  474. return (Criteria) this;
  475. }
  476. public Criteria andCreateTimeLessThanOrEqualTo(Date value) {
  477. addCriterion("create_time <=", value, "createTime");
  478. return (Criteria) this;
  479. }
  480. public Criteria andCreateTimeIn(List<Date> values) {
  481. addCriterion("create_time in", values, "createTime");
  482. return (Criteria) this;
  483. }
  484. public Criteria andCreateTimeNotIn(List<Date> values) {
  485. addCriterion("create_time not in", values, "createTime");
  486. return (Criteria) this;
  487. }
  488. public Criteria andCreateTimeBetween(Date value1, Date value2) {
  489. addCriterion("create_time between", value1, value2, "createTime");
  490. return (Criteria) this;
  491. }
  492. public Criteria andCreateTimeNotBetween(Date value1, Date value2) {
  493. addCriterion("create_time not between", value1, value2, "createTime");
  494. return (Criteria) this;
  495. }
  496. public Criteria andStatusIsNull() {
  497. addCriterion("status is null");
  498. return (Criteria) this;
  499. }
  500. public Criteria andStatusIsNotNull() {
  501. addCriterion("status is not null");
  502. return (Criteria) this;
  503. }
  504. public Criteria andStatusEqualTo(Integer value) {
  505. addCriterion("status =", value, "status");
  506. return (Criteria) this;
  507. }
  508. public Criteria andStatusNotEqualTo(Integer value) {
  509. addCriterion("status <>", value, "status");
  510. return (Criteria) this;
  511. }
  512. public Criteria andStatusGreaterThan(Integer value) {
  513. addCriterion("status >", value, "status");
  514. return (Criteria) this;
  515. }
  516. public Criteria andStatusGreaterThanOrEqualTo(Integer value) {
  517. addCriterion("status >=", value, "status");
  518. return (Criteria) this;
  519. }
  520. public Criteria andStatusLessThan(Integer value) {
  521. addCriterion("status <", value, "status");
  522. return (Criteria) this;
  523. }
  524. public Criteria andStatusLessThanOrEqualTo(Integer value) {
  525. addCriterion("status <=", value, "status");
  526. return (Criteria) this;
  527. }
  528. public Criteria andStatusIn(List<Integer> values) {
  529. addCriterion("status in", values, "status");
  530. return (Criteria) this;
  531. }
  532. public Criteria andStatusNotIn(List<Integer> values) {
  533. addCriterion("status not in", values, "status");
  534. return (Criteria) this;
  535. }
  536. public Criteria andStatusBetween(Integer value1, Integer value2) {
  537. addCriterion("status between", value1, value2, "status");
  538. return (Criteria) this;
  539. }
  540. public Criteria andStatusNotBetween(Integer value1, Integer value2) {
  541. addCriterion("status not between", value1, value2, "status");
  542. return (Criteria) this;
  543. }
  544. }
  545. /**
  546. * This class was generated by MyBatis Generator. This class corresponds to the database table organization
  547. * @mbg.generated Mon Dec 30 09:44:39 CST 2019
  548. */
  549. public static class Criterion {
  550. private String condition;
  551. private Object value;
  552. private Object secondValue;
  553. private boolean noValue;
  554. private boolean singleValue;
  555. private boolean betweenValue;
  556. private boolean listValue;
  557. private String typeHandler;
  558. public String getCondition() {
  559. return condition;
  560. }
  561. public Object getValue() {
  562. return value;
  563. }
  564. public Object getSecondValue() {
  565. return secondValue;
  566. }
  567. public boolean isNoValue() {
  568. return noValue;
  569. }
  570. public boolean isSingleValue() {
  571. return singleValue;
  572. }
  573. public boolean isBetweenValue() {
  574. return betweenValue;
  575. }
  576. public boolean isListValue() {
  577. return listValue;
  578. }
  579. public String getTypeHandler() {
  580. return typeHandler;
  581. }
  582. protected Criterion(String condition) {
  583. super();
  584. this.condition = condition;
  585. this.typeHandler = null;
  586. this.noValue = true;
  587. }
  588. protected Criterion(String condition, Object value, String typeHandler) {
  589. super();
  590. this.condition = condition;
  591. this.value = value;
  592. this.typeHandler = typeHandler;
  593. if (value instanceof List<?>) {
  594. this.listValue = true;
  595. } else {
  596. this.singleValue = true;
  597. }
  598. }
  599. protected Criterion(String condition, Object value) {
  600. this(condition, value, null);
  601. }
  602. protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
  603. super();
  604. this.condition = condition;
  605. this.value = value;
  606. this.secondValue = secondValue;
  607. this.typeHandler = typeHandler;
  608. this.betweenValue = true;
  609. }
  610. protected Criterion(String condition, Object value, Object secondValue) {
  611. this(condition, value, secondValue, null);
  612. }
  613. }
  614. /**
  615. * This class was generated by MyBatis Generator.
  616. * This class corresponds to the database table organization
  617. *
  618. * @mbg.generated do_not_delete_during_merge Fri Dec 27 09:52:33 CST 2019
  619. */
  620. public static class Criteria extends GeneratedCriteria {
  621. protected Criteria() {
  622. super();
  623. }
  624. }
  625. }