OutsourceOrganizationExample.java 29 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052
  1. package com.goafanti.common.model;
  2. import java.util.ArrayList;
  3. import java.util.Date;
  4. import java.util.List;
  5. public class OutsourceOrganizationExample {
  6. /**
  7. * This field was generated by MyBatis Generator. This field corresponds to the database table outsource_organization
  8. * @mbg.generated Fri Jun 21 10:02:00 CST 2019
  9. */
  10. protected String orderByClause;
  11. /**
  12. * This field was generated by MyBatis Generator. This field corresponds to the database table outsource_organization
  13. * @mbg.generated Fri Jun 21 10:02:00 CST 2019
  14. */
  15. protected boolean distinct;
  16. /**
  17. * This field was generated by MyBatis Generator. This field corresponds to the database table outsource_organization
  18. * @mbg.generated Fri Jun 21 10:02:00 CST 2019
  19. */
  20. protected List<Criteria> oredCriteria;
  21. /**
  22. * This method was generated by MyBatis Generator. This method corresponds to the database table outsource_organization
  23. * @mbg.generated Fri Jun 21 10:02:00 CST 2019
  24. */
  25. public OutsourceOrganizationExample() {
  26. oredCriteria = new ArrayList<Criteria>();
  27. }
  28. /**
  29. * This method was generated by MyBatis Generator. This method corresponds to the database table outsource_organization
  30. * @mbg.generated Fri Jun 21 10:02:00 CST 2019
  31. */
  32. public void setOrderByClause(String orderByClause) {
  33. this.orderByClause = orderByClause;
  34. }
  35. /**
  36. * This method was generated by MyBatis Generator. This method corresponds to the database table outsource_organization
  37. * @mbg.generated Fri Jun 21 10:02:00 CST 2019
  38. */
  39. public String getOrderByClause() {
  40. return orderByClause;
  41. }
  42. /**
  43. * This method was generated by MyBatis Generator. This method corresponds to the database table outsource_organization
  44. * @mbg.generated Fri Jun 21 10:02:00 CST 2019
  45. */
  46. public void setDistinct(boolean distinct) {
  47. this.distinct = distinct;
  48. }
  49. /**
  50. * This method was generated by MyBatis Generator. This method corresponds to the database table outsource_organization
  51. * @mbg.generated Fri Jun 21 10:02:00 CST 2019
  52. */
  53. public boolean isDistinct() {
  54. return distinct;
  55. }
  56. /**
  57. * This method was generated by MyBatis Generator. This method corresponds to the database table outsource_organization
  58. * @mbg.generated Fri Jun 21 10:02:00 CST 2019
  59. */
  60. public List<Criteria> getOredCriteria() {
  61. return oredCriteria;
  62. }
  63. /**
  64. * This method was generated by MyBatis Generator. This method corresponds to the database table outsource_organization
  65. * @mbg.generated Fri Jun 21 10:02:00 CST 2019
  66. */
  67. public void or(Criteria criteria) {
  68. oredCriteria.add(criteria);
  69. }
  70. /**
  71. * This method was generated by MyBatis Generator. This method corresponds to the database table outsource_organization
  72. * @mbg.generated Fri Jun 21 10:02:00 CST 2019
  73. */
  74. public Criteria or() {
  75. Criteria criteria = createCriteriaInternal();
  76. oredCriteria.add(criteria);
  77. return criteria;
  78. }
  79. /**
  80. * This method was generated by MyBatis Generator. This method corresponds to the database table outsource_organization
  81. * @mbg.generated Fri Jun 21 10:02:00 CST 2019
  82. */
  83. public Criteria createCriteria() {
  84. Criteria criteria = createCriteriaInternal();
  85. if (oredCriteria.size() == 0) {
  86. oredCriteria.add(criteria);
  87. }
  88. return criteria;
  89. }
  90. /**
  91. * This method was generated by MyBatis Generator. This method corresponds to the database table outsource_organization
  92. * @mbg.generated Fri Jun 21 10:02:00 CST 2019
  93. */
  94. protected Criteria createCriteriaInternal() {
  95. Criteria criteria = new Criteria();
  96. return criteria;
  97. }
  98. /**
  99. * This method was generated by MyBatis Generator. This method corresponds to the database table outsource_organization
  100. * @mbg.generated Fri Jun 21 10:02:00 CST 2019
  101. */
  102. public void clear() {
  103. oredCriteria.clear();
  104. orderByClause = null;
  105. distinct = false;
  106. }
  107. /**
  108. * This class was generated by MyBatis Generator. This class corresponds to the database table outsource_organization
  109. * @mbg.generated Fri Jun 21 10:02:00 CST 2019
  110. */
  111. protected abstract static class GeneratedCriteria {
  112. protected List<Criterion> criteria;
  113. protected GeneratedCriteria() {
  114. super();
  115. criteria = new ArrayList<Criterion>();
  116. }
  117. public boolean isValid() {
  118. return criteria.size() > 0;
  119. }
  120. public List<Criterion> getAllCriteria() {
  121. return criteria;
  122. }
  123. public List<Criterion> getCriteria() {
  124. return criteria;
  125. }
  126. protected void addCriterion(String condition) {
  127. if (condition == null) {
  128. throw new RuntimeException("Value for condition cannot be null");
  129. }
  130. criteria.add(new Criterion(condition));
  131. }
  132. protected void addCriterion(String condition, Object value, String property) {
  133. if (value == null) {
  134. throw new RuntimeException("Value for " + property + " cannot be null");
  135. }
  136. criteria.add(new Criterion(condition, value));
  137. }
  138. protected void addCriterion(String condition, Object value1, Object value2, String property) {
  139. if (value1 == null || value2 == null) {
  140. throw new RuntimeException("Between values for " + property + " cannot be null");
  141. }
  142. criteria.add(new Criterion(condition, value1, value2));
  143. }
  144. public Criteria andIdIsNull() {
  145. addCriterion("id is null");
  146. return (Criteria) this;
  147. }
  148. public Criteria andIdIsNotNull() {
  149. addCriterion("id is not null");
  150. return (Criteria) this;
  151. }
  152. public Criteria andIdEqualTo(Integer value) {
  153. addCriterion("id =", value, "id");
  154. return (Criteria) this;
  155. }
  156. public Criteria andIdNotEqualTo(Integer value) {
  157. addCriterion("id <>", value, "id");
  158. return (Criteria) this;
  159. }
  160. public Criteria andIdGreaterThan(Integer value) {
  161. addCriterion("id >", value, "id");
  162. return (Criteria) this;
  163. }
  164. public Criteria andIdGreaterThanOrEqualTo(Integer value) {
  165. addCriterion("id >=", value, "id");
  166. return (Criteria) this;
  167. }
  168. public Criteria andIdLessThan(Integer value) {
  169. addCriterion("id <", value, "id");
  170. return (Criteria) this;
  171. }
  172. public Criteria andIdLessThanOrEqualTo(Integer value) {
  173. addCriterion("id <=", value, "id");
  174. return (Criteria) this;
  175. }
  176. public Criteria andIdIn(List<Integer> values) {
  177. addCriterion("id in", values, "id");
  178. return (Criteria) this;
  179. }
  180. public Criteria andIdNotIn(List<Integer> values) {
  181. addCriterion("id not in", values, "id");
  182. return (Criteria) this;
  183. }
  184. public Criteria andIdBetween(Integer value1, Integer value2) {
  185. addCriterion("id between", value1, value2, "id");
  186. return (Criteria) this;
  187. }
  188. public Criteria andIdNotBetween(Integer value1, Integer value2) {
  189. addCriterion("id not between", value1, value2, "id");
  190. return (Criteria) this;
  191. }
  192. public Criteria andNameIsNull() {
  193. addCriterion("name is null");
  194. return (Criteria) this;
  195. }
  196. public Criteria andNameIsNotNull() {
  197. addCriterion("name is not null");
  198. return (Criteria) this;
  199. }
  200. public Criteria andNameEqualTo(String value) {
  201. addCriterion("name =", value, "name");
  202. return (Criteria) this;
  203. }
  204. public Criteria andNameNotEqualTo(String value) {
  205. addCriterion("name <>", value, "name");
  206. return (Criteria) this;
  207. }
  208. public Criteria andNameGreaterThan(String value) {
  209. addCriterion("name >", value, "name");
  210. return (Criteria) this;
  211. }
  212. public Criteria andNameGreaterThanOrEqualTo(String value) {
  213. addCriterion("name >=", value, "name");
  214. return (Criteria) this;
  215. }
  216. public Criteria andNameLessThan(String value) {
  217. addCriterion("name <", value, "name");
  218. return (Criteria) this;
  219. }
  220. public Criteria andNameLessThanOrEqualTo(String value) {
  221. addCriterion("name <=", value, "name");
  222. return (Criteria) this;
  223. }
  224. public Criteria andNameLike(String value) {
  225. addCriterion("name like", value, "name");
  226. return (Criteria) this;
  227. }
  228. public Criteria andNameNotLike(String value) {
  229. addCriterion("name not like", value, "name");
  230. return (Criteria) this;
  231. }
  232. public Criteria andNameIn(List<String> values) {
  233. addCriterion("name in", values, "name");
  234. return (Criteria) this;
  235. }
  236. public Criteria andNameNotIn(List<String> values) {
  237. addCriterion("name not in", values, "name");
  238. return (Criteria) this;
  239. }
  240. public Criteria andNameBetween(String value1, String value2) {
  241. addCriterion("name between", value1, value2, "name");
  242. return (Criteria) this;
  243. }
  244. public Criteria andNameNotBetween(String value1, String value2) {
  245. addCriterion("name not between", value1, value2, "name");
  246. return (Criteria) this;
  247. }
  248. public Criteria andContactsIsNull() {
  249. addCriterion("contacts is null");
  250. return (Criteria) this;
  251. }
  252. public Criteria andContactsIsNotNull() {
  253. addCriterion("contacts is not null");
  254. return (Criteria) this;
  255. }
  256. public Criteria andContactsEqualTo(String value) {
  257. addCriterion("contacts =", value, "contacts");
  258. return (Criteria) this;
  259. }
  260. public Criteria andContactsNotEqualTo(String value) {
  261. addCriterion("contacts <>", value, "contacts");
  262. return (Criteria) this;
  263. }
  264. public Criteria andContactsGreaterThan(String value) {
  265. addCriterion("contacts >", value, "contacts");
  266. return (Criteria) this;
  267. }
  268. public Criteria andContactsGreaterThanOrEqualTo(String value) {
  269. addCriterion("contacts >=", value, "contacts");
  270. return (Criteria) this;
  271. }
  272. public Criteria andContactsLessThan(String value) {
  273. addCriterion("contacts <", value, "contacts");
  274. return (Criteria) this;
  275. }
  276. public Criteria andContactsLessThanOrEqualTo(String value) {
  277. addCriterion("contacts <=", value, "contacts");
  278. return (Criteria) this;
  279. }
  280. public Criteria andContactsLike(String value) {
  281. addCriterion("contacts like", value, "contacts");
  282. return (Criteria) this;
  283. }
  284. public Criteria andContactsNotLike(String value) {
  285. addCriterion("contacts not like", value, "contacts");
  286. return (Criteria) this;
  287. }
  288. public Criteria andContactsIn(List<String> values) {
  289. addCriterion("contacts in", values, "contacts");
  290. return (Criteria) this;
  291. }
  292. public Criteria andContactsNotIn(List<String> values) {
  293. addCriterion("contacts not in", values, "contacts");
  294. return (Criteria) this;
  295. }
  296. public Criteria andContactsBetween(String value1, String value2) {
  297. addCriterion("contacts between", value1, value2, "contacts");
  298. return (Criteria) this;
  299. }
  300. public Criteria andContactsNotBetween(String value1, String value2) {
  301. addCriterion("contacts not between", value1, value2, "contacts");
  302. return (Criteria) this;
  303. }
  304. public Criteria andContactsMobileIsNull() {
  305. addCriterion("contacts_mobile is null");
  306. return (Criteria) this;
  307. }
  308. public Criteria andContactsMobileIsNotNull() {
  309. addCriterion("contacts_mobile is not null");
  310. return (Criteria) this;
  311. }
  312. public Criteria andContactsMobileEqualTo(String value) {
  313. addCriterion("contacts_mobile =", value, "contactsMobile");
  314. return (Criteria) this;
  315. }
  316. public Criteria andContactsMobileNotEqualTo(String value) {
  317. addCriterion("contacts_mobile <>", value, "contactsMobile");
  318. return (Criteria) this;
  319. }
  320. public Criteria andContactsMobileGreaterThan(String value) {
  321. addCriterion("contacts_mobile >", value, "contactsMobile");
  322. return (Criteria) this;
  323. }
  324. public Criteria andContactsMobileGreaterThanOrEqualTo(String value) {
  325. addCriterion("contacts_mobile >=", value, "contactsMobile");
  326. return (Criteria) this;
  327. }
  328. public Criteria andContactsMobileLessThan(String value) {
  329. addCriterion("contacts_mobile <", value, "contactsMobile");
  330. return (Criteria) this;
  331. }
  332. public Criteria andContactsMobileLessThanOrEqualTo(String value) {
  333. addCriterion("contacts_mobile <=", value, "contactsMobile");
  334. return (Criteria) this;
  335. }
  336. public Criteria andContactsMobileLike(String value) {
  337. addCriterion("contacts_mobile like", value, "contactsMobile");
  338. return (Criteria) this;
  339. }
  340. public Criteria andContactsMobileNotLike(String value) {
  341. addCriterion("contacts_mobile not like", value, "contactsMobile");
  342. return (Criteria) this;
  343. }
  344. public Criteria andContactsMobileIn(List<String> values) {
  345. addCriterion("contacts_mobile in", values, "contactsMobile");
  346. return (Criteria) this;
  347. }
  348. public Criteria andContactsMobileNotIn(List<String> values) {
  349. addCriterion("contacts_mobile not in", values, "contactsMobile");
  350. return (Criteria) this;
  351. }
  352. public Criteria andContactsMobileBetween(String value1, String value2) {
  353. addCriterion("contacts_mobile between", value1, value2, "contactsMobile");
  354. return (Criteria) this;
  355. }
  356. public Criteria andContactsMobileNotBetween(String value1, String value2) {
  357. addCriterion("contacts_mobile not between", value1, value2, "contactsMobile");
  358. return (Criteria) this;
  359. }
  360. public Criteria andProvinceIsNull() {
  361. addCriterion("province is null");
  362. return (Criteria) this;
  363. }
  364. public Criteria andProvinceIsNotNull() {
  365. addCriterion("province is not null");
  366. return (Criteria) this;
  367. }
  368. public Criteria andProvinceEqualTo(Integer value) {
  369. addCriterion("province =", value, "province");
  370. return (Criteria) this;
  371. }
  372. public Criteria andProvinceNotEqualTo(Integer value) {
  373. addCriterion("province <>", value, "province");
  374. return (Criteria) this;
  375. }
  376. public Criteria andProvinceGreaterThan(Integer value) {
  377. addCriterion("province >", value, "province");
  378. return (Criteria) this;
  379. }
  380. public Criteria andProvinceGreaterThanOrEqualTo(Integer value) {
  381. addCriterion("province >=", value, "province");
  382. return (Criteria) this;
  383. }
  384. public Criteria andProvinceLessThan(Integer value) {
  385. addCriterion("province <", value, "province");
  386. return (Criteria) this;
  387. }
  388. public Criteria andProvinceLessThanOrEqualTo(Integer value) {
  389. addCriterion("province <=", value, "province");
  390. return (Criteria) this;
  391. }
  392. public Criteria andProvinceIn(List<Integer> values) {
  393. addCriterion("province in", values, "province");
  394. return (Criteria) this;
  395. }
  396. public Criteria andProvinceNotIn(List<Integer> values) {
  397. addCriterion("province not in", values, "province");
  398. return (Criteria) this;
  399. }
  400. public Criteria andProvinceBetween(Integer value1, Integer value2) {
  401. addCriterion("province between", value1, value2, "province");
  402. return (Criteria) this;
  403. }
  404. public Criteria andProvinceNotBetween(Integer value1, Integer value2) {
  405. addCriterion("province not between", value1, value2, "province");
  406. return (Criteria) this;
  407. }
  408. public Criteria andCityIsNull() {
  409. addCriterion("city is null");
  410. return (Criteria) this;
  411. }
  412. public Criteria andCityIsNotNull() {
  413. addCriterion("city is not null");
  414. return (Criteria) this;
  415. }
  416. public Criteria andCityEqualTo(Integer value) {
  417. addCriterion("city =", value, "city");
  418. return (Criteria) this;
  419. }
  420. public Criteria andCityNotEqualTo(Integer value) {
  421. addCriterion("city <>", value, "city");
  422. return (Criteria) this;
  423. }
  424. public Criteria andCityGreaterThan(Integer value) {
  425. addCriterion("city >", value, "city");
  426. return (Criteria) this;
  427. }
  428. public Criteria andCityGreaterThanOrEqualTo(Integer value) {
  429. addCriterion("city >=", value, "city");
  430. return (Criteria) this;
  431. }
  432. public Criteria andCityLessThan(Integer value) {
  433. addCriterion("city <", value, "city");
  434. return (Criteria) this;
  435. }
  436. public Criteria andCityLessThanOrEqualTo(Integer value) {
  437. addCriterion("city <=", value, "city");
  438. return (Criteria) this;
  439. }
  440. public Criteria andCityIn(List<Integer> values) {
  441. addCriterion("city in", values, "city");
  442. return (Criteria) this;
  443. }
  444. public Criteria andCityNotIn(List<Integer> values) {
  445. addCriterion("city not in", values, "city");
  446. return (Criteria) this;
  447. }
  448. public Criteria andCityBetween(Integer value1, Integer value2) {
  449. addCriterion("city between", value1, value2, "city");
  450. return (Criteria) this;
  451. }
  452. public Criteria andCityNotBetween(Integer value1, Integer value2) {
  453. addCriterion("city not between", value1, value2, "city");
  454. return (Criteria) this;
  455. }
  456. public Criteria andAreaIsNull() {
  457. addCriterion("area is null");
  458. return (Criteria) this;
  459. }
  460. public Criteria andAreaIsNotNull() {
  461. addCriterion("area is not null");
  462. return (Criteria) this;
  463. }
  464. public Criteria andAreaEqualTo(Integer value) {
  465. addCriterion("area =", value, "area");
  466. return (Criteria) this;
  467. }
  468. public Criteria andAreaNotEqualTo(Integer value) {
  469. addCriterion("area <>", value, "area");
  470. return (Criteria) this;
  471. }
  472. public Criteria andAreaGreaterThan(Integer value) {
  473. addCriterion("area >", value, "area");
  474. return (Criteria) this;
  475. }
  476. public Criteria andAreaGreaterThanOrEqualTo(Integer value) {
  477. addCriterion("area >=", value, "area");
  478. return (Criteria) this;
  479. }
  480. public Criteria andAreaLessThan(Integer value) {
  481. addCriterion("area <", value, "area");
  482. return (Criteria) this;
  483. }
  484. public Criteria andAreaLessThanOrEqualTo(Integer value) {
  485. addCriterion("area <=", value, "area");
  486. return (Criteria) this;
  487. }
  488. public Criteria andAreaIn(List<Integer> values) {
  489. addCriterion("area in", values, "area");
  490. return (Criteria) this;
  491. }
  492. public Criteria andAreaNotIn(List<Integer> values) {
  493. addCriterion("area not in", values, "area");
  494. return (Criteria) this;
  495. }
  496. public Criteria andAreaBetween(Integer value1, Integer value2) {
  497. addCriterion("area between", value1, value2, "area");
  498. return (Criteria) this;
  499. }
  500. public Criteria andAreaNotBetween(Integer value1, Integer value2) {
  501. addCriterion("area not between", value1, value2, "area");
  502. return (Criteria) this;
  503. }
  504. public Criteria andAddressIsNull() {
  505. addCriterion("address is null");
  506. return (Criteria) this;
  507. }
  508. public Criteria andAddressIsNotNull() {
  509. addCriterion("address is not null");
  510. return (Criteria) this;
  511. }
  512. public Criteria andAddressEqualTo(String value) {
  513. addCriterion("address =", value, "address");
  514. return (Criteria) this;
  515. }
  516. public Criteria andAddressNotEqualTo(String value) {
  517. addCriterion("address <>", value, "address");
  518. return (Criteria) this;
  519. }
  520. public Criteria andAddressGreaterThan(String value) {
  521. addCriterion("address >", value, "address");
  522. return (Criteria) this;
  523. }
  524. public Criteria andAddressGreaterThanOrEqualTo(String value) {
  525. addCriterion("address >=", value, "address");
  526. return (Criteria) this;
  527. }
  528. public Criteria andAddressLessThan(String value) {
  529. addCriterion("address <", value, "address");
  530. return (Criteria) this;
  531. }
  532. public Criteria andAddressLessThanOrEqualTo(String value) {
  533. addCriterion("address <=", value, "address");
  534. return (Criteria) this;
  535. }
  536. public Criteria andAddressLike(String value) {
  537. addCriterion("address like", value, "address");
  538. return (Criteria) this;
  539. }
  540. public Criteria andAddressNotLike(String value) {
  541. addCriterion("address not like", value, "address");
  542. return (Criteria) this;
  543. }
  544. public Criteria andAddressIn(List<String> values) {
  545. addCriterion("address in", values, "address");
  546. return (Criteria) this;
  547. }
  548. public Criteria andAddressNotIn(List<String> values) {
  549. addCriterion("address not in", values, "address");
  550. return (Criteria) this;
  551. }
  552. public Criteria andAddressBetween(String value1, String value2) {
  553. addCriterion("address between", value1, value2, "address");
  554. return (Criteria) this;
  555. }
  556. public Criteria andAddressNotBetween(String value1, String value2) {
  557. addCriterion("address not between", value1, value2, "address");
  558. return (Criteria) this;
  559. }
  560. public Criteria andRemarksIsNull() {
  561. addCriterion("remarks is null");
  562. return (Criteria) this;
  563. }
  564. public Criteria andRemarksIsNotNull() {
  565. addCriterion("remarks is not null");
  566. return (Criteria) this;
  567. }
  568. public Criteria andRemarksEqualTo(String value) {
  569. addCriterion("remarks =", value, "remarks");
  570. return (Criteria) this;
  571. }
  572. public Criteria andRemarksNotEqualTo(String value) {
  573. addCriterion("remarks <>", value, "remarks");
  574. return (Criteria) this;
  575. }
  576. public Criteria andRemarksGreaterThan(String value) {
  577. addCriterion("remarks >", value, "remarks");
  578. return (Criteria) this;
  579. }
  580. public Criteria andRemarksGreaterThanOrEqualTo(String value) {
  581. addCriterion("remarks >=", value, "remarks");
  582. return (Criteria) this;
  583. }
  584. public Criteria andRemarksLessThan(String value) {
  585. addCriterion("remarks <", value, "remarks");
  586. return (Criteria) this;
  587. }
  588. public Criteria andRemarksLessThanOrEqualTo(String value) {
  589. addCriterion("remarks <=", value, "remarks");
  590. return (Criteria) this;
  591. }
  592. public Criteria andRemarksLike(String value) {
  593. addCriterion("remarks like", value, "remarks");
  594. return (Criteria) this;
  595. }
  596. public Criteria andRemarksNotLike(String value) {
  597. addCriterion("remarks not like", value, "remarks");
  598. return (Criteria) this;
  599. }
  600. public Criteria andRemarksIn(List<String> values) {
  601. addCriterion("remarks in", values, "remarks");
  602. return (Criteria) this;
  603. }
  604. public Criteria andRemarksNotIn(List<String> values) {
  605. addCriterion("remarks not in", values, "remarks");
  606. return (Criteria) this;
  607. }
  608. public Criteria andRemarksBetween(String value1, String value2) {
  609. addCriterion("remarks between", value1, value2, "remarks");
  610. return (Criteria) this;
  611. }
  612. public Criteria andRemarksNotBetween(String value1, String value2) {
  613. addCriterion("remarks not between", value1, value2, "remarks");
  614. return (Criteria) this;
  615. }
  616. public Criteria andCreateTimeIsNull() {
  617. addCriterion("create_time is null");
  618. return (Criteria) this;
  619. }
  620. public Criteria andCreateTimeIsNotNull() {
  621. addCriterion("create_time is not null");
  622. return (Criteria) this;
  623. }
  624. public Criteria andCreateTimeEqualTo(Date value) {
  625. addCriterion("create_time =", value, "createTime");
  626. return (Criteria) this;
  627. }
  628. public Criteria andCreateTimeNotEqualTo(Date value) {
  629. addCriterion("create_time <>", value, "createTime");
  630. return (Criteria) this;
  631. }
  632. public Criteria andCreateTimeGreaterThan(Date value) {
  633. addCriterion("create_time >", value, "createTime");
  634. return (Criteria) this;
  635. }
  636. public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) {
  637. addCriterion("create_time >=", value, "createTime");
  638. return (Criteria) this;
  639. }
  640. public Criteria andCreateTimeLessThan(Date value) {
  641. addCriterion("create_time <", value, "createTime");
  642. return (Criteria) this;
  643. }
  644. public Criteria andCreateTimeLessThanOrEqualTo(Date value) {
  645. addCriterion("create_time <=", value, "createTime");
  646. return (Criteria) this;
  647. }
  648. public Criteria andCreateTimeIn(List<Date> values) {
  649. addCriterion("create_time in", values, "createTime");
  650. return (Criteria) this;
  651. }
  652. public Criteria andCreateTimeNotIn(List<Date> values) {
  653. addCriterion("create_time not in", values, "createTime");
  654. return (Criteria) this;
  655. }
  656. public Criteria andCreateTimeBetween(Date value1, Date value2) {
  657. addCriterion("create_time between", value1, value2, "createTime");
  658. return (Criteria) this;
  659. }
  660. public Criteria andCreateTimeNotBetween(Date value1, Date value2) {
  661. addCriterion("create_time not between", value1, value2, "createTime");
  662. return (Criteria) this;
  663. }
  664. public Criteria andOrderNoIsNull() {
  665. addCriterion("order_no is null");
  666. return (Criteria) this;
  667. }
  668. public Criteria andOrderNoIsNotNull() {
  669. addCriterion("order_no is not null");
  670. return (Criteria) this;
  671. }
  672. public Criteria andOrderNoEqualTo(String value) {
  673. addCriterion("order_no =", value, "orderNo");
  674. return (Criteria) this;
  675. }
  676. public Criteria andOrderNoNotEqualTo(String value) {
  677. addCriterion("order_no <>", value, "orderNo");
  678. return (Criteria) this;
  679. }
  680. public Criteria andOrderNoGreaterThan(String value) {
  681. addCriterion("order_no >", value, "orderNo");
  682. return (Criteria) this;
  683. }
  684. public Criteria andOrderNoGreaterThanOrEqualTo(String value) {
  685. addCriterion("order_no >=", value, "orderNo");
  686. return (Criteria) this;
  687. }
  688. public Criteria andOrderNoLessThan(String value) {
  689. addCriterion("order_no <", value, "orderNo");
  690. return (Criteria) this;
  691. }
  692. public Criteria andOrderNoLessThanOrEqualTo(String value) {
  693. addCriterion("order_no <=", value, "orderNo");
  694. return (Criteria) this;
  695. }
  696. public Criteria andOrderNoLike(String value) {
  697. addCriterion("order_no like", value, "orderNo");
  698. return (Criteria) this;
  699. }
  700. public Criteria andOrderNoNotLike(String value) {
  701. addCriterion("order_no not like", value, "orderNo");
  702. return (Criteria) this;
  703. }
  704. public Criteria andOrderNoIn(List<String> values) {
  705. addCriterion("order_no in", values, "orderNo");
  706. return (Criteria) this;
  707. }
  708. public Criteria andOrderNoNotIn(List<String> values) {
  709. addCriterion("order_no not in", values, "orderNo");
  710. return (Criteria) this;
  711. }
  712. public Criteria andOrderNoBetween(String value1, String value2) {
  713. addCriterion("order_no between", value1, value2, "orderNo");
  714. return (Criteria) this;
  715. }
  716. public Criteria andOrderNoNotBetween(String value1, String value2) {
  717. addCriterion("order_no not between", value1, value2, "orderNo");
  718. return (Criteria) this;
  719. }
  720. public Criteria andTidIsNull() {
  721. addCriterion("tid is null");
  722. return (Criteria) this;
  723. }
  724. public Criteria andTidIsNotNull() {
  725. addCriterion("tid is not null");
  726. return (Criteria) this;
  727. }
  728. public Criteria andTidEqualTo(String value) {
  729. addCriterion("tid =", value, "tid");
  730. return (Criteria) this;
  731. }
  732. public Criteria andTidNotEqualTo(String value) {
  733. addCriterion("tid <>", value, "tid");
  734. return (Criteria) this;
  735. }
  736. public Criteria andTidGreaterThan(String value) {
  737. addCriterion("tid >", value, "tid");
  738. return (Criteria) this;
  739. }
  740. public Criteria andTidGreaterThanOrEqualTo(String value) {
  741. addCriterion("tid >=", value, "tid");
  742. return (Criteria) this;
  743. }
  744. public Criteria andTidLessThan(String value) {
  745. addCriterion("tid <", value, "tid");
  746. return (Criteria) this;
  747. }
  748. public Criteria andTidLessThanOrEqualTo(String value) {
  749. addCriterion("tid <=", value, "tid");
  750. return (Criteria) this;
  751. }
  752. public Criteria andTidLike(String value) {
  753. addCriterion("tid like", value, "tid");
  754. return (Criteria) this;
  755. }
  756. public Criteria andTidNotLike(String value) {
  757. addCriterion("tid not like", value, "tid");
  758. return (Criteria) this;
  759. }
  760. public Criteria andTidIn(List<String> values) {
  761. addCriterion("tid in", values, "tid");
  762. return (Criteria) this;
  763. }
  764. public Criteria andTidNotIn(List<String> values) {
  765. addCriterion("tid not in", values, "tid");
  766. return (Criteria) this;
  767. }
  768. public Criteria andTidBetween(String value1, String value2) {
  769. addCriterion("tid between", value1, value2, "tid");
  770. return (Criteria) this;
  771. }
  772. public Criteria andTidNotBetween(String value1, String value2) {
  773. addCriterion("tid not between", value1, value2, "tid");
  774. return (Criteria) this;
  775. }
  776. }
  777. /**
  778. * This class was generated by MyBatis Generator. This class corresponds to the database table outsource_organization
  779. * @mbg.generated Fri Jun 21 10:02:00 CST 2019
  780. */
  781. public static class Criterion {
  782. private String condition;
  783. private Object value;
  784. private Object secondValue;
  785. private boolean noValue;
  786. private boolean singleValue;
  787. private boolean betweenValue;
  788. private boolean listValue;
  789. private String typeHandler;
  790. public String getCondition() {
  791. return condition;
  792. }
  793. public Object getValue() {
  794. return value;
  795. }
  796. public Object getSecondValue() {
  797. return secondValue;
  798. }
  799. public boolean isNoValue() {
  800. return noValue;
  801. }
  802. public boolean isSingleValue() {
  803. return singleValue;
  804. }
  805. public boolean isBetweenValue() {
  806. return betweenValue;
  807. }
  808. public boolean isListValue() {
  809. return listValue;
  810. }
  811. public String getTypeHandler() {
  812. return typeHandler;
  813. }
  814. protected Criterion(String condition) {
  815. super();
  816. this.condition = condition;
  817. this.typeHandler = null;
  818. this.noValue = true;
  819. }
  820. protected Criterion(String condition, Object value, String typeHandler) {
  821. super();
  822. this.condition = condition;
  823. this.value = value;
  824. this.typeHandler = typeHandler;
  825. if (value instanceof List<?>) {
  826. this.listValue = true;
  827. } else {
  828. this.singleValue = true;
  829. }
  830. }
  831. protected Criterion(String condition, Object value) {
  832. this(condition, value, null);
  833. }
  834. protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
  835. super();
  836. this.condition = condition;
  837. this.value = value;
  838. this.secondValue = secondValue;
  839. this.typeHandler = typeHandler;
  840. this.betweenValue = true;
  841. }
  842. protected Criterion(String condition, Object value, Object secondValue) {
  843. this(condition, value, secondValue, null);
  844. }
  845. }
  846. /**
  847. * This class was generated by MyBatis Generator.
  848. * This class corresponds to the database table outsource_organization
  849. *
  850. * @mbg.generated do_not_delete_during_merge Mon Jun 17 15:40:01 CST 2019
  851. */
  852. public static class Criteria extends GeneratedCriteria {
  853. protected Criteria() {
  854. super();
  855. }
  856. }
  857. }