XtLsjlExample.java 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134
  1. package com.huimv.xt.dataobject;
  2. import java.util.ArrayList;
  3. import java.util.Date;
  4. import java.util.HashMap;
  5. import java.util.List;
  6. import java.util.Map;
  7. public class XtLsjlExample {
  8. /**
  9. * This field was generated by Apache iBATIS ibator.
  10. * This field corresponds to the database table xt_lsjl
  11. *
  12. * @ibatorgenerated Thu Aug 28 10:31:04 CST 2014
  13. */
  14. protected String orderByClause;
  15. /**
  16. * This field was generated by Apache iBATIS ibator.
  17. * This field corresponds to the database table xt_lsjl
  18. *
  19. * @ibatorgenerated Thu Aug 28 10:31:04 CST 2014
  20. */
  21. protected List<Criteria> oredCriteria;
  22. /**
  23. * This field was generated by Apache iBATIS ibator.
  24. * This field corresponds to the database table xt_lsjl
  25. *
  26. * @ibatorgenerated Thu Aug 28 10:31:04 CST 2014
  27. */
  28. protected int start = -1;
  29. /**
  30. * This field was generated by Apache iBATIS ibator.
  31. * This field corresponds to the database table xt_lsjl
  32. *
  33. * @ibatorgenerated Thu Aug 28 10:31:04 CST 2014
  34. */
  35. protected int limit = -1;
  36. /**
  37. * This method was generated by Apache iBATIS ibator.
  38. * This method corresponds to the database table xt_lsjl
  39. *
  40. * @ibatorgenerated Thu Aug 28 10:31:04 CST 2014
  41. */
  42. public XtLsjlExample() {
  43. oredCriteria = new ArrayList<Criteria>();
  44. }
  45. /**
  46. * This method was generated by Apache iBATIS ibator.
  47. * This method corresponds to the database table xt_lsjl
  48. *
  49. * @ibatorgenerated Thu Aug 28 10:31:04 CST 2014
  50. */
  51. protected XtLsjlExample(XtLsjlExample example) {
  52. this.orderByClause = example.orderByClause;
  53. this.oredCriteria = example.oredCriteria;
  54. }
  55. /**
  56. * This method was generated by Apache iBATIS ibator.
  57. * This method corresponds to the database table xt_lsjl
  58. *
  59. * @ibatorgenerated Thu Aug 28 10:31:04 CST 2014
  60. */
  61. public void setOrderByClause(String orderByClause) {
  62. this.orderByClause = orderByClause;
  63. }
  64. /**
  65. * This method was generated by Apache iBATIS ibator.
  66. * This method corresponds to the database table xt_lsjl
  67. *
  68. * @ibatorgenerated Thu Aug 28 10:31:04 CST 2014
  69. */
  70. public String getOrderByClause() {
  71. return orderByClause;
  72. }
  73. /**
  74. * This method was generated by Apache iBATIS ibator.
  75. * This method corresponds to the database table xt_lsjl
  76. *
  77. * @ibatorgenerated Thu Aug 28 10:31:04 CST 2014
  78. */
  79. public List<Criteria> getOredCriteria() {
  80. return oredCriteria;
  81. }
  82. /**
  83. * This method was generated by Apache iBATIS ibator.
  84. * This method corresponds to the database table xt_lsjl
  85. *
  86. * @ibatorgenerated Thu Aug 28 10:31:04 CST 2014
  87. */
  88. public void or(Criteria criteria) {
  89. oredCriteria.add(criteria);
  90. }
  91. /**
  92. * This method was generated by Apache iBATIS ibator.
  93. * This method corresponds to the database table xt_lsjl
  94. *
  95. * @ibatorgenerated Thu Aug 28 10:31:04 CST 2014
  96. */
  97. public Criteria createCriteria() {
  98. Criteria criteria = createCriteriaInternal();
  99. if (oredCriteria.size() == 0) {
  100. oredCriteria.add(criteria);
  101. }
  102. return criteria;
  103. }
  104. /**
  105. * This method was generated by Apache iBATIS ibator.
  106. * This method corresponds to the database table xt_lsjl
  107. *
  108. * @ibatorgenerated Thu Aug 28 10:31:04 CST 2014
  109. */
  110. protected Criteria createCriteriaInternal() {
  111. Criteria criteria = new Criteria();
  112. return criteria;
  113. }
  114. /**
  115. * This method was generated by Apache iBATIS ibator.
  116. * This method corresponds to the database table xt_lsjl
  117. *
  118. * @ibatorgenerated Thu Aug 28 10:31:04 CST 2014
  119. */
  120. public void clear() {
  121. oredCriteria.clear();
  122. }
  123. /**
  124. * This method was generated by Apache iBATIS ibator.
  125. * This method corresponds to the database table xt_lsjl
  126. *
  127. * @ibatorgenerated Thu Aug 28 10:31:04 CST 2014
  128. */
  129. public void setStart(int start) {
  130. this.start=start;
  131. }
  132. /**
  133. * This method was generated by Apache iBATIS ibator.
  134. * This method corresponds to the database table xt_lsjl
  135. *
  136. * @ibatorgenerated Thu Aug 28 10:31:04 CST 2014
  137. */
  138. public int getStart() {
  139. return start;
  140. }
  141. /**
  142. * This method was generated by Apache iBATIS ibator.
  143. * This method corresponds to the database table xt_lsjl
  144. *
  145. * @ibatorgenerated Thu Aug 28 10:31:04 CST 2014
  146. */
  147. public void setLimit(int limit) {
  148. this.limit=limit;
  149. }
  150. /**
  151. * This method was generated by Apache iBATIS ibator.
  152. * This method corresponds to the database table xt_lsjl
  153. *
  154. * @ibatorgenerated Thu Aug 28 10:31:04 CST 2014
  155. */
  156. public int getLimit() {
  157. return limit;
  158. }
  159. /**
  160. * This class was generated by Apache iBATIS ibator.
  161. * This class corresponds to the database table xt_lsjl
  162. *
  163. * @ibatorgenerated Thu Aug 28 10:31:04 CST 2014
  164. */
  165. public static class Criteria {
  166. protected List<String> criteriaWithoutValue;
  167. protected List<Map<String, Object>> criteriaWithSingleValue;
  168. protected List<Map<String, Object>> criteriaWithListValue;
  169. protected List<Map<String, Object>> criteriaWithBetweenValue;
  170. protected Criteria() {
  171. super();
  172. criteriaWithoutValue = new ArrayList<String>();
  173. criteriaWithSingleValue = new ArrayList<Map<String, Object>>();
  174. criteriaWithListValue = new ArrayList<Map<String, Object>>();
  175. criteriaWithBetweenValue = new ArrayList<Map<String, Object>>();
  176. }
  177. public boolean isValid() {
  178. return criteriaWithoutValue.size() > 0
  179. || criteriaWithSingleValue.size() > 0
  180. || criteriaWithListValue.size() > 0
  181. || criteriaWithBetweenValue.size() > 0;
  182. }
  183. public List<String> getCriteriaWithoutValue() {
  184. return criteriaWithoutValue;
  185. }
  186. public List<Map<String, Object>> getCriteriaWithSingleValue() {
  187. return criteriaWithSingleValue;
  188. }
  189. public List<Map<String, Object>> getCriteriaWithListValue() {
  190. return criteriaWithListValue;
  191. }
  192. public List<Map<String, Object>> getCriteriaWithBetweenValue() {
  193. return criteriaWithBetweenValue;
  194. }
  195. protected void addCriterion(String condition) {
  196. if (condition == null) {
  197. throw new RuntimeException("Value for condition cannot be null");
  198. }
  199. criteriaWithoutValue.add(condition);
  200. }
  201. protected void addCriterion(String condition, Object value, String property) {
  202. if (value == null) {
  203. throw new RuntimeException("Value for " + property + " cannot be null");
  204. }
  205. Map<String, Object> map = new HashMap<String, Object>();
  206. map.put("condition", condition);
  207. map.put("value", value);
  208. criteriaWithSingleValue.add(map);
  209. }
  210. protected void addCriterion(String condition, List<? extends Object> values, String property) {
  211. if (values == null || values.size() == 0) {
  212. throw new RuntimeException("Value list for " + property + " cannot be null or empty");
  213. }
  214. Map<String, Object> map = new HashMap<String, Object>();
  215. map.put("condition", condition);
  216. map.put("values", values);
  217. criteriaWithListValue.add(map);
  218. }
  219. protected void addCriterion(String condition, Object value1, Object value2, String property) {
  220. if (value1 == null || value2 == null) {
  221. throw new RuntimeException("Between values for " + property + " cannot be null");
  222. }
  223. List<Object> list = new ArrayList<Object>();
  224. list.add(value1);
  225. list.add(value2);
  226. Map<String, Object> map = new HashMap<String, Object>();
  227. map.put("condition", condition);
  228. map.put("values", list);
  229. criteriaWithBetweenValue.add(map);
  230. }
  231. public Criteria andIdIsNull() {
  232. addCriterion("ID is null");
  233. return this;
  234. }
  235. public Criteria andIdIsNotNull() {
  236. addCriterion("ID is not null");
  237. return this;
  238. }
  239. public Criteria andIdEqualTo(Integer value) {
  240. addCriterion("ID =", value, "id");
  241. return this;
  242. }
  243. public Criteria andIdNotEqualTo(Integer value) {
  244. addCriterion("ID <>", value, "id");
  245. return this;
  246. }
  247. public Criteria andIdGreaterThan(Integer value) {
  248. addCriterion("ID >", value, "id");
  249. return this;
  250. }
  251. public Criteria andIdGreaterThanOrEqualTo(Integer value) {
  252. addCriterion("ID >=", value, "id");
  253. return this;
  254. }
  255. public Criteria andIdLessThan(Integer value) {
  256. addCriterion("ID <", value, "id");
  257. return this;
  258. }
  259. public Criteria andIdLessThanOrEqualTo(Integer value) {
  260. addCriterion("ID <=", value, "id");
  261. return this;
  262. }
  263. public Criteria andIdIn(List<Integer> values) {
  264. addCriterion("ID in", values, "id");
  265. return this;
  266. }
  267. public Criteria andIdNotIn(List<Integer> values) {
  268. addCriterion("ID not in", values, "id");
  269. return this;
  270. }
  271. public Criteria andIdBetween(Integer value1, Integer value2) {
  272. addCriterion("ID between", value1, value2, "id");
  273. return this;
  274. }
  275. public Criteria andIdNotBetween(Integer value1, Integer value2) {
  276. addCriterion("ID not between", value1, value2, "id");
  277. return this;
  278. }
  279. public Criteria andYhidIsNull() {
  280. addCriterion("YHID is null");
  281. return this;
  282. }
  283. public Criteria andYhidIsNotNull() {
  284. addCriterion("YHID is not null");
  285. return this;
  286. }
  287. public Criteria andYhidEqualTo(Integer value) {
  288. addCriterion("YHID =", value, "yhid");
  289. return this;
  290. }
  291. public Criteria andYhidNotEqualTo(Integer value) {
  292. addCriterion("YHID <>", value, "yhid");
  293. return this;
  294. }
  295. public Criteria andYhidGreaterThan(Integer value) {
  296. addCriterion("YHID >", value, "yhid");
  297. return this;
  298. }
  299. public Criteria andYhidGreaterThanOrEqualTo(Integer value) {
  300. addCriterion("YHID >=", value, "yhid");
  301. return this;
  302. }
  303. public Criteria andYhidLessThan(Integer value) {
  304. addCriterion("YHID <", value, "yhid");
  305. return this;
  306. }
  307. public Criteria andYhidLessThanOrEqualTo(Integer value) {
  308. addCriterion("YHID <=", value, "yhid");
  309. return this;
  310. }
  311. public Criteria andYhidIn(List<Integer> values) {
  312. addCriterion("YHID in", values, "yhid");
  313. return this;
  314. }
  315. public Criteria andYhidNotIn(List<Integer> values) {
  316. addCriterion("YHID not in", values, "yhid");
  317. return this;
  318. }
  319. public Criteria andYhidBetween(Integer value1, Integer value2) {
  320. addCriterion("YHID between", value1, value2, "yhid");
  321. return this;
  322. }
  323. public Criteria andYhidNotBetween(Integer value1, Integer value2) {
  324. addCriterion("YHID not between", value1, value2, "yhid");
  325. return this;
  326. }
  327. public Criteria andYhxmIsNull() {
  328. addCriterion("YHXM is null");
  329. return this;
  330. }
  331. public Criteria andYhxmIsNotNull() {
  332. addCriterion("YHXM is not null");
  333. return this;
  334. }
  335. public Criteria andYhxmEqualTo(String value) {
  336. addCriterion("YHXM =", value, "yhxm");
  337. return this;
  338. }
  339. public Criteria andYhxmNotEqualTo(String value) {
  340. addCriterion("YHXM <>", value, "yhxm");
  341. return this;
  342. }
  343. public Criteria andYhxmGreaterThan(String value) {
  344. addCriterion("YHXM >", value, "yhxm");
  345. return this;
  346. }
  347. public Criteria andYhxmGreaterThanOrEqualTo(String value) {
  348. addCriterion("YHXM >=", value, "yhxm");
  349. return this;
  350. }
  351. public Criteria andYhxmLessThan(String value) {
  352. addCriterion("YHXM <", value, "yhxm");
  353. return this;
  354. }
  355. public Criteria andYhxmLessThanOrEqualTo(String value) {
  356. addCriterion("YHXM <=", value, "yhxm");
  357. return this;
  358. }
  359. public Criteria andYhxmLike(String value) {
  360. addCriterion("YHXM like", value, "yhxm");
  361. return this;
  362. }
  363. public Criteria andYhxmNotLike(String value) {
  364. addCriterion("YHXM not like", value, "yhxm");
  365. return this;
  366. }
  367. public Criteria andYhxmIn(List<String> values) {
  368. addCriterion("YHXM in", values, "yhxm");
  369. return this;
  370. }
  371. public Criteria andYhxmNotIn(List<String> values) {
  372. addCriterion("YHXM not in", values, "yhxm");
  373. return this;
  374. }
  375. public Criteria andYhxmBetween(String value1, String value2) {
  376. addCriterion("YHXM between", value1, value2, "yhxm");
  377. return this;
  378. }
  379. public Criteria andYhxmNotBetween(String value1, String value2) {
  380. addCriterion("YHXM not between", value1, value2, "yhxm");
  381. return this;
  382. }
  383. public Criteria andFwsjIsNull() {
  384. addCriterion("FWSJ is null");
  385. return this;
  386. }
  387. public Criteria andFwsjIsNotNull() {
  388. addCriterion("FWSJ is not null");
  389. return this;
  390. }
  391. public Criteria andFwsjEqualTo(Date value) {
  392. addCriterion("FWSJ =", value, "fwsj");
  393. return this;
  394. }
  395. public Criteria andFwsjNotEqualTo(Date value) {
  396. addCriterion("FWSJ <>", value, "fwsj");
  397. return this;
  398. }
  399. public Criteria andFwsjGreaterThan(Date value) {
  400. addCriterion("FWSJ >", value, "fwsj");
  401. return this;
  402. }
  403. public Criteria andFwsjGreaterThanOrEqualTo(Date value) {
  404. addCriterion("FWSJ >=", value, "fwsj");
  405. return this;
  406. }
  407. public Criteria andFwsjLessThan(Date value) {
  408. addCriterion("FWSJ <", value, "fwsj");
  409. return this;
  410. }
  411. public Criteria andFwsjLessThanOrEqualTo(Date value) {
  412. addCriterion("FWSJ <=", value, "fwsj");
  413. return this;
  414. }
  415. public Criteria andFwsjIn(List<Date> values) {
  416. addCriterion("FWSJ in", values, "fwsj");
  417. return this;
  418. }
  419. public Criteria andFwsjNotIn(List<Date> values) {
  420. addCriterion("FWSJ not in", values, "fwsj");
  421. return this;
  422. }
  423. public Criteria andFwsjBetween(Date value1, Date value2) {
  424. addCriterion("FWSJ between", value1, value2, "fwsj");
  425. return this;
  426. }
  427. public Criteria andFwsjNotBetween(Date value1, Date value2) {
  428. addCriterion("FWSJ not between", value1, value2, "fwsj");
  429. return this;
  430. }
  431. public Criteria andTcsjIsNull() {
  432. addCriterion("TCSJ is null");
  433. return this;
  434. }
  435. public Criteria andTcsjIsNotNull() {
  436. addCriterion("TCSJ is not null");
  437. return this;
  438. }
  439. public Criteria andTcsjEqualTo(Date value) {
  440. addCriterion("TCSJ =", value, "tcsj");
  441. return this;
  442. }
  443. public Criteria andTcsjNotEqualTo(Date value) {
  444. addCriterion("TCSJ <>", value, "tcsj");
  445. return this;
  446. }
  447. public Criteria andTcsjGreaterThan(Date value) {
  448. addCriterion("TCSJ >", value, "tcsj");
  449. return this;
  450. }
  451. public Criteria andTcsjGreaterThanOrEqualTo(Date value) {
  452. addCriterion("TCSJ >=", value, "tcsj");
  453. return this;
  454. }
  455. public Criteria andTcsjLessThan(Date value) {
  456. addCriterion("TCSJ <", value, "tcsj");
  457. return this;
  458. }
  459. public Criteria andTcsjLessThanOrEqualTo(Date value) {
  460. addCriterion("TCSJ <=", value, "tcsj");
  461. return this;
  462. }
  463. public Criteria andTcsjIn(List<Date> values) {
  464. addCriterion("TCSJ in", values, "tcsj");
  465. return this;
  466. }
  467. public Criteria andTcsjNotIn(List<Date> values) {
  468. addCriterion("TCSJ not in", values, "tcsj");
  469. return this;
  470. }
  471. public Criteria andTcsjBetween(Date value1, Date value2) {
  472. addCriterion("TCSJ between", value1, value2, "tcsj");
  473. return this;
  474. }
  475. public Criteria andTcsjNotBetween(Date value1, Date value2) {
  476. addCriterion("TCSJ not between", value1, value2, "tcsj");
  477. return this;
  478. }
  479. public Criteria andDlddIsNull() {
  480. addCriterion("DLDD is null");
  481. return this;
  482. }
  483. public Criteria andDlddIsNotNull() {
  484. addCriterion("DLDD is not null");
  485. return this;
  486. }
  487. public Criteria andDlddEqualTo(String value) {
  488. addCriterion("DLDD =", value, "dldd");
  489. return this;
  490. }
  491. public Criteria andDlddNotEqualTo(String value) {
  492. addCriterion("DLDD <>", value, "dldd");
  493. return this;
  494. }
  495. public Criteria andDlddGreaterThan(String value) {
  496. addCriterion("DLDD >", value, "dldd");
  497. return this;
  498. }
  499. public Criteria andDlddGreaterThanOrEqualTo(String value) {
  500. addCriterion("DLDD >=", value, "dldd");
  501. return this;
  502. }
  503. public Criteria andDlddLessThan(String value) {
  504. addCriterion("DLDD <", value, "dldd");
  505. return this;
  506. }
  507. public Criteria andDlddLessThanOrEqualTo(String value) {
  508. addCriterion("DLDD <=", value, "dldd");
  509. return this;
  510. }
  511. public Criteria andDlddLike(String value) {
  512. addCriterion("DLDD like", value, "dldd");
  513. return this;
  514. }
  515. public Criteria andDlddNotLike(String value) {
  516. addCriterion("DLDD not like", value, "dldd");
  517. return this;
  518. }
  519. public Criteria andDlddIn(List<String> values) {
  520. addCriterion("DLDD in", values, "dldd");
  521. return this;
  522. }
  523. public Criteria andDlddNotIn(List<String> values) {
  524. addCriterion("DLDD not in", values, "dldd");
  525. return this;
  526. }
  527. public Criteria andDlddBetween(String value1, String value2) {
  528. addCriterion("DLDD between", value1, value2, "dldd");
  529. return this;
  530. }
  531. public Criteria andDlddNotBetween(String value1, String value2) {
  532. addCriterion("DLDD not between", value1, value2, "dldd");
  533. return this;
  534. }
  535. public Criteria andIpIsNull() {
  536. addCriterion("IP is null");
  537. return this;
  538. }
  539. public Criteria andIpIsNotNull() {
  540. addCriterion("IP is not null");
  541. return this;
  542. }
  543. public Criteria andIpEqualTo(String value) {
  544. addCriterion("IP =", value, "ip");
  545. return this;
  546. }
  547. public Criteria andIpNotEqualTo(String value) {
  548. addCriterion("IP <>", value, "ip");
  549. return this;
  550. }
  551. public Criteria andIpGreaterThan(String value) {
  552. addCriterion("IP >", value, "ip");
  553. return this;
  554. }
  555. public Criteria andIpGreaterThanOrEqualTo(String value) {
  556. addCriterion("IP >=", value, "ip");
  557. return this;
  558. }
  559. public Criteria andIpLessThan(String value) {
  560. addCriterion("IP <", value, "ip");
  561. return this;
  562. }
  563. public Criteria andIpLessThanOrEqualTo(String value) {
  564. addCriterion("IP <=", value, "ip");
  565. return this;
  566. }
  567. public Criteria andIpLike(String value) {
  568. addCriterion("IP like", value, "ip");
  569. return this;
  570. }
  571. public Criteria andIpNotLike(String value) {
  572. addCriterion("IP not like", value, "ip");
  573. return this;
  574. }
  575. public Criteria andIpIn(List<String> values) {
  576. addCriterion("IP in", values, "ip");
  577. return this;
  578. }
  579. public Criteria andIpNotIn(List<String> values) {
  580. addCriterion("IP not in", values, "ip");
  581. return this;
  582. }
  583. public Criteria andIpBetween(String value1, String value2) {
  584. addCriterion("IP between", value1, value2, "ip");
  585. return this;
  586. }
  587. public Criteria andIpNotBetween(String value1, String value2) {
  588. addCriterion("IP not between", value1, value2, "ip");
  589. return this;
  590. }
  591. public Criteria andFwfsIsNull() {
  592. addCriterion("FWFS is null");
  593. return this;
  594. }
  595. public Criteria andFwfsIsNotNull() {
  596. addCriterion("FWFS is not null");
  597. return this;
  598. }
  599. public Criteria andFwfsEqualTo(String value) {
  600. addCriterion("FWFS =", value, "fwfs");
  601. return this;
  602. }
  603. public Criteria andFwfsNotEqualTo(String value) {
  604. addCriterion("FWFS <>", value, "fwfs");
  605. return this;
  606. }
  607. public Criteria andFwfsGreaterThan(String value) {
  608. addCriterion("FWFS >", value, "fwfs");
  609. return this;
  610. }
  611. public Criteria andFwfsGreaterThanOrEqualTo(String value) {
  612. addCriterion("FWFS >=", value, "fwfs");
  613. return this;
  614. }
  615. public Criteria andFwfsLessThan(String value) {
  616. addCriterion("FWFS <", value, "fwfs");
  617. return this;
  618. }
  619. public Criteria andFwfsLessThanOrEqualTo(String value) {
  620. addCriterion("FWFS <=", value, "fwfs");
  621. return this;
  622. }
  623. public Criteria andFwfsLike(String value) {
  624. addCriterion("FWFS like", value, "fwfs");
  625. return this;
  626. }
  627. public Criteria andFwfsNotLike(String value) {
  628. addCriterion("FWFS not like", value, "fwfs");
  629. return this;
  630. }
  631. public Criteria andFwfsIn(List<String> values) {
  632. addCriterion("FWFS in", values, "fwfs");
  633. return this;
  634. }
  635. public Criteria andFwfsNotIn(List<String> values) {
  636. addCriterion("FWFS not in", values, "fwfs");
  637. return this;
  638. }
  639. public Criteria andFwfsBetween(String value1, String value2) {
  640. addCriterion("FWFS between", value1, value2, "fwfs");
  641. return this;
  642. }
  643. public Criteria andFwfsNotBetween(String value1, String value2) {
  644. addCriterion("FWFS not between", value1, value2, "fwfs");
  645. return this;
  646. }
  647. public Criteria andDlfsIsNull() {
  648. addCriterion("DLFS is null");
  649. return this;
  650. }
  651. public Criteria andDlfsIsNotNull() {
  652. addCriterion("DLFS is not null");
  653. return this;
  654. }
  655. public Criteria andDlfsEqualTo(String value) {
  656. addCriterion("DLFS =", value, "dlfs");
  657. return this;
  658. }
  659. public Criteria andDlfsNotEqualTo(String value) {
  660. addCriterion("DLFS <>", value, "dlfs");
  661. return this;
  662. }
  663. public Criteria andDlfsGreaterThan(String value) {
  664. addCriterion("DLFS >", value, "dlfs");
  665. return this;
  666. }
  667. public Criteria andDlfsGreaterThanOrEqualTo(String value) {
  668. addCriterion("DLFS >=", value, "dlfs");
  669. return this;
  670. }
  671. public Criteria andDlfsLessThan(String value) {
  672. addCriterion("DLFS <", value, "dlfs");
  673. return this;
  674. }
  675. public Criteria andDlfsLessThanOrEqualTo(String value) {
  676. addCriterion("DLFS <=", value, "dlfs");
  677. return this;
  678. }
  679. public Criteria andDlfsLike(String value) {
  680. addCriterion("DLFS like", value, "dlfs");
  681. return this;
  682. }
  683. public Criteria andDlfsNotLike(String value) {
  684. addCriterion("DLFS not like", value, "dlfs");
  685. return this;
  686. }
  687. public Criteria andDlfsIn(List<String> values) {
  688. addCriterion("DLFS in", values, "dlfs");
  689. return this;
  690. }
  691. public Criteria andDlfsNotIn(List<String> values) {
  692. addCriterion("DLFS not in", values, "dlfs");
  693. return this;
  694. }
  695. public Criteria andDlfsBetween(String value1, String value2) {
  696. addCriterion("DLFS between", value1, value2, "dlfs");
  697. return this;
  698. }
  699. public Criteria andDlfsNotBetween(String value1, String value2) {
  700. addCriterion("DLFS not between", value1, value2, "dlfs");
  701. return this;
  702. }
  703. public Criteria andSblxIsNull() {
  704. addCriterion("SBLX is null");
  705. return this;
  706. }
  707. public Criteria andSblxIsNotNull() {
  708. addCriterion("SBLX is not null");
  709. return this;
  710. }
  711. public Criteria andSblxEqualTo(String value) {
  712. addCriterion("SBLX =", value, "sblx");
  713. return this;
  714. }
  715. public Criteria andSblxNotEqualTo(String value) {
  716. addCriterion("SBLX <>", value, "sblx");
  717. return this;
  718. }
  719. public Criteria andSblxGreaterThan(String value) {
  720. addCriterion("SBLX >", value, "sblx");
  721. return this;
  722. }
  723. public Criteria andSblxGreaterThanOrEqualTo(String value) {
  724. addCriterion("SBLX >=", value, "sblx");
  725. return this;
  726. }
  727. public Criteria andSblxLessThan(String value) {
  728. addCriterion("SBLX <", value, "sblx");
  729. return this;
  730. }
  731. public Criteria andSblxLessThanOrEqualTo(String value) {
  732. addCriterion("SBLX <=", value, "sblx");
  733. return this;
  734. }
  735. public Criteria andSblxLike(String value) {
  736. addCriterion("SBLX like", value, "sblx");
  737. return this;
  738. }
  739. public Criteria andSblxNotLike(String value) {
  740. addCriterion("SBLX not like", value, "sblx");
  741. return this;
  742. }
  743. public Criteria andSblxIn(List<String> values) {
  744. addCriterion("SBLX in", values, "sblx");
  745. return this;
  746. }
  747. public Criteria andSblxNotIn(List<String> values) {
  748. addCriterion("SBLX not in", values, "sblx");
  749. return this;
  750. }
  751. public Criteria andSblxBetween(String value1, String value2) {
  752. addCriterion("SBLX between", value1, value2, "sblx");
  753. return this;
  754. }
  755. public Criteria andSblxNotBetween(String value1, String value2) {
  756. addCriterion("SBLX not between", value1, value2, "sblx");
  757. return this;
  758. }
  759. public Criteria andCzxtIsNull() {
  760. addCriterion("CZXT is null");
  761. return this;
  762. }
  763. public Criteria andCzxtIsNotNull() {
  764. addCriterion("CZXT is not null");
  765. return this;
  766. }
  767. public Criteria andCzxtEqualTo(String value) {
  768. addCriterion("CZXT =", value, "czxt");
  769. return this;
  770. }
  771. public Criteria andCzxtNotEqualTo(String value) {
  772. addCriterion("CZXT <>", value, "czxt");
  773. return this;
  774. }
  775. public Criteria andCzxtGreaterThan(String value) {
  776. addCriterion("CZXT >", value, "czxt");
  777. return this;
  778. }
  779. public Criteria andCzxtGreaterThanOrEqualTo(String value) {
  780. addCriterion("CZXT >=", value, "czxt");
  781. return this;
  782. }
  783. public Criteria andCzxtLessThan(String value) {
  784. addCriterion("CZXT <", value, "czxt");
  785. return this;
  786. }
  787. public Criteria andCzxtLessThanOrEqualTo(String value) {
  788. addCriterion("CZXT <=", value, "czxt");
  789. return this;
  790. }
  791. public Criteria andCzxtLike(String value) {
  792. addCriterion("CZXT like", value, "czxt");
  793. return this;
  794. }
  795. public Criteria andCzxtNotLike(String value) {
  796. addCriterion("CZXT not like", value, "czxt");
  797. return this;
  798. }
  799. public Criteria andCzxtIn(List<String> values) {
  800. addCriterion("CZXT in", values, "czxt");
  801. return this;
  802. }
  803. public Criteria andCzxtNotIn(List<String> values) {
  804. addCriterion("CZXT not in", values, "czxt");
  805. return this;
  806. }
  807. public Criteria andCzxtBetween(String value1, String value2) {
  808. addCriterion("CZXT between", value1, value2, "czxt");
  809. return this;
  810. }
  811. public Criteria andCzxtNotBetween(String value1, String value2) {
  812. addCriterion("CZXT not between", value1, value2, "czxt");
  813. return this;
  814. }
  815. public Criteria andSbbzIsNull() {
  816. addCriterion("SBBZ is null");
  817. return this;
  818. }
  819. public Criteria andSbbzIsNotNull() {
  820. addCriterion("SBBZ is not null");
  821. return this;
  822. }
  823. public Criteria andSbbzEqualTo(String value) {
  824. addCriterion("SBBZ =", value, "sbbz");
  825. return this;
  826. }
  827. public Criteria andSbbzNotEqualTo(String value) {
  828. addCriterion("SBBZ <>", value, "sbbz");
  829. return this;
  830. }
  831. public Criteria andSbbzGreaterThan(String value) {
  832. addCriterion("SBBZ >", value, "sbbz");
  833. return this;
  834. }
  835. public Criteria andSbbzGreaterThanOrEqualTo(String value) {
  836. addCriterion("SBBZ >=", value, "sbbz");
  837. return this;
  838. }
  839. public Criteria andSbbzLessThan(String value) {
  840. addCriterion("SBBZ <", value, "sbbz");
  841. return this;
  842. }
  843. public Criteria andSbbzLessThanOrEqualTo(String value) {
  844. addCriterion("SBBZ <=", value, "sbbz");
  845. return this;
  846. }
  847. public Criteria andSbbzLike(String value) {
  848. addCriterion("SBBZ like", value, "sbbz");
  849. return this;
  850. }
  851. public Criteria andSbbzNotLike(String value) {
  852. addCriterion("SBBZ not like", value, "sbbz");
  853. return this;
  854. }
  855. public Criteria andSbbzIn(List<String> values) {
  856. addCriterion("SBBZ in", values, "sbbz");
  857. return this;
  858. }
  859. public Criteria andSbbzNotIn(List<String> values) {
  860. addCriterion("SBBZ not in", values, "sbbz");
  861. return this;
  862. }
  863. public Criteria andSbbzBetween(String value1, String value2) {
  864. addCriterion("SBBZ between", value1, value2, "sbbz");
  865. return this;
  866. }
  867. public Criteria andSbbzNotBetween(String value1, String value2) {
  868. addCriterion("SBBZ not between", value1, value2, "sbbz");
  869. return this;
  870. }
  871. public Criteria andBzIsNull() {
  872. addCriterion("BZ is null");
  873. return this;
  874. }
  875. public Criteria andBzIsNotNull() {
  876. addCriterion("BZ is not null");
  877. return this;
  878. }
  879. public Criteria andBzEqualTo(String value) {
  880. addCriterion("BZ =", value, "bz");
  881. return this;
  882. }
  883. public Criteria andBzNotEqualTo(String value) {
  884. addCriterion("BZ <>", value, "bz");
  885. return this;
  886. }
  887. public Criteria andBzGreaterThan(String value) {
  888. addCriterion("BZ >", value, "bz");
  889. return this;
  890. }
  891. public Criteria andBzGreaterThanOrEqualTo(String value) {
  892. addCriterion("BZ >=", value, "bz");
  893. return this;
  894. }
  895. public Criteria andBzLessThan(String value) {
  896. addCriterion("BZ <", value, "bz");
  897. return this;
  898. }
  899. public Criteria andBzLessThanOrEqualTo(String value) {
  900. addCriterion("BZ <=", value, "bz");
  901. return this;
  902. }
  903. public Criteria andBzLike(String value) {
  904. addCriterion("BZ like", value, "bz");
  905. return this;
  906. }
  907. public Criteria andBzNotLike(String value) {
  908. addCriterion("BZ not like", value, "bz");
  909. return this;
  910. }
  911. public Criteria andBzIn(List<String> values) {
  912. addCriterion("BZ in", values, "bz");
  913. return this;
  914. }
  915. public Criteria andBzNotIn(List<String> values) {
  916. addCriterion("BZ not in", values, "bz");
  917. return this;
  918. }
  919. public Criteria andBzBetween(String value1, String value2) {
  920. addCriterion("BZ between", value1, value2, "bz");
  921. return this;
  922. }
  923. public Criteria andBzNotBetween(String value1, String value2) {
  924. addCriterion("BZ not between", value1, value2, "bz");
  925. return this;
  926. }
  927. }
  928. }