XtCzyhExample.java 53 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824
  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 XtCzyhExample {
  8. /**
  9. * This field was generated by Apache iBATIS ibator.
  10. * This field corresponds to the database table xt_czyh
  11. *
  12. * @ibatorgenerated Wed Jul 09 14:41:24 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_czyh
  18. *
  19. * @ibatorgenerated Wed Jul 09 14:41:24 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_czyh
  25. *
  26. * @ibatorgenerated Wed Jul 09 14:41:24 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_czyh
  32. *
  33. * @ibatorgenerated Wed Jul 09 14:41:24 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_czyh
  39. *
  40. * @ibatorgenerated Wed Jul 09 14:41:24 CST 2014
  41. */
  42. public XtCzyhExample() {
  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_czyh
  48. *
  49. * @ibatorgenerated Wed Jul 09 14:41:24 CST 2014
  50. */
  51. protected XtCzyhExample(XtCzyhExample 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_czyh
  58. *
  59. * @ibatorgenerated Wed Jul 09 14:41:24 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_czyh
  67. *
  68. * @ibatorgenerated Wed Jul 09 14:41:24 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_czyh
  76. *
  77. * @ibatorgenerated Wed Jul 09 14:41:24 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_czyh
  85. *
  86. * @ibatorgenerated Wed Jul 09 14:41:24 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_czyh
  94. *
  95. * @ibatorgenerated Wed Jul 09 14:41:24 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_czyh
  107. *
  108. * @ibatorgenerated Wed Jul 09 14:41:24 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_czyh
  117. *
  118. * @ibatorgenerated Wed Jul 09 14:41:24 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_czyh
  126. *
  127. * @ibatorgenerated Wed Jul 09 14:41:24 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_czyh
  135. *
  136. * @ibatorgenerated Wed Jul 09 14:41:24 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_czyh
  144. *
  145. * @ibatorgenerated Wed Jul 09 14:41:24 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_czyh
  153. *
  154. * @ibatorgenerated Wed Jul 09 14:41:24 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_czyh
  162. *
  163. * @ibatorgenerated Wed Jul 09 14:41:24 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 andQyidIsNull() {
  280. addCriterion("QYID is null");
  281. return this;
  282. }
  283. public Criteria andQyidIsNotNull() {
  284. addCriterion("QYID is not null");
  285. return this;
  286. }
  287. public Criteria andQyidEqualTo(Integer value) {
  288. addCriterion("QYID =", value, "qyid");
  289. return this;
  290. }
  291. public Criteria andQyidNotEqualTo(Integer value) {
  292. addCriterion("QYID <>", value, "qyid");
  293. return this;
  294. }
  295. public Criteria andQyidGreaterThan(Integer value) {
  296. addCriterion("QYID >", value, "qyid");
  297. return this;
  298. }
  299. public Criteria andQyidGreaterThanOrEqualTo(Integer value) {
  300. addCriterion("QYID >=", value, "qyid");
  301. return this;
  302. }
  303. public Criteria andQyidLessThan(Integer value) {
  304. addCriterion("QYID <", value, "qyid");
  305. return this;
  306. }
  307. public Criteria andQyidLessThanOrEqualTo(Integer value) {
  308. addCriterion("QYID <=", value, "qyid");
  309. return this;
  310. }
  311. public Criteria andQyidIn(List<Integer> values) {
  312. addCriterion("QYID in", values, "qyid");
  313. return this;
  314. }
  315. public Criteria andQyidNotIn(List<Integer> values) {
  316. addCriterion("QYID not in", values, "qyid");
  317. return this;
  318. }
  319. public Criteria andQyidBetween(Integer value1, Integer value2) {
  320. addCriterion("QYID between", value1, value2, "qyid");
  321. return this;
  322. }
  323. public Criteria andQyidNotBetween(Integer value1, Integer value2) {
  324. addCriterion("QYID not between", value1, value2, "qyid");
  325. return this;
  326. }
  327. public Criteria andQymcIsNull() {
  328. addCriterion("QYMC is null");
  329. return this;
  330. }
  331. public Criteria andQymcIsNotNull() {
  332. addCriterion("QYMC is not null");
  333. return this;
  334. }
  335. public Criteria andQymcEqualTo(String value) {
  336. addCriterion("QYMC =", value, "qymc");
  337. return this;
  338. }
  339. public Criteria andQymcNotEqualTo(String value) {
  340. addCriterion("QYMC <>", value, "qymc");
  341. return this;
  342. }
  343. public Criteria andQymcGreaterThan(String value) {
  344. addCriterion("QYMC >", value, "qymc");
  345. return this;
  346. }
  347. public Criteria andQymcGreaterThanOrEqualTo(String value) {
  348. addCriterion("QYMC >=", value, "qymc");
  349. return this;
  350. }
  351. public Criteria andQymcLessThan(String value) {
  352. addCriterion("QYMC <", value, "qymc");
  353. return this;
  354. }
  355. public Criteria andQymcLessThanOrEqualTo(String value) {
  356. addCriterion("QYMC <=", value, "qymc");
  357. return this;
  358. }
  359. public Criteria andQymcLike(String value) {
  360. addCriterion("QYMC like", value, "qymc");
  361. return this;
  362. }
  363. public Criteria andQymcNotLike(String value) {
  364. addCriterion("QYMC not like", value, "qymc");
  365. return this;
  366. }
  367. public Criteria andQymcIn(List<String> values) {
  368. addCriterion("QYMC in", values, "qymc");
  369. return this;
  370. }
  371. public Criteria andQymcNotIn(List<String> values) {
  372. addCriterion("QYMC not in", values, "qymc");
  373. return this;
  374. }
  375. public Criteria andQymcBetween(String value1, String value2) {
  376. addCriterion("QYMC between", value1, value2, "qymc");
  377. return this;
  378. }
  379. public Criteria andQymcNotBetween(String value1, String value2) {
  380. addCriterion("QYMC not between", value1, value2, "qymc");
  381. return this;
  382. }
  383. public Criteria andMcidIsNull() {
  384. addCriterion("MCID is null");
  385. return this;
  386. }
  387. public Criteria andMcidIsNotNull() {
  388. addCriterion("MCID is not null");
  389. return this;
  390. }
  391. public Criteria andMcidEqualTo(Integer value) {
  392. addCriterion("MCID =", value, "mcid");
  393. return this;
  394. }
  395. public Criteria andMcidNotEqualTo(Integer value) {
  396. addCriterion("MCID <>", value, "mcid");
  397. return this;
  398. }
  399. public Criteria andMcidGreaterThan(Integer value) {
  400. addCriterion("MCID >", value, "mcid");
  401. return this;
  402. }
  403. public Criteria andMcidGreaterThanOrEqualTo(Integer value) {
  404. addCriterion("MCID >=", value, "mcid");
  405. return this;
  406. }
  407. public Criteria andMcidLessThan(Integer value) {
  408. addCriterion("MCID <", value, "mcid");
  409. return this;
  410. }
  411. public Criteria andMcidLessThanOrEqualTo(Integer value) {
  412. addCriterion("MCID <=", value, "mcid");
  413. return this;
  414. }
  415. public Criteria andMcidIn(List<Integer> values) {
  416. addCriterion("MCID in", values, "mcid");
  417. return this;
  418. }
  419. public Criteria andMcidNotIn(List<Integer> values) {
  420. addCriterion("MCID not in", values, "mcid");
  421. return this;
  422. }
  423. public Criteria andMcidBetween(Integer value1, Integer value2) {
  424. addCriterion("MCID between", value1, value2, "mcid");
  425. return this;
  426. }
  427. public Criteria andMcidNotBetween(Integer value1, Integer value2) {
  428. addCriterion("MCID not between", value1, value2, "mcid");
  429. return this;
  430. }
  431. public Criteria andMcmcIsNull() {
  432. addCriterion("MCMC is null");
  433. return this;
  434. }
  435. public Criteria andMcmcIsNotNull() {
  436. addCriterion("MCMC is not null");
  437. return this;
  438. }
  439. public Criteria andMcmcEqualTo(String value) {
  440. addCriterion("MCMC =", value, "mcmc");
  441. return this;
  442. }
  443. public Criteria andMcmcNotEqualTo(String value) {
  444. addCriterion("MCMC <>", value, "mcmc");
  445. return this;
  446. }
  447. public Criteria andMcmcGreaterThan(String value) {
  448. addCriterion("MCMC >", value, "mcmc");
  449. return this;
  450. }
  451. public Criteria andMcmcGreaterThanOrEqualTo(String value) {
  452. addCriterion("MCMC >=", value, "mcmc");
  453. return this;
  454. }
  455. public Criteria andMcmcLessThan(String value) {
  456. addCriterion("MCMC <", value, "mcmc");
  457. return this;
  458. }
  459. public Criteria andMcmcLessThanOrEqualTo(String value) {
  460. addCriterion("MCMC <=", value, "mcmc");
  461. return this;
  462. }
  463. public Criteria andMcmcLike(String value) {
  464. addCriterion("MCMC like", value, "mcmc");
  465. return this;
  466. }
  467. public Criteria andMcmcNotLike(String value) {
  468. addCriterion("MCMC not like", value, "mcmc");
  469. return this;
  470. }
  471. public Criteria andMcmcIn(List<String> values) {
  472. addCriterion("MCMC in", values, "mcmc");
  473. return this;
  474. }
  475. public Criteria andMcmcNotIn(List<String> values) {
  476. addCriterion("MCMC not in", values, "mcmc");
  477. return this;
  478. }
  479. public Criteria andMcmcBetween(String value1, String value2) {
  480. addCriterion("MCMC between", value1, value2, "mcmc");
  481. return this;
  482. }
  483. public Criteria andMcmcNotBetween(String value1, String value2) {
  484. addCriterion("MCMC not between", value1, value2, "mcmc");
  485. return this;
  486. }
  487. public Criteria andGhIsNull() {
  488. addCriterion("GH is null");
  489. return this;
  490. }
  491. public Criteria andGhIsNotNull() {
  492. addCriterion("GH is not null");
  493. return this;
  494. }
  495. public Criteria andGhEqualTo(String value) {
  496. addCriterion("GH =", value, "gh");
  497. return this;
  498. }
  499. public Criteria andGhNotEqualTo(String value) {
  500. addCriterion("GH <>", value, "gh");
  501. return this;
  502. }
  503. public Criteria andGhGreaterThan(String value) {
  504. addCriterion("GH >", value, "gh");
  505. return this;
  506. }
  507. public Criteria andGhGreaterThanOrEqualTo(String value) {
  508. addCriterion("GH >=", value, "gh");
  509. return this;
  510. }
  511. public Criteria andGhLessThan(String value) {
  512. addCriterion("GH <", value, "gh");
  513. return this;
  514. }
  515. public Criteria andGhLessThanOrEqualTo(String value) {
  516. addCriterion("GH <=", value, "gh");
  517. return this;
  518. }
  519. public Criteria andGhLike(String value) {
  520. addCriterion("GH like", value, "gh");
  521. return this;
  522. }
  523. public Criteria andGhNotLike(String value) {
  524. addCriterion("GH not like", value, "gh");
  525. return this;
  526. }
  527. public Criteria andGhIn(List<String> values) {
  528. addCriterion("GH in", values, "gh");
  529. return this;
  530. }
  531. public Criteria andGhNotIn(List<String> values) {
  532. addCriterion("GH not in", values, "gh");
  533. return this;
  534. }
  535. public Criteria andGhBetween(String value1, String value2) {
  536. addCriterion("GH between", value1, value2, "gh");
  537. return this;
  538. }
  539. public Criteria andGhNotBetween(String value1, String value2) {
  540. addCriterion("GH not between", value1, value2, "gh");
  541. return this;
  542. }
  543. public Criteria andYhmIsNull() {
  544. addCriterion("YHM is null");
  545. return this;
  546. }
  547. public Criteria andYhmIsNotNull() {
  548. addCriterion("YHM is not null");
  549. return this;
  550. }
  551. public Criteria andYhmEqualTo(String value) {
  552. addCriterion("YHM =", value, "yhm");
  553. return this;
  554. }
  555. public Criteria andYhmNotEqualTo(String value) {
  556. addCriterion("YHM <>", value, "yhm");
  557. return this;
  558. }
  559. public Criteria andYhmGreaterThan(String value) {
  560. addCriterion("YHM >", value, "yhm");
  561. return this;
  562. }
  563. public Criteria andYhmGreaterThanOrEqualTo(String value) {
  564. addCriterion("YHM >=", value, "yhm");
  565. return this;
  566. }
  567. public Criteria andYhmLessThan(String value) {
  568. addCriterion("YHM <", value, "yhm");
  569. return this;
  570. }
  571. public Criteria andYhmLessThanOrEqualTo(String value) {
  572. addCriterion("YHM <=", value, "yhm");
  573. return this;
  574. }
  575. public Criteria andYhmLike(String value) {
  576. addCriterion("YHM like", value, "yhm");
  577. return this;
  578. }
  579. public Criteria andYhmNotLike(String value) {
  580. addCriterion("YHM not like", value, "yhm");
  581. return this;
  582. }
  583. public Criteria andYhmIn(List<String> values) {
  584. addCriterion("YHM in", values, "yhm");
  585. return this;
  586. }
  587. public Criteria andYhmNotIn(List<String> values) {
  588. addCriterion("YHM not in", values, "yhm");
  589. return this;
  590. }
  591. public Criteria andYhmBetween(String value1, String value2) {
  592. addCriterion("YHM between", value1, value2, "yhm");
  593. return this;
  594. }
  595. public Criteria andYhmNotBetween(String value1, String value2) {
  596. addCriterion("YHM not between", value1, value2, "yhm");
  597. return this;
  598. }
  599. public Criteria andYhxmIsNull() {
  600. addCriterion("YHXM is null");
  601. return this;
  602. }
  603. public Criteria andYhxmIsNotNull() {
  604. addCriterion("YHXM is not null");
  605. return this;
  606. }
  607. public Criteria andYhxmEqualTo(String value) {
  608. addCriterion("YHXM =", value, "yhxm");
  609. return this;
  610. }
  611. public Criteria andYhxmNotEqualTo(String value) {
  612. addCriterion("YHXM <>", value, "yhxm");
  613. return this;
  614. }
  615. public Criteria andYhxmGreaterThan(String value) {
  616. addCriterion("YHXM >", value, "yhxm");
  617. return this;
  618. }
  619. public Criteria andYhxmGreaterThanOrEqualTo(String value) {
  620. addCriterion("YHXM >=", value, "yhxm");
  621. return this;
  622. }
  623. public Criteria andYhxmLessThan(String value) {
  624. addCriterion("YHXM <", value, "yhxm");
  625. return this;
  626. }
  627. public Criteria andYhxmLessThanOrEqualTo(String value) {
  628. addCriterion("YHXM <=", value, "yhxm");
  629. return this;
  630. }
  631. public Criteria andYhxmLike(String value) {
  632. addCriterion("YHXM like", value, "yhxm");
  633. return this;
  634. }
  635. public Criteria andYhxmNotLike(String value) {
  636. addCriterion("YHXM not like", value, "yhxm");
  637. return this;
  638. }
  639. public Criteria andYhxmIn(List<String> values) {
  640. addCriterion("YHXM in", values, "yhxm");
  641. return this;
  642. }
  643. public Criteria andYhxmNotIn(List<String> values) {
  644. addCriterion("YHXM not in", values, "yhxm");
  645. return this;
  646. }
  647. public Criteria andYhxmBetween(String value1, String value2) {
  648. addCriterion("YHXM between", value1, value2, "yhxm");
  649. return this;
  650. }
  651. public Criteria andYhxmNotBetween(String value1, String value2) {
  652. addCriterion("YHXM not between", value1, value2, "yhxm");
  653. return this;
  654. }
  655. public Criteria andYhncIsNull() {
  656. addCriterion("YHNC is null");
  657. return this;
  658. }
  659. public Criteria andYhncIsNotNull() {
  660. addCriterion("YHNC is not null");
  661. return this;
  662. }
  663. public Criteria andYhncEqualTo(String value) {
  664. addCriterion("YHNC =", value, "yhnc");
  665. return this;
  666. }
  667. public Criteria andYhncNotEqualTo(String value) {
  668. addCriterion("YHNC <>", value, "yhnc");
  669. return this;
  670. }
  671. public Criteria andYhncGreaterThan(String value) {
  672. addCriterion("YHNC >", value, "yhnc");
  673. return this;
  674. }
  675. public Criteria andYhncGreaterThanOrEqualTo(String value) {
  676. addCriterion("YHNC >=", value, "yhnc");
  677. return this;
  678. }
  679. public Criteria andYhncLessThan(String value) {
  680. addCriterion("YHNC <", value, "yhnc");
  681. return this;
  682. }
  683. public Criteria andYhncLessThanOrEqualTo(String value) {
  684. addCriterion("YHNC <=", value, "yhnc");
  685. return this;
  686. }
  687. public Criteria andYhncLike(String value) {
  688. addCriterion("YHNC like", value, "yhnc");
  689. return this;
  690. }
  691. public Criteria andYhncNotLike(String value) {
  692. addCriterion("YHNC not like", value, "yhnc");
  693. return this;
  694. }
  695. public Criteria andYhncIn(List<String> values) {
  696. addCriterion("YHNC in", values, "yhnc");
  697. return this;
  698. }
  699. public Criteria andYhncNotIn(List<String> values) {
  700. addCriterion("YHNC not in", values, "yhnc");
  701. return this;
  702. }
  703. public Criteria andYhncBetween(String value1, String value2) {
  704. addCriterion("YHNC between", value1, value2, "yhnc");
  705. return this;
  706. }
  707. public Criteria andYhncNotBetween(String value1, String value2) {
  708. addCriterion("YHNC not between", value1, value2, "yhnc");
  709. return this;
  710. }
  711. public Criteria andZwIsNull() {
  712. addCriterion("ZW is null");
  713. return this;
  714. }
  715. public Criteria andZwIsNotNull() {
  716. addCriterion("ZW is not null");
  717. return this;
  718. }
  719. public Criteria andZwEqualTo(String value) {
  720. addCriterion("ZW =", value, "zw");
  721. return this;
  722. }
  723. public Criteria andZwNotEqualTo(String value) {
  724. addCriterion("ZW <>", value, "zw");
  725. return this;
  726. }
  727. public Criteria andZwGreaterThan(String value) {
  728. addCriterion("ZW >", value, "zw");
  729. return this;
  730. }
  731. public Criteria andZwGreaterThanOrEqualTo(String value) {
  732. addCriterion("ZW >=", value, "zw");
  733. return this;
  734. }
  735. public Criteria andZwLessThan(String value) {
  736. addCriterion("ZW <", value, "zw");
  737. return this;
  738. }
  739. public Criteria andZwLessThanOrEqualTo(String value) {
  740. addCriterion("ZW <=", value, "zw");
  741. return this;
  742. }
  743. public Criteria andZwLike(String value) {
  744. addCriterion("ZW like", value, "zw");
  745. return this;
  746. }
  747. public Criteria andZwNotLike(String value) {
  748. addCriterion("ZW not like", value, "zw");
  749. return this;
  750. }
  751. public Criteria andZwIn(List<String> values) {
  752. addCriterion("ZW in", values, "zw");
  753. return this;
  754. }
  755. public Criteria andZwNotIn(List<String> values) {
  756. addCriterion("ZW not in", values, "zw");
  757. return this;
  758. }
  759. public Criteria andZwBetween(String value1, String value2) {
  760. addCriterion("ZW between", value1, value2, "zw");
  761. return this;
  762. }
  763. public Criteria andZwNotBetween(String value1, String value2) {
  764. addCriterion("ZW not between", value1, value2, "zw");
  765. return this;
  766. }
  767. public Criteria andYhmmIsNull() {
  768. addCriterion("YHMM is null");
  769. return this;
  770. }
  771. public Criteria andYhmmIsNotNull() {
  772. addCriterion("YHMM is not null");
  773. return this;
  774. }
  775. public Criteria andYhmmEqualTo(String value) {
  776. addCriterion("YHMM =", value, "yhmm");
  777. return this;
  778. }
  779. public Criteria andYhmmNotEqualTo(String value) {
  780. addCriterion("YHMM <>", value, "yhmm");
  781. return this;
  782. }
  783. public Criteria andYhmmGreaterThan(String value) {
  784. addCriterion("YHMM >", value, "yhmm");
  785. return this;
  786. }
  787. public Criteria andYhmmGreaterThanOrEqualTo(String value) {
  788. addCriterion("YHMM >=", value, "yhmm");
  789. return this;
  790. }
  791. public Criteria andYhmmLessThan(String value) {
  792. addCriterion("YHMM <", value, "yhmm");
  793. return this;
  794. }
  795. public Criteria andYhmmLessThanOrEqualTo(String value) {
  796. addCriterion("YHMM <=", value, "yhmm");
  797. return this;
  798. }
  799. public Criteria andYhmmLike(String value) {
  800. addCriterion("YHMM like", value, "yhmm");
  801. return this;
  802. }
  803. public Criteria andYhmmNotLike(String value) {
  804. addCriterion("YHMM not like", value, "yhmm");
  805. return this;
  806. }
  807. public Criteria andYhmmIn(List<String> values) {
  808. addCriterion("YHMM in", values, "yhmm");
  809. return this;
  810. }
  811. public Criteria andYhmmNotIn(List<String> values) {
  812. addCriterion("YHMM not in", values, "yhmm");
  813. return this;
  814. }
  815. public Criteria andYhmmBetween(String value1, String value2) {
  816. addCriterion("YHMM between", value1, value2, "yhmm");
  817. return this;
  818. }
  819. public Criteria andYhmmNotBetween(String value1, String value2) {
  820. addCriterion("YHMM not between", value1, value2, "yhmm");
  821. return this;
  822. }
  823. public Criteria andLxdhIsNull() {
  824. addCriterion("LXDH is null");
  825. return this;
  826. }
  827. public Criteria andLxdhIsNotNull() {
  828. addCriterion("LXDH is not null");
  829. return this;
  830. }
  831. public Criteria andLxdhEqualTo(String value) {
  832. addCriterion("LXDH =", value, "lxdh");
  833. return this;
  834. }
  835. public Criteria andLxdhNotEqualTo(String value) {
  836. addCriterion("LXDH <>", value, "lxdh");
  837. return this;
  838. }
  839. public Criteria andLxdhGreaterThan(String value) {
  840. addCriterion("LXDH >", value, "lxdh");
  841. return this;
  842. }
  843. public Criteria andLxdhGreaterThanOrEqualTo(String value) {
  844. addCriterion("LXDH >=", value, "lxdh");
  845. return this;
  846. }
  847. public Criteria andLxdhLessThan(String value) {
  848. addCriterion("LXDH <", value, "lxdh");
  849. return this;
  850. }
  851. public Criteria andLxdhLessThanOrEqualTo(String value) {
  852. addCriterion("LXDH <=", value, "lxdh");
  853. return this;
  854. }
  855. public Criteria andLxdhLike(String value) {
  856. addCriterion("LXDH like", value, "lxdh");
  857. return this;
  858. }
  859. public Criteria andLxdhNotLike(String value) {
  860. addCriterion("LXDH not like", value, "lxdh");
  861. return this;
  862. }
  863. public Criteria andLxdhIn(List<String> values) {
  864. addCriterion("LXDH in", values, "lxdh");
  865. return this;
  866. }
  867. public Criteria andLxdhNotIn(List<String> values) {
  868. addCriterion("LXDH not in", values, "lxdh");
  869. return this;
  870. }
  871. public Criteria andLxdhBetween(String value1, String value2) {
  872. addCriterion("LXDH between", value1, value2, "lxdh");
  873. return this;
  874. }
  875. public Criteria andLxdhNotBetween(String value1, String value2) {
  876. addCriterion("LXDH not between", value1, value2, "lxdh");
  877. return this;
  878. }
  879. public Criteria andEmailIsNull() {
  880. addCriterion("EMAIL is null");
  881. return this;
  882. }
  883. public Criteria andEmailIsNotNull() {
  884. addCriterion("EMAIL is not null");
  885. return this;
  886. }
  887. public Criteria andEmailEqualTo(String value) {
  888. addCriterion("EMAIL =", value, "email");
  889. return this;
  890. }
  891. public Criteria andEmailNotEqualTo(String value) {
  892. addCriterion("EMAIL <>", value, "email");
  893. return this;
  894. }
  895. public Criteria andEmailGreaterThan(String value) {
  896. addCriterion("EMAIL >", value, "email");
  897. return this;
  898. }
  899. public Criteria andEmailGreaterThanOrEqualTo(String value) {
  900. addCriterion("EMAIL >=", value, "email");
  901. return this;
  902. }
  903. public Criteria andEmailLessThan(String value) {
  904. addCriterion("EMAIL <", value, "email");
  905. return this;
  906. }
  907. public Criteria andEmailLessThanOrEqualTo(String value) {
  908. addCriterion("EMAIL <=", value, "email");
  909. return this;
  910. }
  911. public Criteria andEmailLike(String value) {
  912. addCriterion("EMAIL like", value, "email");
  913. return this;
  914. }
  915. public Criteria andEmailNotLike(String value) {
  916. addCriterion("EMAIL not like", value, "email");
  917. return this;
  918. }
  919. public Criteria andEmailIn(List<String> values) {
  920. addCriterion("EMAIL in", values, "email");
  921. return this;
  922. }
  923. public Criteria andEmailNotIn(List<String> values) {
  924. addCriterion("EMAIL not in", values, "email");
  925. return this;
  926. }
  927. public Criteria andEmailBetween(String value1, String value2) {
  928. addCriterion("EMAIL between", value1, value2, "email");
  929. return this;
  930. }
  931. public Criteria andEmailNotBetween(String value1, String value2) {
  932. addCriterion("EMAIL not between", value1, value2, "email");
  933. return this;
  934. }
  935. public Criteria andSrfsIsNull() {
  936. addCriterion("SRFS is null");
  937. return this;
  938. }
  939. public Criteria andSrfsIsNotNull() {
  940. addCriterion("SRFS is not null");
  941. return this;
  942. }
  943. public Criteria andSrfsEqualTo(String value) {
  944. addCriterion("SRFS =", value, "srfs");
  945. return this;
  946. }
  947. public Criteria andSrfsNotEqualTo(String value) {
  948. addCriterion("SRFS <>", value, "srfs");
  949. return this;
  950. }
  951. public Criteria andSrfsGreaterThan(String value) {
  952. addCriterion("SRFS >", value, "srfs");
  953. return this;
  954. }
  955. public Criteria andSrfsGreaterThanOrEqualTo(String value) {
  956. addCriterion("SRFS >=", value, "srfs");
  957. return this;
  958. }
  959. public Criteria andSrfsLessThan(String value) {
  960. addCriterion("SRFS <", value, "srfs");
  961. return this;
  962. }
  963. public Criteria andSrfsLessThanOrEqualTo(String value) {
  964. addCriterion("SRFS <=", value, "srfs");
  965. return this;
  966. }
  967. public Criteria andSrfsLike(String value) {
  968. addCriterion("SRFS like", value, "srfs");
  969. return this;
  970. }
  971. public Criteria andSrfsNotLike(String value) {
  972. addCriterion("SRFS not like", value, "srfs");
  973. return this;
  974. }
  975. public Criteria andSrfsIn(List<String> values) {
  976. addCriterion("SRFS in", values, "srfs");
  977. return this;
  978. }
  979. public Criteria andSrfsNotIn(List<String> values) {
  980. addCriterion("SRFS not in", values, "srfs");
  981. return this;
  982. }
  983. public Criteria andSrfsBetween(String value1, String value2) {
  984. addCriterion("SRFS between", value1, value2, "srfs");
  985. return this;
  986. }
  987. public Criteria andSrfsNotBetween(String value1, String value2) {
  988. addCriterion("SRFS not between", value1, value2, "srfs");
  989. return this;
  990. }
  991. public Criteria andPymIsNull() {
  992. addCriterion("PYM is null");
  993. return this;
  994. }
  995. public Criteria andPymIsNotNull() {
  996. addCriterion("PYM is not null");
  997. return this;
  998. }
  999. public Criteria andPymEqualTo(String value) {
  1000. addCriterion("PYM =", value, "pym");
  1001. return this;
  1002. }
  1003. public Criteria andPymNotEqualTo(String value) {
  1004. addCriterion("PYM <>", value, "pym");
  1005. return this;
  1006. }
  1007. public Criteria andPymGreaterThan(String value) {
  1008. addCriterion("PYM >", value, "pym");
  1009. return this;
  1010. }
  1011. public Criteria andPymGreaterThanOrEqualTo(String value) {
  1012. addCriterion("PYM >=", value, "pym");
  1013. return this;
  1014. }
  1015. public Criteria andPymLessThan(String value) {
  1016. addCriterion("PYM <", value, "pym");
  1017. return this;
  1018. }
  1019. public Criteria andPymLessThanOrEqualTo(String value) {
  1020. addCriterion("PYM <=", value, "pym");
  1021. return this;
  1022. }
  1023. public Criteria andPymLike(String value) {
  1024. addCriterion("PYM like", value, "pym");
  1025. return this;
  1026. }
  1027. public Criteria andPymNotLike(String value) {
  1028. addCriterion("PYM not like", value, "pym");
  1029. return this;
  1030. }
  1031. public Criteria andPymIn(List<String> values) {
  1032. addCriterion("PYM in", values, "pym");
  1033. return this;
  1034. }
  1035. public Criteria andPymNotIn(List<String> values) {
  1036. addCriterion("PYM not in", values, "pym");
  1037. return this;
  1038. }
  1039. public Criteria andPymBetween(String value1, String value2) {
  1040. addCriterion("PYM between", value1, value2, "pym");
  1041. return this;
  1042. }
  1043. public Criteria andPymNotBetween(String value1, String value2) {
  1044. addCriterion("PYM not between", value1, value2, "pym");
  1045. return this;
  1046. }
  1047. public Criteria andWbmIsNull() {
  1048. addCriterion("WBM is null");
  1049. return this;
  1050. }
  1051. public Criteria andWbmIsNotNull() {
  1052. addCriterion("WBM is not null");
  1053. return this;
  1054. }
  1055. public Criteria andWbmEqualTo(String value) {
  1056. addCriterion("WBM =", value, "wbm");
  1057. return this;
  1058. }
  1059. public Criteria andWbmNotEqualTo(String value) {
  1060. addCriterion("WBM <>", value, "wbm");
  1061. return this;
  1062. }
  1063. public Criteria andWbmGreaterThan(String value) {
  1064. addCriterion("WBM >", value, "wbm");
  1065. return this;
  1066. }
  1067. public Criteria andWbmGreaterThanOrEqualTo(String value) {
  1068. addCriterion("WBM >=", value, "wbm");
  1069. return this;
  1070. }
  1071. public Criteria andWbmLessThan(String value) {
  1072. addCriterion("WBM <", value, "wbm");
  1073. return this;
  1074. }
  1075. public Criteria andWbmLessThanOrEqualTo(String value) {
  1076. addCriterion("WBM <=", value, "wbm");
  1077. return this;
  1078. }
  1079. public Criteria andWbmLike(String value) {
  1080. addCriterion("WBM like", value, "wbm");
  1081. return this;
  1082. }
  1083. public Criteria andWbmNotLike(String value) {
  1084. addCriterion("WBM not like", value, "wbm");
  1085. return this;
  1086. }
  1087. public Criteria andWbmIn(List<String> values) {
  1088. addCriterion("WBM in", values, "wbm");
  1089. return this;
  1090. }
  1091. public Criteria andWbmNotIn(List<String> values) {
  1092. addCriterion("WBM not in", values, "wbm");
  1093. return this;
  1094. }
  1095. public Criteria andWbmBetween(String value1, String value2) {
  1096. addCriterion("WBM between", value1, value2, "wbm");
  1097. return this;
  1098. }
  1099. public Criteria andWbmNotBetween(String value1, String value2) {
  1100. addCriterion("WBM not between", value1, value2, "wbm");
  1101. return this;
  1102. }
  1103. public Criteria andXgrIsNull() {
  1104. addCriterion("XGR is null");
  1105. return this;
  1106. }
  1107. public Criteria andXgrIsNotNull() {
  1108. addCriterion("XGR is not null");
  1109. return this;
  1110. }
  1111. public Criteria andXgrEqualTo(String value) {
  1112. addCriterion("XGR =", value, "xgr");
  1113. return this;
  1114. }
  1115. public Criteria andXgrNotEqualTo(String value) {
  1116. addCriterion("XGR <>", value, "xgr");
  1117. return this;
  1118. }
  1119. public Criteria andXgrGreaterThan(String value) {
  1120. addCriterion("XGR >", value, "xgr");
  1121. return this;
  1122. }
  1123. public Criteria andXgrGreaterThanOrEqualTo(String value) {
  1124. addCriterion("XGR >=", value, "xgr");
  1125. return this;
  1126. }
  1127. public Criteria andXgrLessThan(String value) {
  1128. addCriterion("XGR <", value, "xgr");
  1129. return this;
  1130. }
  1131. public Criteria andXgrLessThanOrEqualTo(String value) {
  1132. addCriterion("XGR <=", value, "xgr");
  1133. return this;
  1134. }
  1135. public Criteria andXgrLike(String value) {
  1136. addCriterion("XGR like", value, "xgr");
  1137. return this;
  1138. }
  1139. public Criteria andXgrNotLike(String value) {
  1140. addCriterion("XGR not like", value, "xgr");
  1141. return this;
  1142. }
  1143. public Criteria andXgrIn(List<String> values) {
  1144. addCriterion("XGR in", values, "xgr");
  1145. return this;
  1146. }
  1147. public Criteria andXgrNotIn(List<String> values) {
  1148. addCriterion("XGR not in", values, "xgr");
  1149. return this;
  1150. }
  1151. public Criteria andXgrBetween(String value1, String value2) {
  1152. addCriterion("XGR between", value1, value2, "xgr");
  1153. return this;
  1154. }
  1155. public Criteria andXgrNotBetween(String value1, String value2) {
  1156. addCriterion("XGR not between", value1, value2, "xgr");
  1157. return this;
  1158. }
  1159. public Criteria andXgsjIsNull() {
  1160. addCriterion("XGSJ is null");
  1161. return this;
  1162. }
  1163. public Criteria andXgsjIsNotNull() {
  1164. addCriterion("XGSJ is not null");
  1165. return this;
  1166. }
  1167. public Criteria andXgsjEqualTo(Date value) {
  1168. addCriterion("XGSJ =", value, "xgsj");
  1169. return this;
  1170. }
  1171. public Criteria andXgsjNotEqualTo(Date value) {
  1172. addCriterion("XGSJ <>", value, "xgsj");
  1173. return this;
  1174. }
  1175. public Criteria andXgsjGreaterThan(Date value) {
  1176. addCriterion("XGSJ >", value, "xgsj");
  1177. return this;
  1178. }
  1179. public Criteria andXgsjGreaterThanOrEqualTo(Date value) {
  1180. addCriterion("XGSJ >=", value, "xgsj");
  1181. return this;
  1182. }
  1183. public Criteria andXgsjLessThan(Date value) {
  1184. addCriterion("XGSJ <", value, "xgsj");
  1185. return this;
  1186. }
  1187. public Criteria andXgsjLessThanOrEqualTo(Date value) {
  1188. addCriterion("XGSJ <=", value, "xgsj");
  1189. return this;
  1190. }
  1191. public Criteria andXgsjIn(List<Date> values) {
  1192. addCriterion("XGSJ in", values, "xgsj");
  1193. return this;
  1194. }
  1195. public Criteria andXgsjNotIn(List<Date> values) {
  1196. addCriterion("XGSJ not in", values, "xgsj");
  1197. return this;
  1198. }
  1199. public Criteria andXgsjBetween(Date value1, Date value2) {
  1200. addCriterion("XGSJ between", value1, value2, "xgsj");
  1201. return this;
  1202. }
  1203. public Criteria andXgsjNotBetween(Date value1, Date value2) {
  1204. addCriterion("XGSJ not between", value1, value2, "xgsj");
  1205. return this;
  1206. }
  1207. public Criteria andLrrIsNull() {
  1208. addCriterion("LRR is null");
  1209. return this;
  1210. }
  1211. public Criteria andLrrIsNotNull() {
  1212. addCriterion("LRR is not null");
  1213. return this;
  1214. }
  1215. public Criteria andLrrEqualTo(String value) {
  1216. addCriterion("LRR =", value, "lrr");
  1217. return this;
  1218. }
  1219. public Criteria andLrrNotEqualTo(String value) {
  1220. addCriterion("LRR <>", value, "lrr");
  1221. return this;
  1222. }
  1223. public Criteria andLrrGreaterThan(String value) {
  1224. addCriterion("LRR >", value, "lrr");
  1225. return this;
  1226. }
  1227. public Criteria andLrrGreaterThanOrEqualTo(String value) {
  1228. addCriterion("LRR >=", value, "lrr");
  1229. return this;
  1230. }
  1231. public Criteria andLrrLessThan(String value) {
  1232. addCriterion("LRR <", value, "lrr");
  1233. return this;
  1234. }
  1235. public Criteria andLrrLessThanOrEqualTo(String value) {
  1236. addCriterion("LRR <=", value, "lrr");
  1237. return this;
  1238. }
  1239. public Criteria andLrrLike(String value) {
  1240. addCriterion("LRR like", value, "lrr");
  1241. return this;
  1242. }
  1243. public Criteria andLrrNotLike(String value) {
  1244. addCriterion("LRR not like", value, "lrr");
  1245. return this;
  1246. }
  1247. public Criteria andLrrIn(List<String> values) {
  1248. addCriterion("LRR in", values, "lrr");
  1249. return this;
  1250. }
  1251. public Criteria andLrrNotIn(List<String> values) {
  1252. addCriterion("LRR not in", values, "lrr");
  1253. return this;
  1254. }
  1255. public Criteria andLrrBetween(String value1, String value2) {
  1256. addCriterion("LRR between", value1, value2, "lrr");
  1257. return this;
  1258. }
  1259. public Criteria andLrrNotBetween(String value1, String value2) {
  1260. addCriterion("LRR not between", value1, value2, "lrr");
  1261. return this;
  1262. }
  1263. public Criteria andZfbzIsNull() {
  1264. addCriterion("ZFBZ is null");
  1265. return this;
  1266. }
  1267. public Criteria andZfbzIsNotNull() {
  1268. addCriterion("ZFBZ is not null");
  1269. return this;
  1270. }
  1271. public Criteria andZfbzEqualTo(Integer value) {
  1272. addCriterion("ZFBZ =", value, "zfbz");
  1273. return this;
  1274. }
  1275. public Criteria andZfbzNotEqualTo(Integer value) {
  1276. addCriterion("ZFBZ <>", value, "zfbz");
  1277. return this;
  1278. }
  1279. public Criteria andZfbzGreaterThan(Integer value) {
  1280. addCriterion("ZFBZ >", value, "zfbz");
  1281. return this;
  1282. }
  1283. public Criteria andZfbzGreaterThanOrEqualTo(Integer value) {
  1284. addCriterion("ZFBZ >=", value, "zfbz");
  1285. return this;
  1286. }
  1287. public Criteria andZfbzLessThan(Integer value) {
  1288. addCriterion("ZFBZ <", value, "zfbz");
  1289. return this;
  1290. }
  1291. public Criteria andZfbzLessThanOrEqualTo(Integer value) {
  1292. addCriterion("ZFBZ <=", value, "zfbz");
  1293. return this;
  1294. }
  1295. public Criteria andZfbzIn(List<Integer> values) {
  1296. addCriterion("ZFBZ in", values, "zfbz");
  1297. return this;
  1298. }
  1299. public Criteria andZfbzNotIn(List<Integer> values) {
  1300. addCriterion("ZFBZ not in", values, "zfbz");
  1301. return this;
  1302. }
  1303. public Criteria andZfbzBetween(Integer value1, Integer value2) {
  1304. addCriterion("ZFBZ between", value1, value2, "zfbz");
  1305. return this;
  1306. }
  1307. public Criteria andZfbzNotBetween(Integer value1, Integer value2) {
  1308. addCriterion("ZFBZ not between", value1, value2, "zfbz");
  1309. return this;
  1310. }
  1311. public Criteria andQhbmIsNull() {
  1312. addCriterion("QHBM is null");
  1313. return this;
  1314. }
  1315. public Criteria andQhbmIsNotNull() {
  1316. addCriterion("QHBM is not null");
  1317. return this;
  1318. }
  1319. public Criteria andQhbmEqualTo(String value) {
  1320. addCriterion("QHBM =", value, "qhbm");
  1321. return this;
  1322. }
  1323. public Criteria andQhbmNotEqualTo(String value) {
  1324. addCriterion("QHBM <>", value, "qhbm");
  1325. return this;
  1326. }
  1327. public Criteria andQhbmGreaterThan(String value) {
  1328. addCriterion("QHBM >", value, "qhbm");
  1329. return this;
  1330. }
  1331. public Criteria andQhbmGreaterThanOrEqualTo(String value) {
  1332. addCriterion("QHBM >=", value, "qhbm");
  1333. return this;
  1334. }
  1335. public Criteria andQhbmLessThan(String value) {
  1336. addCriterion("QHBM <", value, "qhbm");
  1337. return this;
  1338. }
  1339. public Criteria andQhbmLessThanOrEqualTo(String value) {
  1340. addCriterion("QHBM <=", value, "qhbm");
  1341. return this;
  1342. }
  1343. public Criteria andQhbmLike(String value) {
  1344. addCriterion("QHBM like", value, "qhbm");
  1345. return this;
  1346. }
  1347. public Criteria andQhbmNotLike(String value) {
  1348. addCriterion("QHBM not like", value, "qhbm");
  1349. return this;
  1350. }
  1351. public Criteria andQhbmIn(List<String> values) {
  1352. addCriterion("QHBM in", values, "qhbm");
  1353. return this;
  1354. }
  1355. public Criteria andQhbmNotIn(List<String> values) {
  1356. addCriterion("QHBM not in", values, "qhbm");
  1357. return this;
  1358. }
  1359. public Criteria andQhbmBetween(String value1, String value2) {
  1360. addCriterion("QHBM between", value1, value2, "qhbm");
  1361. return this;
  1362. }
  1363. public Criteria andQhbmNotBetween(String value1, String value2) {
  1364. addCriterion("QHBM not between", value1, value2, "qhbm");
  1365. return this;
  1366. }
  1367. public Criteria andQhmcIsNull() {
  1368. addCriterion("QHMC is null");
  1369. return this;
  1370. }
  1371. public Criteria andQhmcIsNotNull() {
  1372. addCriterion("QHMC is not null");
  1373. return this;
  1374. }
  1375. public Criteria andQhmcEqualTo(String value) {
  1376. addCriterion("QHMC =", value, "qhmc");
  1377. return this;
  1378. }
  1379. public Criteria andQhmcNotEqualTo(String value) {
  1380. addCriterion("QHMC <>", value, "qhmc");
  1381. return this;
  1382. }
  1383. public Criteria andQhmcGreaterThan(String value) {
  1384. addCriterion("QHMC >", value, "qhmc");
  1385. return this;
  1386. }
  1387. public Criteria andQhmcGreaterThanOrEqualTo(String value) {
  1388. addCriterion("QHMC >=", value, "qhmc");
  1389. return this;
  1390. }
  1391. public Criteria andQhmcLessThan(String value) {
  1392. addCriterion("QHMC <", value, "qhmc");
  1393. return this;
  1394. }
  1395. public Criteria andQhmcLessThanOrEqualTo(String value) {
  1396. addCriterion("QHMC <=", value, "qhmc");
  1397. return this;
  1398. }
  1399. public Criteria andQhmcLike(String value) {
  1400. addCriterion("QHMC like", value, "qhmc");
  1401. return this;
  1402. }
  1403. public Criteria andQhmcNotLike(String value) {
  1404. addCriterion("QHMC not like", value, "qhmc");
  1405. return this;
  1406. }
  1407. public Criteria andQhmcIn(List<String> values) {
  1408. addCriterion("QHMC in", values, "qhmc");
  1409. return this;
  1410. }
  1411. public Criteria andQhmcNotIn(List<String> values) {
  1412. addCriterion("QHMC not in", values, "qhmc");
  1413. return this;
  1414. }
  1415. public Criteria andQhmcBetween(String value1, String value2) {
  1416. addCriterion("QHMC between", value1, value2, "qhmc");
  1417. return this;
  1418. }
  1419. public Criteria andQhmcNotBetween(String value1, String value2) {
  1420. addCriterion("QHMC not between", value1, value2, "qhmc");
  1421. return this;
  1422. }
  1423. public Criteria andXxwIsNull() {
  1424. addCriterion("XXW is null");
  1425. return this;
  1426. }
  1427. public Criteria andXxwIsNotNull() {
  1428. addCriterion("XXW is not null");
  1429. return this;
  1430. }
  1431. public Criteria andXxwEqualTo(String value) {
  1432. addCriterion("XXW =", value, "xxw");
  1433. return this;
  1434. }
  1435. public Criteria andXxwNotEqualTo(String value) {
  1436. addCriterion("XXW <>", value, "xxw");
  1437. return this;
  1438. }
  1439. public Criteria andXxwGreaterThan(String value) {
  1440. addCriterion("XXW >", value, "xxw");
  1441. return this;
  1442. }
  1443. public Criteria andXxwGreaterThanOrEqualTo(String value) {
  1444. addCriterion("XXW >=", value, "xxw");
  1445. return this;
  1446. }
  1447. public Criteria andXxwLessThan(String value) {
  1448. addCriterion("XXW <", value, "xxw");
  1449. return this;
  1450. }
  1451. public Criteria andXxwLessThanOrEqualTo(String value) {
  1452. addCriterion("XXW <=", value, "xxw");
  1453. return this;
  1454. }
  1455. public Criteria andXxwLike(String value) {
  1456. addCriterion("XXW like", value, "xxw");
  1457. return this;
  1458. }
  1459. public Criteria andXxwNotLike(String value) {
  1460. addCriterion("XXW not like", value, "xxw");
  1461. return this;
  1462. }
  1463. public Criteria andXxwIn(List<String> values) {
  1464. addCriterion("XXW in", values, "xxw");
  1465. return this;
  1466. }
  1467. public Criteria andXxwNotIn(List<String> values) {
  1468. addCriterion("XXW not in", values, "xxw");
  1469. return this;
  1470. }
  1471. public Criteria andXxwBetween(String value1, String value2) {
  1472. addCriterion("XXW between", value1, value2, "xxw");
  1473. return this;
  1474. }
  1475. public Criteria andXxwNotBetween(String value1, String value2) {
  1476. addCriterion("XXW not between", value1, value2, "xxw");
  1477. return this;
  1478. }
  1479. }
  1480. }