JpushEasemobAccountExample.java 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872
  1. package com.goafanti.common.model;
  2. import java.util.ArrayList;
  3. import java.util.Date;
  4. import java.util.List;
  5. public class JpushEasemobAccountExample {
  6. /**
  7. * This field was generated by MyBatis Generator. This field corresponds to the database table jpush_easemob_account
  8. * @mbg.generated Mon Dec 25 14:46:37 CST 2017
  9. */
  10. protected String orderByClause;
  11. /**
  12. * This field was generated by MyBatis Generator. This field corresponds to the database table jpush_easemob_account
  13. * @mbg.generated Mon Dec 25 14:46:37 CST 2017
  14. */
  15. protected boolean distinct;
  16. /**
  17. * This field was generated by MyBatis Generator. This field corresponds to the database table jpush_easemob_account
  18. * @mbg.generated Mon Dec 25 14:46:37 CST 2017
  19. */
  20. protected List<Criteria> oredCriteria;
  21. /**
  22. * This method was generated by MyBatis Generator. This method corresponds to the database table jpush_easemob_account
  23. * @mbg.generated Mon Dec 25 14:46:37 CST 2017
  24. */
  25. public JpushEasemobAccountExample() {
  26. oredCriteria = new ArrayList<Criteria>();
  27. }
  28. /**
  29. * This method was generated by MyBatis Generator. This method corresponds to the database table jpush_easemob_account
  30. * @mbg.generated Mon Dec 25 14:46:37 CST 2017
  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 jpush_easemob_account
  37. * @mbg.generated Mon Dec 25 14:46:37 CST 2017
  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 jpush_easemob_account
  44. * @mbg.generated Mon Dec 25 14:46:37 CST 2017
  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 jpush_easemob_account
  51. * @mbg.generated Mon Dec 25 14:46:37 CST 2017
  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 jpush_easemob_account
  58. * @mbg.generated Mon Dec 25 14:46:37 CST 2017
  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 jpush_easemob_account
  65. * @mbg.generated Mon Dec 25 14:46:37 CST 2017
  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 jpush_easemob_account
  72. * @mbg.generated Mon Dec 25 14:46:37 CST 2017
  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 jpush_easemob_account
  81. * @mbg.generated Mon Dec 25 14:46:37 CST 2017
  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 jpush_easemob_account
  92. * @mbg.generated Mon Dec 25 14:46:37 CST 2017
  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 jpush_easemob_account
  100. * @mbg.generated Mon Dec 25 14:46:37 CST 2017
  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 jpush_easemob_account
  109. * @mbg.generated Mon Dec 25 14:46:37 CST 2017
  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 andUuidIsNull() {
  193. addCriterion("uuid is null");
  194. return (Criteria) this;
  195. }
  196. public Criteria andUuidIsNotNull() {
  197. addCriterion("uuid is not null");
  198. return (Criteria) this;
  199. }
  200. public Criteria andUuidEqualTo(String value) {
  201. addCriterion("uuid =", value, "uuid");
  202. return (Criteria) this;
  203. }
  204. public Criteria andUuidNotEqualTo(String value) {
  205. addCriterion("uuid <>", value, "uuid");
  206. return (Criteria) this;
  207. }
  208. public Criteria andUuidGreaterThan(String value) {
  209. addCriterion("uuid >", value, "uuid");
  210. return (Criteria) this;
  211. }
  212. public Criteria andUuidGreaterThanOrEqualTo(String value) {
  213. addCriterion("uuid >=", value, "uuid");
  214. return (Criteria) this;
  215. }
  216. public Criteria andUuidLessThan(String value) {
  217. addCriterion("uuid <", value, "uuid");
  218. return (Criteria) this;
  219. }
  220. public Criteria andUuidLessThanOrEqualTo(String value) {
  221. addCriterion("uuid <=", value, "uuid");
  222. return (Criteria) this;
  223. }
  224. public Criteria andUuidLike(String value) {
  225. addCriterion("uuid like", value, "uuid");
  226. return (Criteria) this;
  227. }
  228. public Criteria andUuidNotLike(String value) {
  229. addCriterion("uuid not like", value, "uuid");
  230. return (Criteria) this;
  231. }
  232. public Criteria andUuidIn(List<String> values) {
  233. addCriterion("uuid in", values, "uuid");
  234. return (Criteria) this;
  235. }
  236. public Criteria andUuidNotIn(List<String> values) {
  237. addCriterion("uuid not in", values, "uuid");
  238. return (Criteria) this;
  239. }
  240. public Criteria andUuidBetween(String value1, String value2) {
  241. addCriterion("uuid between", value1, value2, "uuid");
  242. return (Criteria) this;
  243. }
  244. public Criteria andUuidNotBetween(String value1, String value2) {
  245. addCriterion("uuid not between", value1, value2, "uuid");
  246. return (Criteria) this;
  247. }
  248. public Criteria andRegistrationIdIsNull() {
  249. addCriterion("registration_id is null");
  250. return (Criteria) this;
  251. }
  252. public Criteria andRegistrationIdIsNotNull() {
  253. addCriterion("registration_id is not null");
  254. return (Criteria) this;
  255. }
  256. public Criteria andRegistrationIdEqualTo(String value) {
  257. addCriterion("registration_id =", value, "registrationId");
  258. return (Criteria) this;
  259. }
  260. public Criteria andRegistrationIdNotEqualTo(String value) {
  261. addCriterion("registration_id <>", value, "registrationId");
  262. return (Criteria) this;
  263. }
  264. public Criteria andRegistrationIdGreaterThan(String value) {
  265. addCriterion("registration_id >", value, "registrationId");
  266. return (Criteria) this;
  267. }
  268. public Criteria andRegistrationIdGreaterThanOrEqualTo(String value) {
  269. addCriterion("registration_id >=", value, "registrationId");
  270. return (Criteria) this;
  271. }
  272. public Criteria andRegistrationIdLessThan(String value) {
  273. addCriterion("registration_id <", value, "registrationId");
  274. return (Criteria) this;
  275. }
  276. public Criteria andRegistrationIdLessThanOrEqualTo(String value) {
  277. addCriterion("registration_id <=", value, "registrationId");
  278. return (Criteria) this;
  279. }
  280. public Criteria andRegistrationIdLike(String value) {
  281. addCriterion("registration_id like", value, "registrationId");
  282. return (Criteria) this;
  283. }
  284. public Criteria andRegistrationIdNotLike(String value) {
  285. addCriterion("registration_id not like", value, "registrationId");
  286. return (Criteria) this;
  287. }
  288. public Criteria andRegistrationIdIn(List<String> values) {
  289. addCriterion("registration_id in", values, "registrationId");
  290. return (Criteria) this;
  291. }
  292. public Criteria andRegistrationIdNotIn(List<String> values) {
  293. addCriterion("registration_id not in", values, "registrationId");
  294. return (Criteria) this;
  295. }
  296. public Criteria andRegistrationIdBetween(String value1, String value2) {
  297. addCriterion("registration_id between", value1, value2, "registrationId");
  298. return (Criteria) this;
  299. }
  300. public Criteria andRegistrationIdNotBetween(String value1, String value2) {
  301. addCriterion("registration_id not between", value1, value2, "registrationId");
  302. return (Criteria) this;
  303. }
  304. public Criteria andUidIsNull() {
  305. addCriterion("uid is null");
  306. return (Criteria) this;
  307. }
  308. public Criteria andUidIsNotNull() {
  309. addCriterion("uid is not null");
  310. return (Criteria) this;
  311. }
  312. public Criteria andUidEqualTo(String value) {
  313. addCriterion("uid =", value, "uid");
  314. return (Criteria) this;
  315. }
  316. public Criteria andUidNotEqualTo(String value) {
  317. addCriterion("uid <>", value, "uid");
  318. return (Criteria) this;
  319. }
  320. public Criteria andUidGreaterThan(String value) {
  321. addCriterion("uid >", value, "uid");
  322. return (Criteria) this;
  323. }
  324. public Criteria andUidGreaterThanOrEqualTo(String value) {
  325. addCriterion("uid >=", value, "uid");
  326. return (Criteria) this;
  327. }
  328. public Criteria andUidLessThan(String value) {
  329. addCriterion("uid <", value, "uid");
  330. return (Criteria) this;
  331. }
  332. public Criteria andUidLessThanOrEqualTo(String value) {
  333. addCriterion("uid <=", value, "uid");
  334. return (Criteria) this;
  335. }
  336. public Criteria andUidLike(String value) {
  337. addCriterion("uid like", value, "uid");
  338. return (Criteria) this;
  339. }
  340. public Criteria andUidNotLike(String value) {
  341. addCriterion("uid not like", value, "uid");
  342. return (Criteria) this;
  343. }
  344. public Criteria andUidIn(List<String> values) {
  345. addCriterion("uid in", values, "uid");
  346. return (Criteria) this;
  347. }
  348. public Criteria andUidNotIn(List<String> values) {
  349. addCriterion("uid not in", values, "uid");
  350. return (Criteria) this;
  351. }
  352. public Criteria andUidBetween(String value1, String value2) {
  353. addCriterion("uid between", value1, value2, "uid");
  354. return (Criteria) this;
  355. }
  356. public Criteria andUidNotBetween(String value1, String value2) {
  357. addCriterion("uid not between", value1, value2, "uid");
  358. return (Criteria) this;
  359. }
  360. public Criteria andTagIsNull() {
  361. addCriterion("tag is null");
  362. return (Criteria) this;
  363. }
  364. public Criteria andTagIsNotNull() {
  365. addCriterion("tag is not null");
  366. return (Criteria) this;
  367. }
  368. public Criteria andTagEqualTo(String value) {
  369. addCriterion("tag =", value, "tag");
  370. return (Criteria) this;
  371. }
  372. public Criteria andTagNotEqualTo(String value) {
  373. addCriterion("tag <>", value, "tag");
  374. return (Criteria) this;
  375. }
  376. public Criteria andTagGreaterThan(String value) {
  377. addCriterion("tag >", value, "tag");
  378. return (Criteria) this;
  379. }
  380. public Criteria andTagGreaterThanOrEqualTo(String value) {
  381. addCriterion("tag >=", value, "tag");
  382. return (Criteria) this;
  383. }
  384. public Criteria andTagLessThan(String value) {
  385. addCriterion("tag <", value, "tag");
  386. return (Criteria) this;
  387. }
  388. public Criteria andTagLessThanOrEqualTo(String value) {
  389. addCriterion("tag <=", value, "tag");
  390. return (Criteria) this;
  391. }
  392. public Criteria andTagLike(String value) {
  393. addCriterion("tag like", value, "tag");
  394. return (Criteria) this;
  395. }
  396. public Criteria andTagNotLike(String value) {
  397. addCriterion("tag not like", value, "tag");
  398. return (Criteria) this;
  399. }
  400. public Criteria andTagIn(List<String> values) {
  401. addCriterion("tag in", values, "tag");
  402. return (Criteria) this;
  403. }
  404. public Criteria andTagNotIn(List<String> values) {
  405. addCriterion("tag not in", values, "tag");
  406. return (Criteria) this;
  407. }
  408. public Criteria andTagBetween(String value1, String value2) {
  409. addCriterion("tag between", value1, value2, "tag");
  410. return (Criteria) this;
  411. }
  412. public Criteria andTagNotBetween(String value1, String value2) {
  413. addCriterion("tag not between", value1, value2, "tag");
  414. return (Criteria) this;
  415. }
  416. public Criteria andGroupIdIsNull() {
  417. addCriterion("group_id is null");
  418. return (Criteria) this;
  419. }
  420. public Criteria andGroupIdIsNotNull() {
  421. addCriterion("group_id is not null");
  422. return (Criteria) this;
  423. }
  424. public Criteria andGroupIdEqualTo(String value) {
  425. addCriterion("group_id =", value, "groupId");
  426. return (Criteria) this;
  427. }
  428. public Criteria andGroupIdNotEqualTo(String value) {
  429. addCriterion("group_id <>", value, "groupId");
  430. return (Criteria) this;
  431. }
  432. public Criteria andGroupIdGreaterThan(String value) {
  433. addCriterion("group_id >", value, "groupId");
  434. return (Criteria) this;
  435. }
  436. public Criteria andGroupIdGreaterThanOrEqualTo(String value) {
  437. addCriterion("group_id >=", value, "groupId");
  438. return (Criteria) this;
  439. }
  440. public Criteria andGroupIdLessThan(String value) {
  441. addCriterion("group_id <", value, "groupId");
  442. return (Criteria) this;
  443. }
  444. public Criteria andGroupIdLessThanOrEqualTo(String value) {
  445. addCriterion("group_id <=", value, "groupId");
  446. return (Criteria) this;
  447. }
  448. public Criteria andGroupIdLike(String value) {
  449. addCriterion("group_id like", value, "groupId");
  450. return (Criteria) this;
  451. }
  452. public Criteria andGroupIdNotLike(String value) {
  453. addCriterion("group_id not like", value, "groupId");
  454. return (Criteria) this;
  455. }
  456. public Criteria andGroupIdIn(List<String> values) {
  457. addCriterion("group_id in", values, "groupId");
  458. return (Criteria) this;
  459. }
  460. public Criteria andGroupIdNotIn(List<String> values) {
  461. addCriterion("group_id not in", values, "groupId");
  462. return (Criteria) this;
  463. }
  464. public Criteria andGroupIdBetween(String value1, String value2) {
  465. addCriterion("group_id between", value1, value2, "groupId");
  466. return (Criteria) this;
  467. }
  468. public Criteria andGroupIdNotBetween(String value1, String value2) {
  469. addCriterion("group_id not between", value1, value2, "groupId");
  470. return (Criteria) this;
  471. }
  472. public Criteria andLastLoginTimeIsNull() {
  473. addCriterion("last_login_time is null");
  474. return (Criteria) this;
  475. }
  476. public Criteria andLastLoginTimeIsNotNull() {
  477. addCriterion("last_login_time is not null");
  478. return (Criteria) this;
  479. }
  480. public Criteria andLastLoginTimeEqualTo(Date value) {
  481. addCriterion("last_login_time =", value, "lastLoginTime");
  482. return (Criteria) this;
  483. }
  484. public Criteria andLastLoginTimeNotEqualTo(Date value) {
  485. addCriterion("last_login_time <>", value, "lastLoginTime");
  486. return (Criteria) this;
  487. }
  488. public Criteria andLastLoginTimeGreaterThan(Date value) {
  489. addCriterion("last_login_time >", value, "lastLoginTime");
  490. return (Criteria) this;
  491. }
  492. public Criteria andLastLoginTimeGreaterThanOrEqualTo(Date value) {
  493. addCriterion("last_login_time >=", value, "lastLoginTime");
  494. return (Criteria) this;
  495. }
  496. public Criteria andLastLoginTimeLessThan(Date value) {
  497. addCriterion("last_login_time <", value, "lastLoginTime");
  498. return (Criteria) this;
  499. }
  500. public Criteria andLastLoginTimeLessThanOrEqualTo(Date value) {
  501. addCriterion("last_login_time <=", value, "lastLoginTime");
  502. return (Criteria) this;
  503. }
  504. public Criteria andLastLoginTimeIn(List<Date> values) {
  505. addCriterion("last_login_time in", values, "lastLoginTime");
  506. return (Criteria) this;
  507. }
  508. public Criteria andLastLoginTimeNotIn(List<Date> values) {
  509. addCriterion("last_login_time not in", values, "lastLoginTime");
  510. return (Criteria) this;
  511. }
  512. public Criteria andLastLoginTimeBetween(Date value1, Date value2) {
  513. addCriterion("last_login_time between", value1, value2, "lastLoginTime");
  514. return (Criteria) this;
  515. }
  516. public Criteria andLastLoginTimeNotBetween(Date value1, Date value2) {
  517. addCriterion("last_login_time not between", value1, value2, "lastLoginTime");
  518. return (Criteria) this;
  519. }
  520. public Criteria andEasemobNameIsNull() {
  521. addCriterion("easemob_name is null");
  522. return (Criteria) this;
  523. }
  524. public Criteria andEasemobNameIsNotNull() {
  525. addCriterion("easemob_name is not null");
  526. return (Criteria) this;
  527. }
  528. public Criteria andEasemobNameEqualTo(String value) {
  529. addCriterion("easemob_name =", value, "easemobName");
  530. return (Criteria) this;
  531. }
  532. public Criteria andEasemobNameNotEqualTo(String value) {
  533. addCriterion("easemob_name <>", value, "easemobName");
  534. return (Criteria) this;
  535. }
  536. public Criteria andEasemobNameGreaterThan(String value) {
  537. addCriterion("easemob_name >", value, "easemobName");
  538. return (Criteria) this;
  539. }
  540. public Criteria andEasemobNameGreaterThanOrEqualTo(String value) {
  541. addCriterion("easemob_name >=", value, "easemobName");
  542. return (Criteria) this;
  543. }
  544. public Criteria andEasemobNameLessThan(String value) {
  545. addCriterion("easemob_name <", value, "easemobName");
  546. return (Criteria) this;
  547. }
  548. public Criteria andEasemobNameLessThanOrEqualTo(String value) {
  549. addCriterion("easemob_name <=", value, "easemobName");
  550. return (Criteria) this;
  551. }
  552. public Criteria andEasemobNameLike(String value) {
  553. addCriterion("easemob_name like", value, "easemobName");
  554. return (Criteria) this;
  555. }
  556. public Criteria andEasemobNameNotLike(String value) {
  557. addCriterion("easemob_name not like", value, "easemobName");
  558. return (Criteria) this;
  559. }
  560. public Criteria andEasemobNameIn(List<String> values) {
  561. addCriterion("easemob_name in", values, "easemobName");
  562. return (Criteria) this;
  563. }
  564. public Criteria andEasemobNameNotIn(List<String> values) {
  565. addCriterion("easemob_name not in", values, "easemobName");
  566. return (Criteria) this;
  567. }
  568. public Criteria andEasemobNameBetween(String value1, String value2) {
  569. addCriterion("easemob_name between", value1, value2, "easemobName");
  570. return (Criteria) this;
  571. }
  572. public Criteria andEasemobNameNotBetween(String value1, String value2) {
  573. addCriterion("easemob_name not between", value1, value2, "easemobName");
  574. return (Criteria) this;
  575. }
  576. public Criteria andEasemobPassIsNull() {
  577. addCriterion("easemob_pass is null");
  578. return (Criteria) this;
  579. }
  580. public Criteria andEasemobPassIsNotNull() {
  581. addCriterion("easemob_pass is not null");
  582. return (Criteria) this;
  583. }
  584. public Criteria andEasemobPassEqualTo(String value) {
  585. addCriterion("easemob_pass =", value, "easemobPass");
  586. return (Criteria) this;
  587. }
  588. public Criteria andEasemobPassNotEqualTo(String value) {
  589. addCriterion("easemob_pass <>", value, "easemobPass");
  590. return (Criteria) this;
  591. }
  592. public Criteria andEasemobPassGreaterThan(String value) {
  593. addCriterion("easemob_pass >", value, "easemobPass");
  594. return (Criteria) this;
  595. }
  596. public Criteria andEasemobPassGreaterThanOrEqualTo(String value) {
  597. addCriterion("easemob_pass >=", value, "easemobPass");
  598. return (Criteria) this;
  599. }
  600. public Criteria andEasemobPassLessThan(String value) {
  601. addCriterion("easemob_pass <", value, "easemobPass");
  602. return (Criteria) this;
  603. }
  604. public Criteria andEasemobPassLessThanOrEqualTo(String value) {
  605. addCriterion("easemob_pass <=", value, "easemobPass");
  606. return (Criteria) this;
  607. }
  608. public Criteria andEasemobPassLike(String value) {
  609. addCriterion("easemob_pass like", value, "easemobPass");
  610. return (Criteria) this;
  611. }
  612. public Criteria andEasemobPassNotLike(String value) {
  613. addCriterion("easemob_pass not like", value, "easemobPass");
  614. return (Criteria) this;
  615. }
  616. public Criteria andEasemobPassIn(List<String> values) {
  617. addCriterion("easemob_pass in", values, "easemobPass");
  618. return (Criteria) this;
  619. }
  620. public Criteria andEasemobPassNotIn(List<String> values) {
  621. addCriterion("easemob_pass not in", values, "easemobPass");
  622. return (Criteria) this;
  623. }
  624. public Criteria andEasemobPassBetween(String value1, String value2) {
  625. addCriterion("easemob_pass between", value1, value2, "easemobPass");
  626. return (Criteria) this;
  627. }
  628. public Criteria andEasemobPassNotBetween(String value1, String value2) {
  629. addCriterion("easemob_pass not between", value1, value2, "easemobPass");
  630. return (Criteria) this;
  631. }
  632. }
  633. /**
  634. * This class was generated by MyBatis Generator. This class corresponds to the database table jpush_easemob_account
  635. * @mbg.generated Mon Dec 25 14:46:37 CST 2017
  636. */
  637. public static class Criterion {
  638. private String condition;
  639. private Object value;
  640. private Object secondValue;
  641. private boolean noValue;
  642. private boolean singleValue;
  643. private boolean betweenValue;
  644. private boolean listValue;
  645. private String typeHandler;
  646. public String getCondition() {
  647. return condition;
  648. }
  649. public Object getValue() {
  650. return value;
  651. }
  652. public Object getSecondValue() {
  653. return secondValue;
  654. }
  655. public boolean isNoValue() {
  656. return noValue;
  657. }
  658. public boolean isSingleValue() {
  659. return singleValue;
  660. }
  661. public boolean isBetweenValue() {
  662. return betweenValue;
  663. }
  664. public boolean isListValue() {
  665. return listValue;
  666. }
  667. public String getTypeHandler() {
  668. return typeHandler;
  669. }
  670. protected Criterion(String condition) {
  671. super();
  672. this.condition = condition;
  673. this.typeHandler = null;
  674. this.noValue = true;
  675. }
  676. protected Criterion(String condition, Object value, String typeHandler) {
  677. super();
  678. this.condition = condition;
  679. this.value = value;
  680. this.typeHandler = typeHandler;
  681. if (value instanceof List<?>) {
  682. this.listValue = true;
  683. } else {
  684. this.singleValue = true;
  685. }
  686. }
  687. protected Criterion(String condition, Object value) {
  688. this(condition, value, null);
  689. }
  690. protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
  691. super();
  692. this.condition = condition;
  693. this.value = value;
  694. this.secondValue = secondValue;
  695. this.typeHandler = typeHandler;
  696. this.betweenValue = true;
  697. }
  698. protected Criterion(String condition, Object value, Object secondValue) {
  699. this(condition, value, secondValue, null);
  700. }
  701. }
  702. /**
  703. * This class was generated by MyBatis Generator.
  704. * This class corresponds to the database table jpush_easemob_account
  705. *
  706. * @mbg.generated do_not_delete_during_merge Mon Dec 18 19:12:58 CST 2017
  707. */
  708. public static class Criteria extends GeneratedCriteria {
  709. protected Criteria() {
  710. super();
  711. }
  712. }
  713. }