BranchOfficeInfoExample.java 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801
  1. package com.goafanti.common.model;
  2. import java.util.ArrayList;
  3. import java.util.List;
  4. public class BranchOfficeInfoExample {
  5. /**
  6. * This field was generated by MyBatis Generator. This field corresponds to the database table branch_office_info
  7. * @mbg.generated Tue Aug 22 09:20:20 CST 2017
  8. */
  9. protected String orderByClause;
  10. /**
  11. * This field was generated by MyBatis Generator. This field corresponds to the database table branch_office_info
  12. * @mbg.generated Tue Aug 22 09:20:20 CST 2017
  13. */
  14. protected boolean distinct;
  15. /**
  16. * This field was generated by MyBatis Generator. This field corresponds to the database table branch_office_info
  17. * @mbg.generated Tue Aug 22 09:20:20 CST 2017
  18. */
  19. protected List<Criteria> oredCriteria;
  20. /**
  21. * This method was generated by MyBatis Generator. This method corresponds to the database table branch_office_info
  22. * @mbg.generated Tue Aug 22 09:20:20 CST 2017
  23. */
  24. public BranchOfficeInfoExample() {
  25. oredCriteria = new ArrayList<Criteria>();
  26. }
  27. /**
  28. * This method was generated by MyBatis Generator. This method corresponds to the database table branch_office_info
  29. * @mbg.generated Tue Aug 22 09:20:20 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 branch_office_info
  36. * @mbg.generated Tue Aug 22 09:20:20 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 branch_office_info
  43. * @mbg.generated Tue Aug 22 09:20:20 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 branch_office_info
  50. * @mbg.generated Tue Aug 22 09:20:20 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 branch_office_info
  57. * @mbg.generated Tue Aug 22 09:20:20 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 branch_office_info
  64. * @mbg.generated Tue Aug 22 09:20:20 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 branch_office_info
  71. * @mbg.generated Tue Aug 22 09:20:20 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 branch_office_info
  80. * @mbg.generated Tue Aug 22 09:20:20 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 branch_office_info
  91. * @mbg.generated Tue Aug 22 09:20:20 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 branch_office_info
  99. * @mbg.generated Tue Aug 22 09:20:20 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 branch_office_info
  108. * @mbg.generated Tue Aug 22 09:20:20 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, String property) {
  132. if (value == null) {
  133. throw new RuntimeException("Value for " + property + " cannot be null");
  134. }
  135. criteria.add(new Criterion(condition, value));
  136. }
  137. protected void addCriterion(String condition, Object value1, Object value2, String property) {
  138. if (value1 == null || value2 == null) {
  139. throw new RuntimeException("Between values for " + property + " cannot be null");
  140. }
  141. criteria.add(new Criterion(condition, value1, value2));
  142. }
  143. public Criteria andIdIsNull() {
  144. addCriterion("id is null");
  145. return (Criteria) this;
  146. }
  147. public Criteria andIdIsNotNull() {
  148. addCriterion("id is not null");
  149. return (Criteria) this;
  150. }
  151. public Criteria andIdEqualTo(Integer value) {
  152. addCriterion("id =", value, "id");
  153. return (Criteria) this;
  154. }
  155. public Criteria andIdNotEqualTo(Integer value) {
  156. addCriterion("id <>", value, "id");
  157. return (Criteria) this;
  158. }
  159. public Criteria andIdGreaterThan(Integer value) {
  160. addCriterion("id >", value, "id");
  161. return (Criteria) this;
  162. }
  163. public Criteria andIdGreaterThanOrEqualTo(Integer value) {
  164. addCriterion("id >=", value, "id");
  165. return (Criteria) this;
  166. }
  167. public Criteria andIdLessThan(Integer value) {
  168. addCriterion("id <", value, "id");
  169. return (Criteria) this;
  170. }
  171. public Criteria andIdLessThanOrEqualTo(Integer value) {
  172. addCriterion("id <=", value, "id");
  173. return (Criteria) this;
  174. }
  175. public Criteria andIdIn(List<Integer> values) {
  176. addCriterion("id in", values, "id");
  177. return (Criteria) this;
  178. }
  179. public Criteria andIdNotIn(List<Integer> values) {
  180. addCriterion("id not in", values, "id");
  181. return (Criteria) this;
  182. }
  183. public Criteria andIdBetween(Integer value1, Integer value2) {
  184. addCriterion("id between", value1, value2, "id");
  185. return (Criteria) this;
  186. }
  187. public Criteria andIdNotBetween(Integer value1, Integer value2) {
  188. addCriterion("id not between", value1, value2, "id");
  189. return (Criteria) this;
  190. }
  191. public Criteria andNameIsNull() {
  192. addCriterion("name is null");
  193. return (Criteria) this;
  194. }
  195. public Criteria andNameIsNotNull() {
  196. addCriterion("name is not null");
  197. return (Criteria) this;
  198. }
  199. public Criteria andNameEqualTo(String value) {
  200. addCriterion("name =", value, "name");
  201. return (Criteria) this;
  202. }
  203. public Criteria andNameNotEqualTo(String value) {
  204. addCriterion("name <>", value, "name");
  205. return (Criteria) this;
  206. }
  207. public Criteria andNameGreaterThan(String value) {
  208. addCriterion("name >", value, "name");
  209. return (Criteria) this;
  210. }
  211. public Criteria andNameGreaterThanOrEqualTo(String value) {
  212. addCriterion("name >=", value, "name");
  213. return (Criteria) this;
  214. }
  215. public Criteria andNameLessThan(String value) {
  216. addCriterion("name <", value, "name");
  217. return (Criteria) this;
  218. }
  219. public Criteria andNameLessThanOrEqualTo(String value) {
  220. addCriterion("name <=", value, "name");
  221. return (Criteria) this;
  222. }
  223. public Criteria andNameLike(String value) {
  224. addCriterion("name like", value, "name");
  225. return (Criteria) this;
  226. }
  227. public Criteria andNameNotLike(String value) {
  228. addCriterion("name not like", value, "name");
  229. return (Criteria) this;
  230. }
  231. public Criteria andNameIn(List<String> values) {
  232. addCriterion("name in", values, "name");
  233. return (Criteria) this;
  234. }
  235. public Criteria andNameNotIn(List<String> values) {
  236. addCriterion("name not in", values, "name");
  237. return (Criteria) this;
  238. }
  239. public Criteria andNameBetween(String value1, String value2) {
  240. addCriterion("name between", value1, value2, "name");
  241. return (Criteria) this;
  242. }
  243. public Criteria andNameNotBetween(String value1, String value2) {
  244. addCriterion("name not between", value1, value2, "name");
  245. return (Criteria) this;
  246. }
  247. public Criteria andWebsiteIsNull() {
  248. addCriterion("website is null");
  249. return (Criteria) this;
  250. }
  251. public Criteria andWebsiteIsNotNull() {
  252. addCriterion("website is not null");
  253. return (Criteria) this;
  254. }
  255. public Criteria andWebsiteEqualTo(String value) {
  256. addCriterion("website =", value, "website");
  257. return (Criteria) this;
  258. }
  259. public Criteria andWebsiteNotEqualTo(String value) {
  260. addCriterion("website <>", value, "website");
  261. return (Criteria) this;
  262. }
  263. public Criteria andWebsiteGreaterThan(String value) {
  264. addCriterion("website >", value, "website");
  265. return (Criteria) this;
  266. }
  267. public Criteria andWebsiteGreaterThanOrEqualTo(String value) {
  268. addCriterion("website >=", value, "website");
  269. return (Criteria) this;
  270. }
  271. public Criteria andWebsiteLessThan(String value) {
  272. addCriterion("website <", value, "website");
  273. return (Criteria) this;
  274. }
  275. public Criteria andWebsiteLessThanOrEqualTo(String value) {
  276. addCriterion("website <=", value, "website");
  277. return (Criteria) this;
  278. }
  279. public Criteria andWebsiteLike(String value) {
  280. addCriterion("website like", value, "website");
  281. return (Criteria) this;
  282. }
  283. public Criteria andWebsiteNotLike(String value) {
  284. addCriterion("website not like", value, "website");
  285. return (Criteria) this;
  286. }
  287. public Criteria andWebsiteIn(List<String> values) {
  288. addCriterion("website in", values, "website");
  289. return (Criteria) this;
  290. }
  291. public Criteria andWebsiteNotIn(List<String> values) {
  292. addCriterion("website not in", values, "website");
  293. return (Criteria) this;
  294. }
  295. public Criteria andWebsiteBetween(String value1, String value2) {
  296. addCriterion("website between", value1, value2, "website");
  297. return (Criteria) this;
  298. }
  299. public Criteria andWebsiteNotBetween(String value1, String value2) {
  300. addCriterion("website not between", value1, value2, "website");
  301. return (Criteria) this;
  302. }
  303. public Criteria andContactNumberIsNull() {
  304. addCriterion("contact_number is null");
  305. return (Criteria) this;
  306. }
  307. public Criteria andContactNumberIsNotNull() {
  308. addCriterion("contact_number is not null");
  309. return (Criteria) this;
  310. }
  311. public Criteria andContactNumberEqualTo(String value) {
  312. addCriterion("contact_number =", value, "contactNumber");
  313. return (Criteria) this;
  314. }
  315. public Criteria andContactNumberNotEqualTo(String value) {
  316. addCriterion("contact_number <>", value, "contactNumber");
  317. return (Criteria) this;
  318. }
  319. public Criteria andContactNumberGreaterThan(String value) {
  320. addCriterion("contact_number >", value, "contactNumber");
  321. return (Criteria) this;
  322. }
  323. public Criteria andContactNumberGreaterThanOrEqualTo(String value) {
  324. addCriterion("contact_number >=", value, "contactNumber");
  325. return (Criteria) this;
  326. }
  327. public Criteria andContactNumberLessThan(String value) {
  328. addCriterion("contact_number <", value, "contactNumber");
  329. return (Criteria) this;
  330. }
  331. public Criteria andContactNumberLessThanOrEqualTo(String value) {
  332. addCriterion("contact_number <=", value, "contactNumber");
  333. return (Criteria) this;
  334. }
  335. public Criteria andContactNumberLike(String value) {
  336. addCriterion("contact_number like", value, "contactNumber");
  337. return (Criteria) this;
  338. }
  339. public Criteria andContactNumberNotLike(String value) {
  340. addCriterion("contact_number not like", value, "contactNumber");
  341. return (Criteria) this;
  342. }
  343. public Criteria andContactNumberIn(List<String> values) {
  344. addCriterion("contact_number in", values, "contactNumber");
  345. return (Criteria) this;
  346. }
  347. public Criteria andContactNumberNotIn(List<String> values) {
  348. addCriterion("contact_number not in", values, "contactNumber");
  349. return (Criteria) this;
  350. }
  351. public Criteria andContactNumberBetween(String value1, String value2) {
  352. addCriterion("contact_number between", value1, value2, "contactNumber");
  353. return (Criteria) this;
  354. }
  355. public Criteria andContactNumberNotBetween(String value1, String value2) {
  356. addCriterion("contact_number not between", value1, value2, "contactNumber");
  357. return (Criteria) this;
  358. }
  359. public Criteria andContactAddressIsNull() {
  360. addCriterion("contact_address is null");
  361. return (Criteria) this;
  362. }
  363. public Criteria andContactAddressIsNotNull() {
  364. addCriterion("contact_address is not null");
  365. return (Criteria) this;
  366. }
  367. public Criteria andContactAddressEqualTo(String value) {
  368. addCriterion("contact_address =", value, "contactAddress");
  369. return (Criteria) this;
  370. }
  371. public Criteria andContactAddressNotEqualTo(String value) {
  372. addCriterion("contact_address <>", value, "contactAddress");
  373. return (Criteria) this;
  374. }
  375. public Criteria andContactAddressGreaterThan(String value) {
  376. addCriterion("contact_address >", value, "contactAddress");
  377. return (Criteria) this;
  378. }
  379. public Criteria andContactAddressGreaterThanOrEqualTo(String value) {
  380. addCriterion("contact_address >=", value, "contactAddress");
  381. return (Criteria) this;
  382. }
  383. public Criteria andContactAddressLessThan(String value) {
  384. addCriterion("contact_address <", value, "contactAddress");
  385. return (Criteria) this;
  386. }
  387. public Criteria andContactAddressLessThanOrEqualTo(String value) {
  388. addCriterion("contact_address <=", value, "contactAddress");
  389. return (Criteria) this;
  390. }
  391. public Criteria andContactAddressLike(String value) {
  392. addCriterion("contact_address like", value, "contactAddress");
  393. return (Criteria) this;
  394. }
  395. public Criteria andContactAddressNotLike(String value) {
  396. addCriterion("contact_address not like", value, "contactAddress");
  397. return (Criteria) this;
  398. }
  399. public Criteria andContactAddressIn(List<String> values) {
  400. addCriterion("contact_address in", values, "contactAddress");
  401. return (Criteria) this;
  402. }
  403. public Criteria andContactAddressNotIn(List<String> values) {
  404. addCriterion("contact_address not in", values, "contactAddress");
  405. return (Criteria) this;
  406. }
  407. public Criteria andContactAddressBetween(String value1, String value2) {
  408. addCriterion("contact_address between", value1, value2, "contactAddress");
  409. return (Criteria) this;
  410. }
  411. public Criteria andContactAddressNotBetween(String value1, String value2) {
  412. addCriterion("contact_address not between", value1, value2, "contactAddress");
  413. return (Criteria) this;
  414. }
  415. public Criteria andLogoImgIsNull() {
  416. addCriterion("logo_img is null");
  417. return (Criteria) this;
  418. }
  419. public Criteria andLogoImgIsNotNull() {
  420. addCriterion("logo_img is not null");
  421. return (Criteria) this;
  422. }
  423. public Criteria andLogoImgEqualTo(String value) {
  424. addCriterion("logo_img =", value, "logoImg");
  425. return (Criteria) this;
  426. }
  427. public Criteria andLogoImgNotEqualTo(String value) {
  428. addCriterion("logo_img <>", value, "logoImg");
  429. return (Criteria) this;
  430. }
  431. public Criteria andLogoImgGreaterThan(String value) {
  432. addCriterion("logo_img >", value, "logoImg");
  433. return (Criteria) this;
  434. }
  435. public Criteria andLogoImgGreaterThanOrEqualTo(String value) {
  436. addCriterion("logo_img >=", value, "logoImg");
  437. return (Criteria) this;
  438. }
  439. public Criteria andLogoImgLessThan(String value) {
  440. addCriterion("logo_img <", value, "logoImg");
  441. return (Criteria) this;
  442. }
  443. public Criteria andLogoImgLessThanOrEqualTo(String value) {
  444. addCriterion("logo_img <=", value, "logoImg");
  445. return (Criteria) this;
  446. }
  447. public Criteria andLogoImgLike(String value) {
  448. addCriterion("logo_img like", value, "logoImg");
  449. return (Criteria) this;
  450. }
  451. public Criteria andLogoImgNotLike(String value) {
  452. addCriterion("logo_img not like", value, "logoImg");
  453. return (Criteria) this;
  454. }
  455. public Criteria andLogoImgIn(List<String> values) {
  456. addCriterion("logo_img in", values, "logoImg");
  457. return (Criteria) this;
  458. }
  459. public Criteria andLogoImgNotIn(List<String> values) {
  460. addCriterion("logo_img not in", values, "logoImg");
  461. return (Criteria) this;
  462. }
  463. public Criteria andLogoImgBetween(String value1, String value2) {
  464. addCriterion("logo_img between", value1, value2, "logoImg");
  465. return (Criteria) this;
  466. }
  467. public Criteria andLogoImgNotBetween(String value1, String value2) {
  468. addCriterion("logo_img not between", value1, value2, "logoImg");
  469. return (Criteria) this;
  470. }
  471. public Criteria andQrImgIsNull() {
  472. addCriterion("qr_img is null");
  473. return (Criteria) this;
  474. }
  475. public Criteria andQrImgIsNotNull() {
  476. addCriterion("qr_img is not null");
  477. return (Criteria) this;
  478. }
  479. public Criteria andQrImgEqualTo(String value) {
  480. addCriterion("qr_img =", value, "qrImg");
  481. return (Criteria) this;
  482. }
  483. public Criteria andQrImgNotEqualTo(String value) {
  484. addCriterion("qr_img <>", value, "qrImg");
  485. return (Criteria) this;
  486. }
  487. public Criteria andQrImgGreaterThan(String value) {
  488. addCriterion("qr_img >", value, "qrImg");
  489. return (Criteria) this;
  490. }
  491. public Criteria andQrImgGreaterThanOrEqualTo(String value) {
  492. addCriterion("qr_img >=", value, "qrImg");
  493. return (Criteria) this;
  494. }
  495. public Criteria andQrImgLessThan(String value) {
  496. addCriterion("qr_img <", value, "qrImg");
  497. return (Criteria) this;
  498. }
  499. public Criteria andQrImgLessThanOrEqualTo(String value) {
  500. addCriterion("qr_img <=", value, "qrImg");
  501. return (Criteria) this;
  502. }
  503. public Criteria andQrImgLike(String value) {
  504. addCriterion("qr_img like", value, "qrImg");
  505. return (Criteria) this;
  506. }
  507. public Criteria andQrImgNotLike(String value) {
  508. addCriterion("qr_img not like", value, "qrImg");
  509. return (Criteria) this;
  510. }
  511. public Criteria andQrImgIn(List<String> values) {
  512. addCriterion("qr_img in", values, "qrImg");
  513. return (Criteria) this;
  514. }
  515. public Criteria andQrImgNotIn(List<String> values) {
  516. addCriterion("qr_img not in", values, "qrImg");
  517. return (Criteria) this;
  518. }
  519. public Criteria andQrImgBetween(String value1, String value2) {
  520. addCriterion("qr_img between", value1, value2, "qrImg");
  521. return (Criteria) this;
  522. }
  523. public Criteria andQrImgNotBetween(String value1, String value2) {
  524. addCriterion("qr_img not between", value1, value2, "qrImg");
  525. return (Criteria) this;
  526. }
  527. public Criteria andProvinceIdIsNull() {
  528. addCriterion("province_id is null");
  529. return (Criteria) this;
  530. }
  531. public Criteria andProvinceIdIsNotNull() {
  532. addCriterion("province_id is not null");
  533. return (Criteria) this;
  534. }
  535. public Criteria andProvinceIdEqualTo(Integer value) {
  536. addCriterion("province_id =", value, "provinceId");
  537. return (Criteria) this;
  538. }
  539. public Criteria andProvinceIdNotEqualTo(Integer value) {
  540. addCriterion("province_id <>", value, "provinceId");
  541. return (Criteria) this;
  542. }
  543. public Criteria andProvinceIdGreaterThan(Integer value) {
  544. addCriterion("province_id >", value, "provinceId");
  545. return (Criteria) this;
  546. }
  547. public Criteria andProvinceIdGreaterThanOrEqualTo(Integer value) {
  548. addCriterion("province_id >=", value, "provinceId");
  549. return (Criteria) this;
  550. }
  551. public Criteria andProvinceIdLessThan(Integer value) {
  552. addCriterion("province_id <", value, "provinceId");
  553. return (Criteria) this;
  554. }
  555. public Criteria andProvinceIdLessThanOrEqualTo(Integer value) {
  556. addCriterion("province_id <=", value, "provinceId");
  557. return (Criteria) this;
  558. }
  559. public Criteria andProvinceIdIn(List<Integer> values) {
  560. addCriterion("province_id in", values, "provinceId");
  561. return (Criteria) this;
  562. }
  563. public Criteria andProvinceIdNotIn(List<Integer> values) {
  564. addCriterion("province_id not in", values, "provinceId");
  565. return (Criteria) this;
  566. }
  567. public Criteria andProvinceIdBetween(Integer value1, Integer value2) {
  568. addCriterion("province_id between", value1, value2, "provinceId");
  569. return (Criteria) this;
  570. }
  571. public Criteria andProvinceIdNotBetween(Integer value1, Integer value2) {
  572. addCriterion("province_id not between", value1, value2, "provinceId");
  573. return (Criteria) this;
  574. }
  575. }
  576. /**
  577. * This class was generated by MyBatis Generator. This class corresponds to the database table branch_office_info
  578. * @mbg.generated Tue Aug 22 09:20:20 CST 2017
  579. */
  580. public static class Criterion {
  581. private String condition;
  582. private Object value;
  583. private Object secondValue;
  584. private boolean noValue;
  585. private boolean singleValue;
  586. private boolean betweenValue;
  587. private boolean listValue;
  588. private String typeHandler;
  589. public String getCondition() {
  590. return condition;
  591. }
  592. public Object getValue() {
  593. return value;
  594. }
  595. public Object getSecondValue() {
  596. return secondValue;
  597. }
  598. public boolean isNoValue() {
  599. return noValue;
  600. }
  601. public boolean isSingleValue() {
  602. return singleValue;
  603. }
  604. public boolean isBetweenValue() {
  605. return betweenValue;
  606. }
  607. public boolean isListValue() {
  608. return listValue;
  609. }
  610. public String getTypeHandler() {
  611. return typeHandler;
  612. }
  613. protected Criterion(String condition) {
  614. super();
  615. this.condition = condition;
  616. this.typeHandler = null;
  617. this.noValue = true;
  618. }
  619. protected Criterion(String condition, Object value, String typeHandler) {
  620. super();
  621. this.condition = condition;
  622. this.value = value;
  623. this.typeHandler = typeHandler;
  624. if (value instanceof List<?>) {
  625. this.listValue = true;
  626. } else {
  627. this.singleValue = true;
  628. }
  629. }
  630. protected Criterion(String condition, Object value) {
  631. this(condition, value, null);
  632. }
  633. protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
  634. super();
  635. this.condition = condition;
  636. this.value = value;
  637. this.secondValue = secondValue;
  638. this.typeHandler = typeHandler;
  639. this.betweenValue = true;
  640. }
  641. protected Criterion(String condition, Object value, Object secondValue) {
  642. this(condition, value, secondValue, null);
  643. }
  644. }
  645. /**
  646. * This class was generated by MyBatis Generator.
  647. * This class corresponds to the database table branch_office_info
  648. *
  649. * @mbg.generated do_not_delete_during_merge Tue Aug 22 09:15:13 CST 2017
  650. */
  651. public static class Criteria extends GeneratedCriteria {
  652. protected Criteria() {
  653. super();
  654. }
  655. }
  656. }