ParkingpointAppylExample.java 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796
  1. package com.js.kbt.model;
  2. import java.util.ArrayList;
  3. import java.util.List;
  4. public class ParkingpointAppylExample {
  5. /**
  6. * This field was generated by MyBatis Generator. This field corresponds to the database table parkingpoint_appyl
  7. * @mbggenerated Mon Nov 06 13:40:21 CST 2017
  8. */
  9. protected String orderByClause;
  10. /**
  11. * This field was generated by MyBatis Generator. This field corresponds to the database table parkingpoint_appyl
  12. * @mbggenerated Mon Nov 06 13:40:21 CST 2017
  13. */
  14. protected boolean distinct;
  15. /**
  16. * This field was generated by MyBatis Generator. This field corresponds to the database table parkingpoint_appyl
  17. * @mbggenerated Mon Nov 06 13:40:21 CST 2017
  18. */
  19. protected List<Criteria> oredCriteria;
  20. /**
  21. * This method was generated by MyBatis Generator. This method corresponds to the database table parkingpoint_appyl
  22. * @mbggenerated Mon Nov 06 13:40:21 CST 2017
  23. */
  24. public ParkingpointAppylExample() {
  25. oredCriteria = new ArrayList<Criteria>();
  26. }
  27. /**
  28. * This method was generated by MyBatis Generator. This method corresponds to the database table parkingpoint_appyl
  29. * @mbggenerated Mon Nov 06 13:40:21 CST 2017
  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 parkingpoint_appyl
  36. * @mbggenerated Mon Nov 06 13:40:21 CST 2017
  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 parkingpoint_appyl
  43. * @mbggenerated Mon Nov 06 13:40:21 CST 2017
  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 parkingpoint_appyl
  50. * @mbggenerated Mon Nov 06 13:40:21 CST 2017
  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 parkingpoint_appyl
  57. * @mbggenerated Mon Nov 06 13:40:21 CST 2017
  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 parkingpoint_appyl
  64. * @mbggenerated Mon Nov 06 13:40:21 CST 2017
  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 parkingpoint_appyl
  71. * @mbggenerated Mon Nov 06 13:40:21 CST 2017
  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 parkingpoint_appyl
  80. * @mbggenerated Mon Nov 06 13:40:21 CST 2017
  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 parkingpoint_appyl
  91. * @mbggenerated Mon Nov 06 13:40:21 CST 2017
  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 parkingpoint_appyl
  99. * @mbggenerated Mon Nov 06 13:40:21 CST 2017
  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 parkingpoint_appyl
  108. * @mbggenerated Mon Nov 06 13:40:21 CST 2017
  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,
  132. String property) {
  133. if (value == null) {
  134. throw new RuntimeException("Value for " + property
  135. + " cannot be null");
  136. }
  137. criteria.add(new Criterion(condition, value));
  138. }
  139. protected void addCriterion(String condition, Object value1,
  140. Object value2, String property) {
  141. if (value1 == null || value2 == null) {
  142. throw new RuntimeException("Between values for " + property
  143. + " cannot be null");
  144. }
  145. criteria.add(new Criterion(condition, value1, value2));
  146. }
  147. public Criteria andIdIsNull() {
  148. addCriterion("id is null");
  149. return (Criteria) this;
  150. }
  151. public Criteria andIdIsNotNull() {
  152. addCriterion("id is not null");
  153. return (Criteria) this;
  154. }
  155. public Criteria andIdEqualTo(Integer value) {
  156. addCriterion("id =", value, "id");
  157. return (Criteria) this;
  158. }
  159. public Criteria andIdNotEqualTo(Integer value) {
  160. addCriterion("id <>", value, "id");
  161. return (Criteria) this;
  162. }
  163. public Criteria andIdGreaterThan(Integer value) {
  164. addCriterion("id >", value, "id");
  165. return (Criteria) this;
  166. }
  167. public Criteria andIdGreaterThanOrEqualTo(Integer value) {
  168. addCriterion("id >=", value, "id");
  169. return (Criteria) this;
  170. }
  171. public Criteria andIdLessThan(Integer value) {
  172. addCriterion("id <", value, "id");
  173. return (Criteria) this;
  174. }
  175. public Criteria andIdLessThanOrEqualTo(Integer value) {
  176. addCriterion("id <=", value, "id");
  177. return (Criteria) this;
  178. }
  179. public Criteria andIdIn(List<Integer> values) {
  180. addCriterion("id in", values, "id");
  181. return (Criteria) this;
  182. }
  183. public Criteria andIdNotIn(List<Integer> values) {
  184. addCriterion("id not in", values, "id");
  185. return (Criteria) this;
  186. }
  187. public Criteria andIdBetween(Integer value1, Integer value2) {
  188. addCriterion("id between", value1, value2, "id");
  189. return (Criteria) this;
  190. }
  191. public Criteria andIdNotBetween(Integer value1, Integer value2) {
  192. addCriterion("id not between", value1, value2, "id");
  193. return (Criteria) this;
  194. }
  195. public Criteria andNameIsNull() {
  196. addCriterion("name is null");
  197. return (Criteria) this;
  198. }
  199. public Criteria andNameIsNotNull() {
  200. addCriterion("name is not null");
  201. return (Criteria) this;
  202. }
  203. public Criteria andNameEqualTo(String value) {
  204. addCriterion("name =", value, "name");
  205. return (Criteria) this;
  206. }
  207. public Criteria andNameNotEqualTo(String value) {
  208. addCriterion("name <>", value, "name");
  209. return (Criteria) this;
  210. }
  211. public Criteria andNameGreaterThan(String value) {
  212. addCriterion("name >", value, "name");
  213. return (Criteria) this;
  214. }
  215. public Criteria andNameGreaterThanOrEqualTo(String value) {
  216. addCriterion("name >=", value, "name");
  217. return (Criteria) this;
  218. }
  219. public Criteria andNameLessThan(String value) {
  220. addCriterion("name <", value, "name");
  221. return (Criteria) this;
  222. }
  223. public Criteria andNameLessThanOrEqualTo(String value) {
  224. addCriterion("name <=", value, "name");
  225. return (Criteria) this;
  226. }
  227. public Criteria andNameLike(String value) {
  228. addCriterion("name like", value, "name");
  229. return (Criteria) this;
  230. }
  231. public Criteria andNameNotLike(String value) {
  232. addCriterion("name not like", value, "name");
  233. return (Criteria) this;
  234. }
  235. public Criteria andNameIn(List<String> values) {
  236. addCriterion("name in", values, "name");
  237. return (Criteria) this;
  238. }
  239. public Criteria andNameNotIn(List<String> values) {
  240. addCriterion("name not in", values, "name");
  241. return (Criteria) this;
  242. }
  243. public Criteria andNameBetween(String value1, String value2) {
  244. addCriterion("name between", value1, value2, "name");
  245. return (Criteria) this;
  246. }
  247. public Criteria andNameNotBetween(String value1, String value2) {
  248. addCriterion("name not between", value1, value2, "name");
  249. return (Criteria) this;
  250. }
  251. public Criteria andMobileIsNull() {
  252. addCriterion("mobile is null");
  253. return (Criteria) this;
  254. }
  255. public Criteria andMobileIsNotNull() {
  256. addCriterion("mobile is not null");
  257. return (Criteria) this;
  258. }
  259. public Criteria andMobileEqualTo(String value) {
  260. addCriterion("mobile =", value, "mobile");
  261. return (Criteria) this;
  262. }
  263. public Criteria andMobileNotEqualTo(String value) {
  264. addCriterion("mobile <>", value, "mobile");
  265. return (Criteria) this;
  266. }
  267. public Criteria andMobileGreaterThan(String value) {
  268. addCriterion("mobile >", value, "mobile");
  269. return (Criteria) this;
  270. }
  271. public Criteria andMobileGreaterThanOrEqualTo(String value) {
  272. addCriterion("mobile >=", value, "mobile");
  273. return (Criteria) this;
  274. }
  275. public Criteria andMobileLessThan(String value) {
  276. addCriterion("mobile <", value, "mobile");
  277. return (Criteria) this;
  278. }
  279. public Criteria andMobileLessThanOrEqualTo(String value) {
  280. addCriterion("mobile <=", value, "mobile");
  281. return (Criteria) this;
  282. }
  283. public Criteria andMobileLike(String value) {
  284. addCriterion("mobile like", value, "mobile");
  285. return (Criteria) this;
  286. }
  287. public Criteria andMobileNotLike(String value) {
  288. addCriterion("mobile not like", value, "mobile");
  289. return (Criteria) this;
  290. }
  291. public Criteria andMobileIn(List<String> values) {
  292. addCriterion("mobile in", values, "mobile");
  293. return (Criteria) this;
  294. }
  295. public Criteria andMobileNotIn(List<String> values) {
  296. addCriterion("mobile not in", values, "mobile");
  297. return (Criteria) this;
  298. }
  299. public Criteria andMobileBetween(String value1, String value2) {
  300. addCriterion("mobile between", value1, value2, "mobile");
  301. return (Criteria) this;
  302. }
  303. public Criteria andMobileNotBetween(String value1, String value2) {
  304. addCriterion("mobile not between", value1, value2, "mobile");
  305. return (Criteria) this;
  306. }
  307. public Criteria andAddresIsNull() {
  308. addCriterion("addres is null");
  309. return (Criteria) this;
  310. }
  311. public Criteria andAddresIsNotNull() {
  312. addCriterion("addres is not null");
  313. return (Criteria) this;
  314. }
  315. public Criteria andAddresEqualTo(String value) {
  316. addCriterion("addres =", value, "addres");
  317. return (Criteria) this;
  318. }
  319. public Criteria andAddresNotEqualTo(String value) {
  320. addCriterion("addres <>", value, "addres");
  321. return (Criteria) this;
  322. }
  323. public Criteria andAddresGreaterThan(String value) {
  324. addCriterion("addres >", value, "addres");
  325. return (Criteria) this;
  326. }
  327. public Criteria andAddresGreaterThanOrEqualTo(String value) {
  328. addCriterion("addres >=", value, "addres");
  329. return (Criteria) this;
  330. }
  331. public Criteria andAddresLessThan(String value) {
  332. addCriterion("addres <", value, "addres");
  333. return (Criteria) this;
  334. }
  335. public Criteria andAddresLessThanOrEqualTo(String value) {
  336. addCriterion("addres <=", value, "addres");
  337. return (Criteria) this;
  338. }
  339. public Criteria andAddresLike(String value) {
  340. addCriterion("addres like", value, "addres");
  341. return (Criteria) this;
  342. }
  343. public Criteria andAddresNotLike(String value) {
  344. addCriterion("addres not like", value, "addres");
  345. return (Criteria) this;
  346. }
  347. public Criteria andAddresIn(List<String> values) {
  348. addCriterion("addres in", values, "addres");
  349. return (Criteria) this;
  350. }
  351. public Criteria andAddresNotIn(List<String> values) {
  352. addCriterion("addres not in", values, "addres");
  353. return (Criteria) this;
  354. }
  355. public Criteria andAddresBetween(String value1, String value2) {
  356. addCriterion("addres between", value1, value2, "addres");
  357. return (Criteria) this;
  358. }
  359. public Criteria andAddresNotBetween(String value1, String value2) {
  360. addCriterion("addres not between", value1, value2, "addres");
  361. return (Criteria) this;
  362. }
  363. public Criteria andStatusIsNull() {
  364. addCriterion("status is null");
  365. return (Criteria) this;
  366. }
  367. public Criteria andStatusIsNotNull() {
  368. addCriterion("status is not null");
  369. return (Criteria) this;
  370. }
  371. public Criteria andStatusEqualTo(Integer value) {
  372. addCriterion("status =", value, "status");
  373. return (Criteria) this;
  374. }
  375. public Criteria andStatusNotEqualTo(Integer value) {
  376. addCriterion("status <>", value, "status");
  377. return (Criteria) this;
  378. }
  379. public Criteria andStatusGreaterThan(Integer value) {
  380. addCriterion("status >", value, "status");
  381. return (Criteria) this;
  382. }
  383. public Criteria andStatusGreaterThanOrEqualTo(Integer value) {
  384. addCriterion("status >=", value, "status");
  385. return (Criteria) this;
  386. }
  387. public Criteria andStatusLessThan(Integer value) {
  388. addCriterion("status <", value, "status");
  389. return (Criteria) this;
  390. }
  391. public Criteria andStatusLessThanOrEqualTo(Integer value) {
  392. addCriterion("status <=", value, "status");
  393. return (Criteria) this;
  394. }
  395. public Criteria andStatusIn(List<Integer> values) {
  396. addCriterion("status in", values, "status");
  397. return (Criteria) this;
  398. }
  399. public Criteria andStatusNotIn(List<Integer> values) {
  400. addCriterion("status not in", values, "status");
  401. return (Criteria) this;
  402. }
  403. public Criteria andStatusBetween(Integer value1, Integer value2) {
  404. addCriterion("status between", value1, value2, "status");
  405. return (Criteria) this;
  406. }
  407. public Criteria andStatusNotBetween(Integer value1, Integer value2) {
  408. addCriterion("status not between", value1, value2, "status");
  409. return (Criteria) this;
  410. }
  411. public Criteria andMsgIsNull() {
  412. addCriterion("msg is null");
  413. return (Criteria) this;
  414. }
  415. public Criteria andMsgIsNotNull() {
  416. addCriterion("msg is not null");
  417. return (Criteria) this;
  418. }
  419. public Criteria andMsgEqualTo(String value) {
  420. addCriterion("msg =", value, "msg");
  421. return (Criteria) this;
  422. }
  423. public Criteria andMsgNotEqualTo(String value) {
  424. addCriterion("msg <>", value, "msg");
  425. return (Criteria) this;
  426. }
  427. public Criteria andMsgGreaterThan(String value) {
  428. addCriterion("msg >", value, "msg");
  429. return (Criteria) this;
  430. }
  431. public Criteria andMsgGreaterThanOrEqualTo(String value) {
  432. addCriterion("msg >=", value, "msg");
  433. return (Criteria) this;
  434. }
  435. public Criteria andMsgLessThan(String value) {
  436. addCriterion("msg <", value, "msg");
  437. return (Criteria) this;
  438. }
  439. public Criteria andMsgLessThanOrEqualTo(String value) {
  440. addCriterion("msg <=", value, "msg");
  441. return (Criteria) this;
  442. }
  443. public Criteria andMsgLike(String value) {
  444. addCriterion("msg like", value, "msg");
  445. return (Criteria) this;
  446. }
  447. public Criteria andMsgNotLike(String value) {
  448. addCriterion("msg not like", value, "msg");
  449. return (Criteria) this;
  450. }
  451. public Criteria andMsgIn(List<String> values) {
  452. addCriterion("msg in", values, "msg");
  453. return (Criteria) this;
  454. }
  455. public Criteria andMsgNotIn(List<String> values) {
  456. addCriterion("msg not in", values, "msg");
  457. return (Criteria) this;
  458. }
  459. public Criteria andMsgBetween(String value1, String value2) {
  460. addCriterion("msg between", value1, value2, "msg");
  461. return (Criteria) this;
  462. }
  463. public Criteria andMsgNotBetween(String value1, String value2) {
  464. addCriterion("msg not between", value1, value2, "msg");
  465. return (Criteria) this;
  466. }
  467. public Criteria andComnameIsNull() {
  468. addCriterion("comname is null");
  469. return (Criteria) this;
  470. }
  471. public Criteria andComnameIsNotNull() {
  472. addCriterion("comname is not null");
  473. return (Criteria) this;
  474. }
  475. public Criteria andComnameEqualTo(String value) {
  476. addCriterion("comname =", value, "comname");
  477. return (Criteria) this;
  478. }
  479. public Criteria andComnameNotEqualTo(String value) {
  480. addCriterion("comname <>", value, "comname");
  481. return (Criteria) this;
  482. }
  483. public Criteria andComnameGreaterThan(String value) {
  484. addCriterion("comname >", value, "comname");
  485. return (Criteria) this;
  486. }
  487. public Criteria andComnameGreaterThanOrEqualTo(String value) {
  488. addCriterion("comname >=", value, "comname");
  489. return (Criteria) this;
  490. }
  491. public Criteria andComnameLessThan(String value) {
  492. addCriterion("comname <", value, "comname");
  493. return (Criteria) this;
  494. }
  495. public Criteria andComnameLessThanOrEqualTo(String value) {
  496. addCriterion("comname <=", value, "comname");
  497. return (Criteria) this;
  498. }
  499. public Criteria andComnameLike(String value) {
  500. addCriterion("comname like", value, "comname");
  501. return (Criteria) this;
  502. }
  503. public Criteria andComnameNotLike(String value) {
  504. addCriterion("comname not like", value, "comname");
  505. return (Criteria) this;
  506. }
  507. public Criteria andComnameIn(List<String> values) {
  508. addCriterion("comname in", values, "comname");
  509. return (Criteria) this;
  510. }
  511. public Criteria andComnameNotIn(List<String> values) {
  512. addCriterion("comname not in", values, "comname");
  513. return (Criteria) this;
  514. }
  515. public Criteria andComnameBetween(String value1, String value2) {
  516. addCriterion("comname between", value1, value2, "comname");
  517. return (Criteria) this;
  518. }
  519. public Criteria andComnameNotBetween(String value1, String value2) {
  520. addCriterion("comname not between", value1, value2, "comname");
  521. return (Criteria) this;
  522. }
  523. public Criteria andUserIdIsNull() {
  524. addCriterion("user_id is null");
  525. return (Criteria) this;
  526. }
  527. public Criteria andUserIdIsNotNull() {
  528. addCriterion("user_id is not null");
  529. return (Criteria) this;
  530. }
  531. public Criteria andUserIdEqualTo(Integer value) {
  532. addCriterion("user_id =", value, "userId");
  533. return (Criteria) this;
  534. }
  535. public Criteria andUserIdNotEqualTo(Integer value) {
  536. addCriterion("user_id <>", value, "userId");
  537. return (Criteria) this;
  538. }
  539. public Criteria andUserIdGreaterThan(Integer value) {
  540. addCriterion("user_id >", value, "userId");
  541. return (Criteria) this;
  542. }
  543. public Criteria andUserIdGreaterThanOrEqualTo(Integer value) {
  544. addCriterion("user_id >=", value, "userId");
  545. return (Criteria) this;
  546. }
  547. public Criteria andUserIdLessThan(Integer value) {
  548. addCriterion("user_id <", value, "userId");
  549. return (Criteria) this;
  550. }
  551. public Criteria andUserIdLessThanOrEqualTo(Integer value) {
  552. addCriterion("user_id <=", value, "userId");
  553. return (Criteria) this;
  554. }
  555. public Criteria andUserIdIn(List<Integer> values) {
  556. addCriterion("user_id in", values, "userId");
  557. return (Criteria) this;
  558. }
  559. public Criteria andUserIdNotIn(List<Integer> values) {
  560. addCriterion("user_id not in", values, "userId");
  561. return (Criteria) this;
  562. }
  563. public Criteria andUserIdBetween(Integer value1, Integer value2) {
  564. addCriterion("user_id between", value1, value2, "userId");
  565. return (Criteria) this;
  566. }
  567. public Criteria andUserIdNotBetween(Integer value1, Integer value2) {
  568. addCriterion("user_id not between", value1, value2, "userId");
  569. return (Criteria) this;
  570. }
  571. }
  572. /**
  573. * This class was generated by MyBatis Generator. This class corresponds to the database table parkingpoint_appyl
  574. * @mbggenerated Mon Nov 06 13:40:21 CST 2017
  575. */
  576. public static class Criterion {
  577. private String condition;
  578. private Object value;
  579. private Object secondValue;
  580. private boolean noValue;
  581. private boolean singleValue;
  582. private boolean betweenValue;
  583. private boolean listValue;
  584. private String typeHandler;
  585. public String getCondition() {
  586. return condition;
  587. }
  588. public Object getValue() {
  589. return value;
  590. }
  591. public Object getSecondValue() {
  592. return secondValue;
  593. }
  594. public boolean isNoValue() {
  595. return noValue;
  596. }
  597. public boolean isSingleValue() {
  598. return singleValue;
  599. }
  600. public boolean isBetweenValue() {
  601. return betweenValue;
  602. }
  603. public boolean isListValue() {
  604. return listValue;
  605. }
  606. public String getTypeHandler() {
  607. return typeHandler;
  608. }
  609. protected Criterion(String condition) {
  610. super();
  611. this.condition = condition;
  612. this.typeHandler = null;
  613. this.noValue = true;
  614. }
  615. protected Criterion(String condition, Object value, String typeHandler) {
  616. super();
  617. this.condition = condition;
  618. this.value = value;
  619. this.typeHandler = typeHandler;
  620. if (value instanceof List<?>) {
  621. this.listValue = true;
  622. } else {
  623. this.singleValue = true;
  624. }
  625. }
  626. protected Criterion(String condition, Object value) {
  627. this(condition, value, null);
  628. }
  629. protected Criterion(String condition, Object value, Object secondValue,
  630. String typeHandler) {
  631. super();
  632. this.condition = condition;
  633. this.value = value;
  634. this.secondValue = secondValue;
  635. this.typeHandler = typeHandler;
  636. this.betweenValue = true;
  637. }
  638. protected Criterion(String condition, Object value, Object secondValue) {
  639. this(condition, value, secondValue, null);
  640. }
  641. }
  642. /**
  643. * This class was generated by MyBatis Generator.
  644. * This class corresponds to the database table parkingpoint_appyl
  645. *
  646. * @mbggenerated do_not_delete_during_merge Wed Oct 25 08:58:44 CST 2017
  647. */
  648. public static class Criteria extends GeneratedCriteria {
  649. protected Criteria() {
  650. super();
  651. }
  652. }
  653. }