CustomerLogExample.java 37 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162
  1. package com.goafanti.common.model;
  2. import java.util.ArrayList;
  3. import java.util.List;
  4. import java.util.Date;
  5. public class CustomerLogExample {
  6. /**
  7. * This field was generated by MyBatis Generator. This field corresponds to the database table customer_log
  8. * @mbg.generated Fri Oct 13 16:56:48 CST 2017
  9. */
  10. protected String orderByClause;
  11. /**
  12. * This field was generated by MyBatis Generator. This field corresponds to the database table customer_log
  13. * @mbg.generated Fri Oct 13 16:56:48 CST 2017
  14. */
  15. protected boolean distinct;
  16. /**
  17. * This field was generated by MyBatis Generator. This field corresponds to the database table customer_log
  18. * @mbg.generated Fri Oct 13 16:56:48 CST 2017
  19. */
  20. protected List<Criteria> oredCriteria;
  21. /**
  22. * This method was generated by MyBatis Generator. This method corresponds to the database table customer_log
  23. * @mbg.generated Fri Oct 13 16:56:48 CST 2017
  24. */
  25. public CustomerLogExample() {
  26. oredCriteria = new ArrayList<Criteria>();
  27. }
  28. /**
  29. * This method was generated by MyBatis Generator. This method corresponds to the database table customer_log
  30. * @mbg.generated Fri Oct 13 16:56:48 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 customer_log
  37. * @mbg.generated Fri Oct 13 16:56:48 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 customer_log
  44. * @mbg.generated Fri Oct 13 16:56:48 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 customer_log
  51. * @mbg.generated Fri Oct 13 16:56:48 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 customer_log
  58. * @mbg.generated Fri Oct 13 16:56:48 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 customer_log
  65. * @mbg.generated Fri Oct 13 16:56:48 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 customer_log
  72. * @mbg.generated Fri Oct 13 16:56:48 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 customer_log
  81. * @mbg.generated Fri Oct 13 16:56:48 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 customer_log
  92. * @mbg.generated Fri Oct 13 16:56:48 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 customer_log
  100. * @mbg.generated Fri Oct 13 16:56:48 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 customer_log
  109. * @mbg.generated Fri Oct 13 16:56:48 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(String value) {
  153. addCriterion("id =", value, "id");
  154. return (Criteria) this;
  155. }
  156. public Criteria andIdNotEqualTo(String value) {
  157. addCriterion("id <>", value, "id");
  158. return (Criteria) this;
  159. }
  160. public Criteria andIdGreaterThan(String value) {
  161. addCriterion("id >", value, "id");
  162. return (Criteria) this;
  163. }
  164. public Criteria andIdGreaterThanOrEqualTo(String value) {
  165. addCriterion("id >=", value, "id");
  166. return (Criteria) this;
  167. }
  168. public Criteria andIdLessThan(String value) {
  169. addCriterion("id <", value, "id");
  170. return (Criteria) this;
  171. }
  172. public Criteria andIdLessThanOrEqualTo(String value) {
  173. addCriterion("id <=", value, "id");
  174. return (Criteria) this;
  175. }
  176. public Criteria andIdLike(String value) {
  177. addCriterion("id like", value, "id");
  178. return (Criteria) this;
  179. }
  180. public Criteria andIdNotLike(String value) {
  181. addCriterion("id not like", value, "id");
  182. return (Criteria) this;
  183. }
  184. public Criteria andIdIn(List<String> values) {
  185. addCriterion("id in", values, "id");
  186. return (Criteria) this;
  187. }
  188. public Criteria andIdNotIn(List<String> values) {
  189. addCriterion("id not in", values, "id");
  190. return (Criteria) this;
  191. }
  192. public Criteria andIdBetween(String value1, String value2) {
  193. addCriterion("id between", value1, value2, "id");
  194. return (Criteria) this;
  195. }
  196. public Criteria andIdNotBetween(String value1, String value2) {
  197. addCriterion("id not between", value1, value2, "id");
  198. return (Criteria) this;
  199. }
  200. public Criteria andCidIsNull() {
  201. addCriterion("cid is null");
  202. return (Criteria) this;
  203. }
  204. public Criteria andCidIsNotNull() {
  205. addCriterion("cid is not null");
  206. return (Criteria) this;
  207. }
  208. public Criteria andCidEqualTo(String value) {
  209. addCriterion("cid =", value, "cid");
  210. return (Criteria) this;
  211. }
  212. public Criteria andCidNotEqualTo(String value) {
  213. addCriterion("cid <>", value, "cid");
  214. return (Criteria) this;
  215. }
  216. public Criteria andCidGreaterThan(String value) {
  217. addCriterion("cid >", value, "cid");
  218. return (Criteria) this;
  219. }
  220. public Criteria andCidGreaterThanOrEqualTo(String value) {
  221. addCriterion("cid >=", value, "cid");
  222. return (Criteria) this;
  223. }
  224. public Criteria andCidLessThan(String value) {
  225. addCriterion("cid <", value, "cid");
  226. return (Criteria) this;
  227. }
  228. public Criteria andCidLessThanOrEqualTo(String value) {
  229. addCriterion("cid <=", value, "cid");
  230. return (Criteria) this;
  231. }
  232. public Criteria andCidLike(String value) {
  233. addCriterion("cid like", value, "cid");
  234. return (Criteria) this;
  235. }
  236. public Criteria andCidNotLike(String value) {
  237. addCriterion("cid not like", value, "cid");
  238. return (Criteria) this;
  239. }
  240. public Criteria andCidIn(List<String> values) {
  241. addCriterion("cid in", values, "cid");
  242. return (Criteria) this;
  243. }
  244. public Criteria andCidNotIn(List<String> values) {
  245. addCriterion("cid not in", values, "cid");
  246. return (Criteria) this;
  247. }
  248. public Criteria andCidBetween(String value1, String value2) {
  249. addCriterion("cid between", value1, value2, "cid");
  250. return (Criteria) this;
  251. }
  252. public Criteria andCidNotBetween(String value1, String value2) {
  253. addCriterion("cid not between", value1, value2, "cid");
  254. return (Criteria) this;
  255. }
  256. public Criteria andOperatorNameIsNull() {
  257. addCriterion("operator_name is null");
  258. return (Criteria) this;
  259. }
  260. public Criteria andOperatorNameIsNotNull() {
  261. addCriterion("operator_name is not null");
  262. return (Criteria) this;
  263. }
  264. public Criteria andOperatorNameEqualTo(String value) {
  265. addCriterion("operator_name =", value, "operatorName");
  266. return (Criteria) this;
  267. }
  268. public Criteria andOperatorNameNotEqualTo(String value) {
  269. addCriterion("operator_name <>", value, "operatorName");
  270. return (Criteria) this;
  271. }
  272. public Criteria andOperatorNameGreaterThan(String value) {
  273. addCriterion("operator_name >", value, "operatorName");
  274. return (Criteria) this;
  275. }
  276. public Criteria andOperatorNameGreaterThanOrEqualTo(String value) {
  277. addCriterion("operator_name >=", value, "operatorName");
  278. return (Criteria) this;
  279. }
  280. public Criteria andOperatorNameLessThan(String value) {
  281. addCriterion("operator_name <", value, "operatorName");
  282. return (Criteria) this;
  283. }
  284. public Criteria andOperatorNameLessThanOrEqualTo(String value) {
  285. addCriterion("operator_name <=", value, "operatorName");
  286. return (Criteria) this;
  287. }
  288. public Criteria andOperatorNameLike(String value) {
  289. addCriterion("operator_name like", value, "operatorName");
  290. return (Criteria) this;
  291. }
  292. public Criteria andOperatorNameNotLike(String value) {
  293. addCriterion("operator_name not like", value, "operatorName");
  294. return (Criteria) this;
  295. }
  296. public Criteria andOperatorNameIn(List<String> values) {
  297. addCriterion("operator_name in", values, "operatorName");
  298. return (Criteria) this;
  299. }
  300. public Criteria andOperatorNameNotIn(List<String> values) {
  301. addCriterion("operator_name not in", values, "operatorName");
  302. return (Criteria) this;
  303. }
  304. public Criteria andOperatorNameBetween(String value1, String value2) {
  305. addCriterion("operator_name between", value1, value2, "operatorName");
  306. return (Criteria) this;
  307. }
  308. public Criteria andOperatorNameNotBetween(String value1, String value2) {
  309. addCriterion("operator_name not between", value1, value2, "operatorName");
  310. return (Criteria) this;
  311. }
  312. public Criteria andOperatorTypeIsNull() {
  313. addCriterion("operator_type is null");
  314. return (Criteria) this;
  315. }
  316. public Criteria andOperatorTypeIsNotNull() {
  317. addCriterion("operator_type is not null");
  318. return (Criteria) this;
  319. }
  320. public Criteria andOperatorTypeEqualTo(String value) {
  321. addCriterion("operator_type =", value, "operatorType");
  322. return (Criteria) this;
  323. }
  324. public Criteria andOperatorTypeNotEqualTo(String value) {
  325. addCriterion("operator_type <>", value, "operatorType");
  326. return (Criteria) this;
  327. }
  328. public Criteria andOperatorTypeGreaterThan(String value) {
  329. addCriterion("operator_type >", value, "operatorType");
  330. return (Criteria) this;
  331. }
  332. public Criteria andOperatorTypeGreaterThanOrEqualTo(String value) {
  333. addCriterion("operator_type >=", value, "operatorType");
  334. return (Criteria) this;
  335. }
  336. public Criteria andOperatorTypeLessThan(String value) {
  337. addCriterion("operator_type <", value, "operatorType");
  338. return (Criteria) this;
  339. }
  340. public Criteria andOperatorTypeLessThanOrEqualTo(String value) {
  341. addCriterion("operator_type <=", value, "operatorType");
  342. return (Criteria) this;
  343. }
  344. public Criteria andOperatorTypeLike(String value) {
  345. addCriterion("operator_type like", value, "operatorType");
  346. return (Criteria) this;
  347. }
  348. public Criteria andOperatorTypeNotLike(String value) {
  349. addCriterion("operator_type not like", value, "operatorType");
  350. return (Criteria) this;
  351. }
  352. public Criteria andOperatorTypeIn(List<String> values) {
  353. addCriterion("operator_type in", values, "operatorType");
  354. return (Criteria) this;
  355. }
  356. public Criteria andOperatorTypeNotIn(List<String> values) {
  357. addCriterion("operator_type not in", values, "operatorType");
  358. return (Criteria) this;
  359. }
  360. public Criteria andOperatorTypeBetween(String value1, String value2) {
  361. addCriterion("operator_type between", value1, value2, "operatorType");
  362. return (Criteria) this;
  363. }
  364. public Criteria andOperatorTypeNotBetween(String value1, String value2) {
  365. addCriterion("operator_type not between", value1, value2, "operatorType");
  366. return (Criteria) this;
  367. }
  368. public Criteria andOperatorTimeIsNull() {
  369. addCriterion("operator_time is null");
  370. return (Criteria) this;
  371. }
  372. public Criteria andOperatorTimeIsNotNull() {
  373. addCriterion("operator_time is not null");
  374. return (Criteria) this;
  375. }
  376. public Criteria andOperatorTimeEqualTo(Date value) {
  377. addCriterion("operator_time =", value, "operatorTime");
  378. return (Criteria) this;
  379. }
  380. public Criteria andOperatorTimeNotEqualTo(Date value) {
  381. addCriterion("operator_time <>", value, "operatorTime");
  382. return (Criteria) this;
  383. }
  384. public Criteria andOperatorTimeGreaterThan(Date value) {
  385. addCriterion("operator_time >", value, "operatorTime");
  386. return (Criteria) this;
  387. }
  388. public Criteria andOperatorTimeGreaterThanOrEqualTo(Date value) {
  389. addCriterion("operator_time >=", value, "operatorTime");
  390. return (Criteria) this;
  391. }
  392. public Criteria andOperatorTimeLessThan(Date value) {
  393. addCriterion("operator_time <", value, "operatorTime");
  394. return (Criteria) this;
  395. }
  396. public Criteria andOperatorTimeLessThanOrEqualTo(Date value) {
  397. addCriterion("operator_time <=", value, "operatorTime");
  398. return (Criteria) this;
  399. }
  400. public Criteria andOperatorTimeIn(List<Date> values) {
  401. addCriterion("operator_time in", values, "operatorTime");
  402. return (Criteria) this;
  403. }
  404. public Criteria andOperatorTimeNotIn(List<Date> values) {
  405. addCriterion("operator_time not in", values, "operatorTime");
  406. return (Criteria) this;
  407. }
  408. public Criteria andOperatorTimeBetween(Date value1, Date value2) {
  409. addCriterion("operator_time between", value1, value2, "operatorTime");
  410. return (Criteria) this;
  411. }
  412. public Criteria andOperatorTimeNotBetween(Date value1, Date value2) {
  413. addCriterion("operator_time not between", value1, value2, "operatorTime");
  414. return (Criteria) this;
  415. }
  416. public Criteria andBeforeCustomerStatusIsNull() {
  417. addCriterion("before_customer_status is null");
  418. return (Criteria) this;
  419. }
  420. public Criteria andBeforeCustomerStatusIsNotNull() {
  421. addCriterion("before_customer_status is not null");
  422. return (Criteria) this;
  423. }
  424. public Criteria andBeforeCustomerStatusEqualTo(String value) {
  425. addCriterion("before_customer_status =", value, "beforeCustomerStatus");
  426. return (Criteria) this;
  427. }
  428. public Criteria andBeforeCustomerStatusNotEqualTo(String value) {
  429. addCriterion("before_customer_status <>", value, "beforeCustomerStatus");
  430. return (Criteria) this;
  431. }
  432. public Criteria andBeforeCustomerStatusGreaterThan(String value) {
  433. addCriterion("before_customer_status >", value, "beforeCustomerStatus");
  434. return (Criteria) this;
  435. }
  436. public Criteria andBeforeCustomerStatusGreaterThanOrEqualTo(String value) {
  437. addCriterion("before_customer_status >=", value, "beforeCustomerStatus");
  438. return (Criteria) this;
  439. }
  440. public Criteria andBeforeCustomerStatusLessThan(String value) {
  441. addCriterion("before_customer_status <", value, "beforeCustomerStatus");
  442. return (Criteria) this;
  443. }
  444. public Criteria andBeforeCustomerStatusLessThanOrEqualTo(String value) {
  445. addCriterion("before_customer_status <=", value, "beforeCustomerStatus");
  446. return (Criteria) this;
  447. }
  448. public Criteria andBeforeCustomerStatusLike(String value) {
  449. addCriterion("before_customer_status like", value, "beforeCustomerStatus");
  450. return (Criteria) this;
  451. }
  452. public Criteria andBeforeCustomerStatusNotLike(String value) {
  453. addCriterion("before_customer_status not like", value, "beforeCustomerStatus");
  454. return (Criteria) this;
  455. }
  456. public Criteria andBeforeCustomerStatusIn(List<String> values) {
  457. addCriterion("before_customer_status in", values, "beforeCustomerStatus");
  458. return (Criteria) this;
  459. }
  460. public Criteria andBeforeCustomerStatusNotIn(List<String> values) {
  461. addCriterion("before_customer_status not in", values, "beforeCustomerStatus");
  462. return (Criteria) this;
  463. }
  464. public Criteria andBeforeCustomerStatusBetween(String value1, String value2) {
  465. addCriterion("before_customer_status between", value1, value2, "beforeCustomerStatus");
  466. return (Criteria) this;
  467. }
  468. public Criteria andBeforeCustomerStatusNotBetween(String value1, String value2) {
  469. addCriterion("before_customer_status not between", value1, value2, "beforeCustomerStatus");
  470. return (Criteria) this;
  471. }
  472. public Criteria andAfterCustomerStatusIsNull() {
  473. addCriterion("after_customer_status is null");
  474. return (Criteria) this;
  475. }
  476. public Criteria andAfterCustomerStatusIsNotNull() {
  477. addCriterion("after_customer_status is not null");
  478. return (Criteria) this;
  479. }
  480. public Criteria andAfterCustomerStatusEqualTo(String value) {
  481. addCriterion("after_customer_status =", value, "afterCustomerStatus");
  482. return (Criteria) this;
  483. }
  484. public Criteria andAfterCustomerStatusNotEqualTo(String value) {
  485. addCriterion("after_customer_status <>", value, "afterCustomerStatus");
  486. return (Criteria) this;
  487. }
  488. public Criteria andAfterCustomerStatusGreaterThan(String value) {
  489. addCriterion("after_customer_status >", value, "afterCustomerStatus");
  490. return (Criteria) this;
  491. }
  492. public Criteria andAfterCustomerStatusGreaterThanOrEqualTo(String value) {
  493. addCriterion("after_customer_status >=", value, "afterCustomerStatus");
  494. return (Criteria) this;
  495. }
  496. public Criteria andAfterCustomerStatusLessThan(String value) {
  497. addCriterion("after_customer_status <", value, "afterCustomerStatus");
  498. return (Criteria) this;
  499. }
  500. public Criteria andAfterCustomerStatusLessThanOrEqualTo(String value) {
  501. addCriterion("after_customer_status <=", value, "afterCustomerStatus");
  502. return (Criteria) this;
  503. }
  504. public Criteria andAfterCustomerStatusLike(String value) {
  505. addCriterion("after_customer_status like", value, "afterCustomerStatus");
  506. return (Criteria) this;
  507. }
  508. public Criteria andAfterCustomerStatusNotLike(String value) {
  509. addCriterion("after_customer_status not like", value, "afterCustomerStatus");
  510. return (Criteria) this;
  511. }
  512. public Criteria andAfterCustomerStatusIn(List<String> values) {
  513. addCriterion("after_customer_status in", values, "afterCustomerStatus");
  514. return (Criteria) this;
  515. }
  516. public Criteria andAfterCustomerStatusNotIn(List<String> values) {
  517. addCriterion("after_customer_status not in", values, "afterCustomerStatus");
  518. return (Criteria) this;
  519. }
  520. public Criteria andAfterCustomerStatusBetween(String value1, String value2) {
  521. addCriterion("after_customer_status between", value1, value2, "afterCustomerStatus");
  522. return (Criteria) this;
  523. }
  524. public Criteria andAfterCustomerStatusNotBetween(String value1, String value2) {
  525. addCriterion("after_customer_status not between", value1, value2, "afterCustomerStatus");
  526. return (Criteria) this;
  527. }
  528. public Criteria andBeforeCustomerIntentionIsNull() {
  529. addCriterion("before_customer_intention is null");
  530. return (Criteria) this;
  531. }
  532. public Criteria andBeforeCustomerIntentionIsNotNull() {
  533. addCriterion("before_customer_intention is not null");
  534. return (Criteria) this;
  535. }
  536. public Criteria andBeforeCustomerIntentionEqualTo(String value) {
  537. addCriterion("before_customer_intention =", value, "beforeCustomerIntention");
  538. return (Criteria) this;
  539. }
  540. public Criteria andBeforeCustomerIntentionNotEqualTo(String value) {
  541. addCriterion("before_customer_intention <>", value, "beforeCustomerIntention");
  542. return (Criteria) this;
  543. }
  544. public Criteria andBeforeCustomerIntentionGreaterThan(String value) {
  545. addCriterion("before_customer_intention >", value, "beforeCustomerIntention");
  546. return (Criteria) this;
  547. }
  548. public Criteria andBeforeCustomerIntentionGreaterThanOrEqualTo(String value) {
  549. addCriterion("before_customer_intention >=", value, "beforeCustomerIntention");
  550. return (Criteria) this;
  551. }
  552. public Criteria andBeforeCustomerIntentionLessThan(String value) {
  553. addCriterion("before_customer_intention <", value, "beforeCustomerIntention");
  554. return (Criteria) this;
  555. }
  556. public Criteria andBeforeCustomerIntentionLessThanOrEqualTo(String value) {
  557. addCriterion("before_customer_intention <=", value, "beforeCustomerIntention");
  558. return (Criteria) this;
  559. }
  560. public Criteria andBeforeCustomerIntentionLike(String value) {
  561. addCriterion("before_customer_intention like", value, "beforeCustomerIntention");
  562. return (Criteria) this;
  563. }
  564. public Criteria andBeforeCustomerIntentionNotLike(String value) {
  565. addCriterion("before_customer_intention not like", value, "beforeCustomerIntention");
  566. return (Criteria) this;
  567. }
  568. public Criteria andBeforeCustomerIntentionIn(List<String> values) {
  569. addCriterion("before_customer_intention in", values, "beforeCustomerIntention");
  570. return (Criteria) this;
  571. }
  572. public Criteria andBeforeCustomerIntentionNotIn(List<String> values) {
  573. addCriterion("before_customer_intention not in", values, "beforeCustomerIntention");
  574. return (Criteria) this;
  575. }
  576. public Criteria andBeforeCustomerIntentionBetween(String value1, String value2) {
  577. addCriterion("before_customer_intention between", value1, value2, "beforeCustomerIntention");
  578. return (Criteria) this;
  579. }
  580. public Criteria andBeforeCustomerIntentionNotBetween(String value1, String value2) {
  581. addCriterion("before_customer_intention not between", value1, value2, "beforeCustomerIntention");
  582. return (Criteria) this;
  583. }
  584. public Criteria andAfterCustomerIntentionIsNull() {
  585. addCriterion("after_customer_intention is null");
  586. return (Criteria) this;
  587. }
  588. public Criteria andAfterCustomerIntentionIsNotNull() {
  589. addCriterion("after_customer_intention is not null");
  590. return (Criteria) this;
  591. }
  592. public Criteria andAfterCustomerIntentionEqualTo(String value) {
  593. addCriterion("after_customer_intention =", value, "afterCustomerIntention");
  594. return (Criteria) this;
  595. }
  596. public Criteria andAfterCustomerIntentionNotEqualTo(String value) {
  597. addCriterion("after_customer_intention <>", value, "afterCustomerIntention");
  598. return (Criteria) this;
  599. }
  600. public Criteria andAfterCustomerIntentionGreaterThan(String value) {
  601. addCriterion("after_customer_intention >", value, "afterCustomerIntention");
  602. return (Criteria) this;
  603. }
  604. public Criteria andAfterCustomerIntentionGreaterThanOrEqualTo(String value) {
  605. addCriterion("after_customer_intention >=", value, "afterCustomerIntention");
  606. return (Criteria) this;
  607. }
  608. public Criteria andAfterCustomerIntentionLessThan(String value) {
  609. addCriterion("after_customer_intention <", value, "afterCustomerIntention");
  610. return (Criteria) this;
  611. }
  612. public Criteria andAfterCustomerIntentionLessThanOrEqualTo(String value) {
  613. addCriterion("after_customer_intention <=", value, "afterCustomerIntention");
  614. return (Criteria) this;
  615. }
  616. public Criteria andAfterCustomerIntentionLike(String value) {
  617. addCriterion("after_customer_intention like", value, "afterCustomerIntention");
  618. return (Criteria) this;
  619. }
  620. public Criteria andAfterCustomerIntentionNotLike(String value) {
  621. addCriterion("after_customer_intention not like", value, "afterCustomerIntention");
  622. return (Criteria) this;
  623. }
  624. public Criteria andAfterCustomerIntentionIn(List<String> values) {
  625. addCriterion("after_customer_intention in", values, "afterCustomerIntention");
  626. return (Criteria) this;
  627. }
  628. public Criteria andAfterCustomerIntentionNotIn(List<String> values) {
  629. addCriterion("after_customer_intention not in", values, "afterCustomerIntention");
  630. return (Criteria) this;
  631. }
  632. public Criteria andAfterCustomerIntentionBetween(String value1, String value2) {
  633. addCriterion("after_customer_intention between", value1, value2, "afterCustomerIntention");
  634. return (Criteria) this;
  635. }
  636. public Criteria andAfterCustomerIntentionNotBetween(String value1, String value2) {
  637. addCriterion("after_customer_intention not between", value1, value2, "afterCustomerIntention");
  638. return (Criteria) this;
  639. }
  640. public Criteria andBeforeFollowSituationIsNull() {
  641. addCriterion("before_follow_situation is null");
  642. return (Criteria) this;
  643. }
  644. public Criteria andBeforeFollowSituationIsNotNull() {
  645. addCriterion("before_follow_situation is not null");
  646. return (Criteria) this;
  647. }
  648. public Criteria andBeforeFollowSituationEqualTo(String value) {
  649. addCriterion("before_follow_situation =", value, "beforeFollowSituation");
  650. return (Criteria) this;
  651. }
  652. public Criteria andBeforeFollowSituationNotEqualTo(String value) {
  653. addCriterion("before_follow_situation <>", value, "beforeFollowSituation");
  654. return (Criteria) this;
  655. }
  656. public Criteria andBeforeFollowSituationGreaterThan(String value) {
  657. addCriterion("before_follow_situation >", value, "beforeFollowSituation");
  658. return (Criteria) this;
  659. }
  660. public Criteria andBeforeFollowSituationGreaterThanOrEqualTo(String value) {
  661. addCriterion("before_follow_situation >=", value, "beforeFollowSituation");
  662. return (Criteria) this;
  663. }
  664. public Criteria andBeforeFollowSituationLessThan(String value) {
  665. addCriterion("before_follow_situation <", value, "beforeFollowSituation");
  666. return (Criteria) this;
  667. }
  668. public Criteria andBeforeFollowSituationLessThanOrEqualTo(String value) {
  669. addCriterion("before_follow_situation <=", value, "beforeFollowSituation");
  670. return (Criteria) this;
  671. }
  672. public Criteria andBeforeFollowSituationLike(String value) {
  673. addCriterion("before_follow_situation like", value, "beforeFollowSituation");
  674. return (Criteria) this;
  675. }
  676. public Criteria andBeforeFollowSituationNotLike(String value) {
  677. addCriterion("before_follow_situation not like", value, "beforeFollowSituation");
  678. return (Criteria) this;
  679. }
  680. public Criteria andBeforeFollowSituationIn(List<String> values) {
  681. addCriterion("before_follow_situation in", values, "beforeFollowSituation");
  682. return (Criteria) this;
  683. }
  684. public Criteria andBeforeFollowSituationNotIn(List<String> values) {
  685. addCriterion("before_follow_situation not in", values, "beforeFollowSituation");
  686. return (Criteria) this;
  687. }
  688. public Criteria andBeforeFollowSituationBetween(String value1, String value2) {
  689. addCriterion("before_follow_situation between", value1, value2, "beforeFollowSituation");
  690. return (Criteria) this;
  691. }
  692. public Criteria andBeforeFollowSituationNotBetween(String value1, String value2) {
  693. addCriterion("before_follow_situation not between", value1, value2, "beforeFollowSituation");
  694. return (Criteria) this;
  695. }
  696. public Criteria andAfterFollowSituationIsNull() {
  697. addCriterion("after_follow_situation is null");
  698. return (Criteria) this;
  699. }
  700. public Criteria andAfterFollowSituationIsNotNull() {
  701. addCriterion("after_follow_situation is not null");
  702. return (Criteria) this;
  703. }
  704. public Criteria andAfterFollowSituationEqualTo(String value) {
  705. addCriterion("after_follow_situation =", value, "afterFollowSituation");
  706. return (Criteria) this;
  707. }
  708. public Criteria andAfterFollowSituationNotEqualTo(String value) {
  709. addCriterion("after_follow_situation <>", value, "afterFollowSituation");
  710. return (Criteria) this;
  711. }
  712. public Criteria andAfterFollowSituationGreaterThan(String value) {
  713. addCriterion("after_follow_situation >", value, "afterFollowSituation");
  714. return (Criteria) this;
  715. }
  716. public Criteria andAfterFollowSituationGreaterThanOrEqualTo(String value) {
  717. addCriterion("after_follow_situation >=", value, "afterFollowSituation");
  718. return (Criteria) this;
  719. }
  720. public Criteria andAfterFollowSituationLessThan(String value) {
  721. addCriterion("after_follow_situation <", value, "afterFollowSituation");
  722. return (Criteria) this;
  723. }
  724. public Criteria andAfterFollowSituationLessThanOrEqualTo(String value) {
  725. addCriterion("after_follow_situation <=", value, "afterFollowSituation");
  726. return (Criteria) this;
  727. }
  728. public Criteria andAfterFollowSituationLike(String value) {
  729. addCriterion("after_follow_situation like", value, "afterFollowSituation");
  730. return (Criteria) this;
  731. }
  732. public Criteria andAfterFollowSituationNotLike(String value) {
  733. addCriterion("after_follow_situation not like", value, "afterFollowSituation");
  734. return (Criteria) this;
  735. }
  736. public Criteria andAfterFollowSituationIn(List<String> values) {
  737. addCriterion("after_follow_situation in", values, "afterFollowSituation");
  738. return (Criteria) this;
  739. }
  740. public Criteria andAfterFollowSituationNotIn(List<String> values) {
  741. addCriterion("after_follow_situation not in", values, "afterFollowSituation");
  742. return (Criteria) this;
  743. }
  744. public Criteria andAfterFollowSituationBetween(String value1, String value2) {
  745. addCriterion("after_follow_situation between", value1, value2, "afterFollowSituation");
  746. return (Criteria) this;
  747. }
  748. public Criteria andAfterFollowSituationNotBetween(String value1, String value2) {
  749. addCriterion("after_follow_situation not between", value1, value2, "afterFollowSituation");
  750. return (Criteria) this;
  751. }
  752. public Criteria andBeforeAdminNameIsNull() {
  753. addCriterion("before_admin_name is null");
  754. return (Criteria) this;
  755. }
  756. public Criteria andBeforeAdminNameIsNotNull() {
  757. addCriterion("before_admin_name is not null");
  758. return (Criteria) this;
  759. }
  760. public Criteria andBeforeAdminNameEqualTo(String value) {
  761. addCriterion("before_admin_name =", value, "beforeAdminName");
  762. return (Criteria) this;
  763. }
  764. public Criteria andBeforeAdminNameNotEqualTo(String value) {
  765. addCriterion("before_admin_name <>", value, "beforeAdminName");
  766. return (Criteria) this;
  767. }
  768. public Criteria andBeforeAdminNameGreaterThan(String value) {
  769. addCriterion("before_admin_name >", value, "beforeAdminName");
  770. return (Criteria) this;
  771. }
  772. public Criteria andBeforeAdminNameGreaterThanOrEqualTo(String value) {
  773. addCriterion("before_admin_name >=", value, "beforeAdminName");
  774. return (Criteria) this;
  775. }
  776. public Criteria andBeforeAdminNameLessThan(String value) {
  777. addCriterion("before_admin_name <", value, "beforeAdminName");
  778. return (Criteria) this;
  779. }
  780. public Criteria andBeforeAdminNameLessThanOrEqualTo(String value) {
  781. addCriterion("before_admin_name <=", value, "beforeAdminName");
  782. return (Criteria) this;
  783. }
  784. public Criteria andBeforeAdminNameLike(String value) {
  785. addCriterion("before_admin_name like", value, "beforeAdminName");
  786. return (Criteria) this;
  787. }
  788. public Criteria andBeforeAdminNameNotLike(String value) {
  789. addCriterion("before_admin_name not like", value, "beforeAdminName");
  790. return (Criteria) this;
  791. }
  792. public Criteria andBeforeAdminNameIn(List<String> values) {
  793. addCriterion("before_admin_name in", values, "beforeAdminName");
  794. return (Criteria) this;
  795. }
  796. public Criteria andBeforeAdminNameNotIn(List<String> values) {
  797. addCriterion("before_admin_name not in", values, "beforeAdminName");
  798. return (Criteria) this;
  799. }
  800. public Criteria andBeforeAdminNameBetween(String value1, String value2) {
  801. addCriterion("before_admin_name between", value1, value2, "beforeAdminName");
  802. return (Criteria) this;
  803. }
  804. public Criteria andBeforeAdminNameNotBetween(String value1, String value2) {
  805. addCriterion("before_admin_name not between", value1, value2, "beforeAdminName");
  806. return (Criteria) this;
  807. }
  808. public Criteria andAfterAdminNameIsNull() {
  809. addCriterion("after_admin_name is null");
  810. return (Criteria) this;
  811. }
  812. public Criteria andAfterAdminNameIsNotNull() {
  813. addCriterion("after_admin_name is not null");
  814. return (Criteria) this;
  815. }
  816. public Criteria andAfterAdminNameEqualTo(String value) {
  817. addCriterion("after_admin_name =", value, "afterAdminName");
  818. return (Criteria) this;
  819. }
  820. public Criteria andAfterAdminNameNotEqualTo(String value) {
  821. addCriterion("after_admin_name <>", value, "afterAdminName");
  822. return (Criteria) this;
  823. }
  824. public Criteria andAfterAdminNameGreaterThan(String value) {
  825. addCriterion("after_admin_name >", value, "afterAdminName");
  826. return (Criteria) this;
  827. }
  828. public Criteria andAfterAdminNameGreaterThanOrEqualTo(String value) {
  829. addCriterion("after_admin_name >=", value, "afterAdminName");
  830. return (Criteria) this;
  831. }
  832. public Criteria andAfterAdminNameLessThan(String value) {
  833. addCriterion("after_admin_name <", value, "afterAdminName");
  834. return (Criteria) this;
  835. }
  836. public Criteria andAfterAdminNameLessThanOrEqualTo(String value) {
  837. addCriterion("after_admin_name <=", value, "afterAdminName");
  838. return (Criteria) this;
  839. }
  840. public Criteria andAfterAdminNameLike(String value) {
  841. addCriterion("after_admin_name like", value, "afterAdminName");
  842. return (Criteria) this;
  843. }
  844. public Criteria andAfterAdminNameNotLike(String value) {
  845. addCriterion("after_admin_name not like", value, "afterAdminName");
  846. return (Criteria) this;
  847. }
  848. public Criteria andAfterAdminNameIn(List<String> values) {
  849. addCriterion("after_admin_name in", values, "afterAdminName");
  850. return (Criteria) this;
  851. }
  852. public Criteria andAfterAdminNameNotIn(List<String> values) {
  853. addCriterion("after_admin_name not in", values, "afterAdminName");
  854. return (Criteria) this;
  855. }
  856. public Criteria andAfterAdminNameBetween(String value1, String value2) {
  857. addCriterion("after_admin_name between", value1, value2, "afterAdminName");
  858. return (Criteria) this;
  859. }
  860. public Criteria andAfterAdminNameNotBetween(String value1, String value2) {
  861. addCriterion("after_admin_name not between", value1, value2, "afterAdminName");
  862. return (Criteria) this;
  863. }
  864. }
  865. /**
  866. * This class was generated by MyBatis Generator. This class corresponds to the database table customer_log
  867. * @mbg.generated Fri Oct 13 16:56:48 CST 2017
  868. */
  869. public static class Criterion {
  870. private String condition;
  871. private Object value;
  872. private Object secondValue;
  873. private boolean noValue;
  874. private boolean singleValue;
  875. private boolean betweenValue;
  876. private boolean listValue;
  877. private String typeHandler;
  878. public String getCondition() {
  879. return condition;
  880. }
  881. public Object getValue() {
  882. return value;
  883. }
  884. public Object getSecondValue() {
  885. return secondValue;
  886. }
  887. public boolean isNoValue() {
  888. return noValue;
  889. }
  890. public boolean isSingleValue() {
  891. return singleValue;
  892. }
  893. public boolean isBetweenValue() {
  894. return betweenValue;
  895. }
  896. public boolean isListValue() {
  897. return listValue;
  898. }
  899. public String getTypeHandler() {
  900. return typeHandler;
  901. }
  902. protected Criterion(String condition) {
  903. super();
  904. this.condition = condition;
  905. this.typeHandler = null;
  906. this.noValue = true;
  907. }
  908. protected Criterion(String condition, Object value, String typeHandler) {
  909. super();
  910. this.condition = condition;
  911. this.value = value;
  912. this.typeHandler = typeHandler;
  913. if (value instanceof List<?>) {
  914. this.listValue = true;
  915. } else {
  916. this.singleValue = true;
  917. }
  918. }
  919. protected Criterion(String condition, Object value) {
  920. this(condition, value, null);
  921. }
  922. protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
  923. super();
  924. this.condition = condition;
  925. this.value = value;
  926. this.secondValue = secondValue;
  927. this.typeHandler = typeHandler;
  928. this.betweenValue = true;
  929. }
  930. protected Criterion(String condition, Object value, Object secondValue) {
  931. this(condition, value, secondValue, null);
  932. }
  933. }
  934. /**
  935. * This class was generated by MyBatis Generator.
  936. * This class corresponds to the database table customer_log
  937. *
  938. * @mbg.generated do_not_delete_during_merge Mon Oct 09 17:18:39 CST 2017
  939. */
  940. public static class Criteria extends GeneratedCriteria {
  941. protected Criteria() {
  942. super();
  943. }
  944. }
  945. }