StationNoticeManageExample.java 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870
  1. package com.platform.yijia.pojo;
  2. import java.util.ArrayList;
  3. import java.util.Date;
  4. import java.util.Iterator;
  5. import java.util.List;
  6. public class StationNoticeManageExample {
  7. /**
  8. * This field was generated by MyBatis Generator.
  9. * This field corresponds to the database table station_notice_manage
  10. *
  11. * @mbg.generated
  12. */
  13. protected String orderByClause;
  14. /**
  15. * This field was generated by MyBatis Generator.
  16. * This field corresponds to the database table station_notice_manage
  17. *
  18. * @mbg.generated
  19. */
  20. protected boolean distinct;
  21. /**
  22. * This field was generated by MyBatis Generator.
  23. * This field corresponds to the database table station_notice_manage
  24. *
  25. * @mbg.generated
  26. */
  27. protected List<Criteria> oredCriteria;
  28. /**
  29. * This method was generated by MyBatis Generator.
  30. * This method corresponds to the database table station_notice_manage
  31. *
  32. * @mbg.generated
  33. */
  34. public StationNoticeManageExample() {
  35. oredCriteria = new ArrayList<Criteria>();
  36. }
  37. /**
  38. * This method was generated by MyBatis Generator.
  39. * This method corresponds to the database table station_notice_manage
  40. *
  41. * @mbg.generated
  42. */
  43. public void setOrderByClause(String orderByClause) {
  44. this.orderByClause = orderByClause;
  45. }
  46. /**
  47. * This method was generated by MyBatis Generator.
  48. * This method corresponds to the database table station_notice_manage
  49. *
  50. * @mbg.generated
  51. */
  52. public String getOrderByClause() {
  53. return orderByClause;
  54. }
  55. /**
  56. * This method was generated by MyBatis Generator.
  57. * This method corresponds to the database table station_notice_manage
  58. *
  59. * @mbg.generated
  60. */
  61. public void setDistinct(boolean distinct) {
  62. this.distinct = distinct;
  63. }
  64. /**
  65. * This method was generated by MyBatis Generator.
  66. * This method corresponds to the database table station_notice_manage
  67. *
  68. * @mbg.generated
  69. */
  70. public boolean isDistinct() {
  71. return distinct;
  72. }
  73. /**
  74. * This method was generated by MyBatis Generator.
  75. * This method corresponds to the database table station_notice_manage
  76. *
  77. * @mbg.generated
  78. */
  79. public List<Criteria> getOredCriteria() {
  80. return oredCriteria;
  81. }
  82. /**
  83. * This method was generated by MyBatis Generator.
  84. * This method corresponds to the database table station_notice_manage
  85. *
  86. * @mbg.generated
  87. */
  88. public void or(Criteria criteria) {
  89. oredCriteria.add(criteria);
  90. }
  91. /**
  92. * This method was generated by MyBatis Generator.
  93. * This method corresponds to the database table station_notice_manage
  94. *
  95. * @mbg.generated
  96. */
  97. public Criteria or() {
  98. Criteria criteria = createCriteriaInternal();
  99. oredCriteria.add(criteria);
  100. return criteria;
  101. }
  102. /**
  103. * This method was generated by MyBatis Generator.
  104. * This method corresponds to the database table station_notice_manage
  105. *
  106. * @mbg.generated
  107. */
  108. public Criteria createCriteria() {
  109. Criteria criteria = createCriteriaInternal();
  110. if (oredCriteria.size() == 0) {
  111. oredCriteria.add(criteria);
  112. }
  113. return criteria;
  114. }
  115. /**
  116. * This method was generated by MyBatis Generator.
  117. * This method corresponds to the database table station_notice_manage
  118. *
  119. * @mbg.generated
  120. */
  121. protected Criteria createCriteriaInternal() {
  122. Criteria criteria = new Criteria();
  123. return criteria;
  124. }
  125. /**
  126. * This method was generated by MyBatis Generator.
  127. * This method corresponds to the database table station_notice_manage
  128. *
  129. * @mbg.generated
  130. */
  131. public void clear() {
  132. oredCriteria.clear();
  133. orderByClause = null;
  134. distinct = false;
  135. }
  136. /**
  137. * This class was generated by MyBatis Generator.
  138. * This class corresponds to the database table station_notice_manage
  139. *
  140. * @mbg.generated
  141. */
  142. protected abstract static class GeneratedCriteria {
  143. protected List<Criterion> criteria;
  144. protected GeneratedCriteria() {
  145. super();
  146. criteria = new ArrayList<Criterion>();
  147. }
  148. public boolean isValid() {
  149. return criteria.size() > 0;
  150. }
  151. public List<Criterion> getAllCriteria() {
  152. return criteria;
  153. }
  154. public List<Criterion> getCriteria() {
  155. return criteria;
  156. }
  157. protected void addCriterion(String condition) {
  158. if (condition == null) {
  159. throw new RuntimeException("Value for condition cannot be null");
  160. }
  161. criteria.add(new Criterion(condition));
  162. }
  163. protected void addCriterion(String condition, Object value, String property) {
  164. if (value == null) {
  165. throw new RuntimeException("Value for " + property + " cannot be null");
  166. }
  167. criteria.add(new Criterion(condition, value));
  168. }
  169. protected void addCriterion(String condition, Object value1, Object value2, String property) {
  170. if (value1 == null || value2 == null) {
  171. throw new RuntimeException("Between values for " + property + " cannot be null");
  172. }
  173. criteria.add(new Criterion(condition, value1, value2));
  174. }
  175. protected void addCriterionForJDBCDate(String condition, Date value, String property) {
  176. if (value == null) {
  177. throw new RuntimeException("Value for " + property + " cannot be null");
  178. }
  179. addCriterion(condition, new java.sql.Date(value.getTime()), property);
  180. }
  181. protected void addCriterionForJDBCDate(String condition, List<Date> values, String property) {
  182. if (values == null || values.size() == 0) {
  183. throw new RuntimeException("Value list for " + property + " cannot be null or empty");
  184. }
  185. List<java.sql.Date> dateList = new ArrayList<java.sql.Date>();
  186. Iterator<Date> iter = values.iterator();
  187. while (iter.hasNext()) {
  188. dateList.add(new java.sql.Date(iter.next().getTime()));
  189. }
  190. addCriterion(condition, dateList, property);
  191. }
  192. protected void addCriterionForJDBCDate(String condition, Date value1, Date value2, String property) {
  193. if (value1 == null || value2 == null) {
  194. throw new RuntimeException("Between values for " + property + " cannot be null");
  195. }
  196. addCriterion(condition, new java.sql.Date(value1.getTime()), new java.sql.Date(value2.getTime()), property);
  197. }
  198. public Criteria andNoticeIdIsNull() {
  199. addCriterion("notice_id is null");
  200. return (Criteria) this;
  201. }
  202. public Criteria andNoticeIdIsNotNull() {
  203. addCriterion("notice_id is not null");
  204. return (Criteria) this;
  205. }
  206. public Criteria andNoticeIdEqualTo(Integer value) {
  207. addCriterion("notice_id =", value, "noticeId");
  208. return (Criteria) this;
  209. }
  210. public Criteria andNoticeIdNotEqualTo(Integer value) {
  211. addCriterion("notice_id <>", value, "noticeId");
  212. return (Criteria) this;
  213. }
  214. public Criteria andNoticeIdGreaterThan(Integer value) {
  215. addCriterion("notice_id >", value, "noticeId");
  216. return (Criteria) this;
  217. }
  218. public Criteria andNoticeIdGreaterThanOrEqualTo(Integer value) {
  219. addCriterion("notice_id >=", value, "noticeId");
  220. return (Criteria) this;
  221. }
  222. public Criteria andNoticeIdLessThan(Integer value) {
  223. addCriterion("notice_id <", value, "noticeId");
  224. return (Criteria) this;
  225. }
  226. public Criteria andNoticeIdLessThanOrEqualTo(Integer value) {
  227. addCriterion("notice_id <=", value, "noticeId");
  228. return (Criteria) this;
  229. }
  230. public Criteria andNoticeIdIn(List<Integer> values) {
  231. addCriterion("notice_id in", values, "noticeId");
  232. return (Criteria) this;
  233. }
  234. public Criteria andNoticeIdNotIn(List<Integer> values) {
  235. addCriterion("notice_id not in", values, "noticeId");
  236. return (Criteria) this;
  237. }
  238. public Criteria andNoticeIdBetween(Integer value1, Integer value2) {
  239. addCriterion("notice_id between", value1, value2, "noticeId");
  240. return (Criteria) this;
  241. }
  242. public Criteria andNoticeIdNotBetween(Integer value1, Integer value2) {
  243. addCriterion("notice_id not between", value1, value2, "noticeId");
  244. return (Criteria) this;
  245. }
  246. public Criteria andFullNameIsNull() {
  247. addCriterion("full_name is null");
  248. return (Criteria) this;
  249. }
  250. public Criteria andFullNameIsNotNull() {
  251. addCriterion("full_name is not null");
  252. return (Criteria) this;
  253. }
  254. public Criteria andFullNameEqualTo(String value) {
  255. addCriterion("full_name =", value, "fullName");
  256. return (Criteria) this;
  257. }
  258. public Criteria andFullNameNotEqualTo(String value) {
  259. addCriterion("full_name <>", value, "fullName");
  260. return (Criteria) this;
  261. }
  262. public Criteria andFullNameGreaterThan(String value) {
  263. addCriterion("full_name >", value, "fullName");
  264. return (Criteria) this;
  265. }
  266. public Criteria andFullNameGreaterThanOrEqualTo(String value) {
  267. addCriterion("full_name >=", value, "fullName");
  268. return (Criteria) this;
  269. }
  270. public Criteria andFullNameLessThan(String value) {
  271. addCriterion("full_name <", value, "fullName");
  272. return (Criteria) this;
  273. }
  274. public Criteria andFullNameLessThanOrEqualTo(String value) {
  275. addCriterion("full_name <=", value, "fullName");
  276. return (Criteria) this;
  277. }
  278. public Criteria andFullNameLike(String value) {
  279. addCriterion("full_name like", value, "fullName");
  280. return (Criteria) this;
  281. }
  282. public Criteria andFullNameNotLike(String value) {
  283. addCriterion("full_name not like", value, "fullName");
  284. return (Criteria) this;
  285. }
  286. public Criteria andFullNameIn(List<String> values) {
  287. addCriterion("full_name in", values, "fullName");
  288. return (Criteria) this;
  289. }
  290. public Criteria andFullNameNotIn(List<String> values) {
  291. addCriterion("full_name not in", values, "fullName");
  292. return (Criteria) this;
  293. }
  294. public Criteria andFullNameBetween(String value1, String value2) {
  295. addCriterion("full_name between", value1, value2, "fullName");
  296. return (Criteria) this;
  297. }
  298. public Criteria andFullNameNotBetween(String value1, String value2) {
  299. addCriterion("full_name not between", value1, value2, "fullName");
  300. return (Criteria) this;
  301. }
  302. public Criteria andPhoneIsNull() {
  303. addCriterion("phone is null");
  304. return (Criteria) this;
  305. }
  306. public Criteria andPhoneIsNotNull() {
  307. addCriterion("phone is not null");
  308. return (Criteria) this;
  309. }
  310. public Criteria andPhoneEqualTo(String value) {
  311. addCriterion("phone =", value, "phone");
  312. return (Criteria) this;
  313. }
  314. public Criteria andPhoneNotEqualTo(String value) {
  315. addCriterion("phone <>", value, "phone");
  316. return (Criteria) this;
  317. }
  318. public Criteria andPhoneGreaterThan(String value) {
  319. addCriterion("phone >", value, "phone");
  320. return (Criteria) this;
  321. }
  322. public Criteria andPhoneGreaterThanOrEqualTo(String value) {
  323. addCriterion("phone >=", value, "phone");
  324. return (Criteria) this;
  325. }
  326. public Criteria andPhoneLessThan(String value) {
  327. addCriterion("phone <", value, "phone");
  328. return (Criteria) this;
  329. }
  330. public Criteria andPhoneLessThanOrEqualTo(String value) {
  331. addCriterion("phone <=", value, "phone");
  332. return (Criteria) this;
  333. }
  334. public Criteria andPhoneLike(String value) {
  335. addCriterion("phone like", value, "phone");
  336. return (Criteria) this;
  337. }
  338. public Criteria andPhoneNotLike(String value) {
  339. addCriterion("phone not like", value, "phone");
  340. return (Criteria) this;
  341. }
  342. public Criteria andPhoneIn(List<String> values) {
  343. addCriterion("phone in", values, "phone");
  344. return (Criteria) this;
  345. }
  346. public Criteria andPhoneNotIn(List<String> values) {
  347. addCriterion("phone not in", values, "phone");
  348. return (Criteria) this;
  349. }
  350. public Criteria andPhoneBetween(String value1, String value2) {
  351. addCriterion("phone between", value1, value2, "phone");
  352. return (Criteria) this;
  353. }
  354. public Criteria andPhoneNotBetween(String value1, String value2) {
  355. addCriterion("phone not between", value1, value2, "phone");
  356. return (Criteria) this;
  357. }
  358. public Criteria andBindDateIsNull() {
  359. addCriterion("bind_date is null");
  360. return (Criteria) this;
  361. }
  362. public Criteria andBindDateIsNotNull() {
  363. addCriterion("bind_date is not null");
  364. return (Criteria) this;
  365. }
  366. public Criteria andBindDateEqualTo(Date value) {
  367. addCriterionForJDBCDate("bind_date =", value, "bindDate");
  368. return (Criteria) this;
  369. }
  370. public Criteria andBindDateNotEqualTo(Date value) {
  371. addCriterionForJDBCDate("bind_date <>", value, "bindDate");
  372. return (Criteria) this;
  373. }
  374. public Criteria andBindDateGreaterThan(Date value) {
  375. addCriterionForJDBCDate("bind_date >", value, "bindDate");
  376. return (Criteria) this;
  377. }
  378. public Criteria andBindDateGreaterThanOrEqualTo(Date value) {
  379. addCriterionForJDBCDate("bind_date >=", value, "bindDate");
  380. return (Criteria) this;
  381. }
  382. public Criteria andBindDateLessThan(Date value) {
  383. addCriterionForJDBCDate("bind_date <", value, "bindDate");
  384. return (Criteria) this;
  385. }
  386. public Criteria andBindDateLessThanOrEqualTo(Date value) {
  387. addCriterionForJDBCDate("bind_date <=", value, "bindDate");
  388. return (Criteria) this;
  389. }
  390. public Criteria andBindDateIn(List<Date> values) {
  391. addCriterionForJDBCDate("bind_date in", values, "bindDate");
  392. return (Criteria) this;
  393. }
  394. public Criteria andBindDateNotIn(List<Date> values) {
  395. addCriterionForJDBCDate("bind_date not in", values, "bindDate");
  396. return (Criteria) this;
  397. }
  398. public Criteria andBindDateBetween(Date value1, Date value2) {
  399. addCriterionForJDBCDate("bind_date between", value1, value2, "bindDate");
  400. return (Criteria) this;
  401. }
  402. public Criteria andBindDateNotBetween(Date value1, Date value2) {
  403. addCriterionForJDBCDate("bind_date not between", value1, value2, "bindDate");
  404. return (Criteria) this;
  405. }
  406. public Criteria andBindStatusIsNull() {
  407. addCriterion("bind_status is null");
  408. return (Criteria) this;
  409. }
  410. public Criteria andBindStatusIsNotNull() {
  411. addCriterion("bind_status is not null");
  412. return (Criteria) this;
  413. }
  414. public Criteria andBindStatusEqualTo(String value) {
  415. addCriterion("bind_status =", value, "bindStatus");
  416. return (Criteria) this;
  417. }
  418. public Criteria andBindStatusNotEqualTo(String value) {
  419. addCriterion("bind_status <>", value, "bindStatus");
  420. return (Criteria) this;
  421. }
  422. public Criteria andBindStatusGreaterThan(String value) {
  423. addCriterion("bind_status >", value, "bindStatus");
  424. return (Criteria) this;
  425. }
  426. public Criteria andBindStatusGreaterThanOrEqualTo(String value) {
  427. addCriterion("bind_status >=", value, "bindStatus");
  428. return (Criteria) this;
  429. }
  430. public Criteria andBindStatusLessThan(String value) {
  431. addCriterion("bind_status <", value, "bindStatus");
  432. return (Criteria) this;
  433. }
  434. public Criteria andBindStatusLessThanOrEqualTo(String value) {
  435. addCriterion("bind_status <=", value, "bindStatus");
  436. return (Criteria) this;
  437. }
  438. public Criteria andBindStatusLike(String value) {
  439. addCriterion("bind_status like", value, "bindStatus");
  440. return (Criteria) this;
  441. }
  442. public Criteria andBindStatusNotLike(String value) {
  443. addCriterion("bind_status not like", value, "bindStatus");
  444. return (Criteria) this;
  445. }
  446. public Criteria andBindStatusIn(List<String> values) {
  447. addCriterion("bind_status in", values, "bindStatus");
  448. return (Criteria) this;
  449. }
  450. public Criteria andBindStatusNotIn(List<String> values) {
  451. addCriterion("bind_status not in", values, "bindStatus");
  452. return (Criteria) this;
  453. }
  454. public Criteria andBindStatusBetween(String value1, String value2) {
  455. addCriterion("bind_status between", value1, value2, "bindStatus");
  456. return (Criteria) this;
  457. }
  458. public Criteria andBindStatusNotBetween(String value1, String value2) {
  459. addCriterion("bind_status not between", value1, value2, "bindStatus");
  460. return (Criteria) this;
  461. }
  462. public Criteria andWxFullNameIsNull() {
  463. addCriterion("wx_full_name is null");
  464. return (Criteria) this;
  465. }
  466. public Criteria andWxFullNameIsNotNull() {
  467. addCriterion("wx_full_name is not null");
  468. return (Criteria) this;
  469. }
  470. public Criteria andWxFullNameEqualTo(String value) {
  471. addCriterion("wx_full_name =", value, "wxFullName");
  472. return (Criteria) this;
  473. }
  474. public Criteria andWxFullNameNotEqualTo(String value) {
  475. addCriterion("wx_full_name <>", value, "wxFullName");
  476. return (Criteria) this;
  477. }
  478. public Criteria andWxFullNameGreaterThan(String value) {
  479. addCriterion("wx_full_name >", value, "wxFullName");
  480. return (Criteria) this;
  481. }
  482. public Criteria andWxFullNameGreaterThanOrEqualTo(String value) {
  483. addCriterion("wx_full_name >=", value, "wxFullName");
  484. return (Criteria) this;
  485. }
  486. public Criteria andWxFullNameLessThan(String value) {
  487. addCriterion("wx_full_name <", value, "wxFullName");
  488. return (Criteria) this;
  489. }
  490. public Criteria andWxFullNameLessThanOrEqualTo(String value) {
  491. addCriterion("wx_full_name <=", value, "wxFullName");
  492. return (Criteria) this;
  493. }
  494. public Criteria andWxFullNameLike(String value) {
  495. addCriterion("wx_full_name like", value, "wxFullName");
  496. return (Criteria) this;
  497. }
  498. public Criteria andWxFullNameNotLike(String value) {
  499. addCriterion("wx_full_name not like", value, "wxFullName");
  500. return (Criteria) this;
  501. }
  502. public Criteria andWxFullNameIn(List<String> values) {
  503. addCriterion("wx_full_name in", values, "wxFullName");
  504. return (Criteria) this;
  505. }
  506. public Criteria andWxFullNameNotIn(List<String> values) {
  507. addCriterion("wx_full_name not in", values, "wxFullName");
  508. return (Criteria) this;
  509. }
  510. public Criteria andWxFullNameBetween(String value1, String value2) {
  511. addCriterion("wx_full_name between", value1, value2, "wxFullName");
  512. return (Criteria) this;
  513. }
  514. public Criteria andWxFullNameNotBetween(String value1, String value2) {
  515. addCriterion("wx_full_name not between", value1, value2, "wxFullName");
  516. return (Criteria) this;
  517. }
  518. public Criteria andStationNoIsNull() {
  519. addCriterion("station_no is null");
  520. return (Criteria) this;
  521. }
  522. public Criteria andStationNoIsNotNull() {
  523. addCriterion("station_no is not null");
  524. return (Criteria) this;
  525. }
  526. public Criteria andStationNoEqualTo(String value) {
  527. addCriterion("station_no =", value, "stationNo");
  528. return (Criteria) this;
  529. }
  530. public Criteria andStationNoNotEqualTo(String value) {
  531. addCriterion("station_no <>", value, "stationNo");
  532. return (Criteria) this;
  533. }
  534. public Criteria andStationNoGreaterThan(String value) {
  535. addCriterion("station_no >", value, "stationNo");
  536. return (Criteria) this;
  537. }
  538. public Criteria andStationNoGreaterThanOrEqualTo(String value) {
  539. addCriterion("station_no >=", value, "stationNo");
  540. return (Criteria) this;
  541. }
  542. public Criteria andStationNoLessThan(String value) {
  543. addCriterion("station_no <", value, "stationNo");
  544. return (Criteria) this;
  545. }
  546. public Criteria andStationNoLessThanOrEqualTo(String value) {
  547. addCriterion("station_no <=", value, "stationNo");
  548. return (Criteria) this;
  549. }
  550. public Criteria andStationNoLike(String value) {
  551. addCriterion("station_no like", value, "stationNo");
  552. return (Criteria) this;
  553. }
  554. public Criteria andStationNoNotLike(String value) {
  555. addCriterion("station_no not like", value, "stationNo");
  556. return (Criteria) this;
  557. }
  558. public Criteria andStationNoIn(List<String> values) {
  559. addCriterion("station_no in", values, "stationNo");
  560. return (Criteria) this;
  561. }
  562. public Criteria andStationNoNotIn(List<String> values) {
  563. addCriterion("station_no not in", values, "stationNo");
  564. return (Criteria) this;
  565. }
  566. public Criteria andStationNoBetween(String value1, String value2) {
  567. addCriterion("station_no between", value1, value2, "stationNo");
  568. return (Criteria) this;
  569. }
  570. public Criteria andStationNoNotBetween(String value1, String value2) {
  571. addCriterion("station_no not between", value1, value2, "stationNo");
  572. return (Criteria) this;
  573. }
  574. public Criteria andStationNameIsNull() {
  575. addCriterion("station_name is null");
  576. return (Criteria) this;
  577. }
  578. public Criteria andStationNameIsNotNull() {
  579. addCriterion("station_name is not null");
  580. return (Criteria) this;
  581. }
  582. public Criteria andStationNameEqualTo(String value) {
  583. addCriterion("station_name =", value, "stationName");
  584. return (Criteria) this;
  585. }
  586. public Criteria andStationNameNotEqualTo(String value) {
  587. addCriterion("station_name <>", value, "stationName");
  588. return (Criteria) this;
  589. }
  590. public Criteria andStationNameGreaterThan(String value) {
  591. addCriterion("station_name >", value, "stationName");
  592. return (Criteria) this;
  593. }
  594. public Criteria andStationNameGreaterThanOrEqualTo(String value) {
  595. addCriterion("station_name >=", value, "stationName");
  596. return (Criteria) this;
  597. }
  598. public Criteria andStationNameLessThan(String value) {
  599. addCriterion("station_name <", value, "stationName");
  600. return (Criteria) this;
  601. }
  602. public Criteria andStationNameLessThanOrEqualTo(String value) {
  603. addCriterion("station_name <=", value, "stationName");
  604. return (Criteria) this;
  605. }
  606. public Criteria andStationNameLike(String value) {
  607. addCriterion("station_name like", value, "stationName");
  608. return (Criteria) this;
  609. }
  610. public Criteria andStationNameNotLike(String value) {
  611. addCriterion("station_name not like", value, "stationName");
  612. return (Criteria) this;
  613. }
  614. public Criteria andStationNameIn(List<String> values) {
  615. addCriterion("station_name in", values, "stationName");
  616. return (Criteria) this;
  617. }
  618. public Criteria andStationNameNotIn(List<String> values) {
  619. addCriterion("station_name not in", values, "stationName");
  620. return (Criteria) this;
  621. }
  622. public Criteria andStationNameBetween(String value1, String value2) {
  623. addCriterion("station_name between", value1, value2, "stationName");
  624. return (Criteria) this;
  625. }
  626. public Criteria andStationNameNotBetween(String value1, String value2) {
  627. addCriterion("station_name not between", value1, value2, "stationName");
  628. return (Criteria) this;
  629. }
  630. }
  631. /**
  632. * This class was generated by MyBatis Generator.
  633. * This class corresponds to the database table station_notice_manage
  634. *
  635. * @mbg.generated do_not_delete_during_merge
  636. */
  637. public static class Criteria extends GeneratedCriteria {
  638. protected Criteria() {
  639. super();
  640. }
  641. }
  642. /**
  643. * This class was generated by MyBatis Generator.
  644. * This class corresponds to the database table station_notice_manage
  645. *
  646. * @mbg.generated
  647. */
  648. public static class Criterion {
  649. private String condition;
  650. private Object value;
  651. private Object secondValue;
  652. private boolean noValue;
  653. private boolean singleValue;
  654. private boolean betweenValue;
  655. private boolean listValue;
  656. private String typeHandler;
  657. public String getCondition() {
  658. return condition;
  659. }
  660. public Object getValue() {
  661. return value;
  662. }
  663. public Object getSecondValue() {
  664. return secondValue;
  665. }
  666. public boolean isNoValue() {
  667. return noValue;
  668. }
  669. public boolean isSingleValue() {
  670. return singleValue;
  671. }
  672. public boolean isBetweenValue() {
  673. return betweenValue;
  674. }
  675. public boolean isListValue() {
  676. return listValue;
  677. }
  678. public String getTypeHandler() {
  679. return typeHandler;
  680. }
  681. protected Criterion(String condition) {
  682. super();
  683. this.condition = condition;
  684. this.typeHandler = null;
  685. this.noValue = true;
  686. }
  687. protected Criterion(String condition, Object value, String typeHandler) {
  688. super();
  689. this.condition = condition;
  690. this.value = value;
  691. this.typeHandler = typeHandler;
  692. if (value instanceof List<?>) {
  693. this.listValue = true;
  694. } else {
  695. this.singleValue = true;
  696. }
  697. }
  698. protected Criterion(String condition, Object value) {
  699. this(condition, value, null);
  700. }
  701. protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
  702. super();
  703. this.condition = condition;
  704. this.value = value;
  705. this.secondValue = secondValue;
  706. this.typeHandler = typeHandler;
  707. this.betweenValue = true;
  708. }
  709. protected Criterion(String condition, Object value, Object secondValue) {
  710. this(condition, value, secondValue, null);
  711. }
  712. }
  713. }