DaJqdaExample.java 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764
  1. package com.huimv.da.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 DaJqdaExample {
  8. /**
  9. * This field was generated by Apache iBATIS ibator.
  10. * This field corresponds to the database table da_jqda
  11. *
  12. * @ibatorgenerated Tue Apr 21 10:24:49 CST 2020
  13. */
  14. protected String orderByClause;
  15. /**
  16. * This field was generated by Apache iBATIS ibator.
  17. * This field corresponds to the database table da_jqda
  18. *
  19. * @ibatorgenerated Tue Apr 21 10:24:49 CST 2020
  20. */
  21. protected List<Criteria> oredCriteria;
  22. /**
  23. * This field was generated by Apache iBATIS ibator.
  24. * This field corresponds to the database table da_jqda
  25. *
  26. * @ibatorgenerated Tue Apr 21 10:24:49 CST 2020
  27. */
  28. protected int start = -1;
  29. /**
  30. * This field was generated by Apache iBATIS ibator.
  31. * This field corresponds to the database table da_jqda
  32. *
  33. * @ibatorgenerated Tue Apr 21 10:24:49 CST 2020
  34. */
  35. protected int limit = -1;
  36. /**
  37. * This method was generated by Apache iBATIS ibator.
  38. * This method corresponds to the database table da_jqda
  39. *
  40. * @ibatorgenerated Tue Apr 21 10:24:49 CST 2020
  41. */
  42. public DaJqdaExample() {
  43. oredCriteria = new ArrayList<Criteria>();
  44. }
  45. /**
  46. * This method was generated by Apache iBATIS ibator.
  47. * This method corresponds to the database table da_jqda
  48. *
  49. * @ibatorgenerated Tue Apr 21 10:24:49 CST 2020
  50. */
  51. protected DaJqdaExample(DaJqdaExample 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 da_jqda
  58. *
  59. * @ibatorgenerated Tue Apr 21 10:24:49 CST 2020
  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 da_jqda
  67. *
  68. * @ibatorgenerated Tue Apr 21 10:24:49 CST 2020
  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 da_jqda
  76. *
  77. * @ibatorgenerated Tue Apr 21 10:24:49 CST 2020
  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 da_jqda
  85. *
  86. * @ibatorgenerated Tue Apr 21 10:24:49 CST 2020
  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 da_jqda
  94. *
  95. * @ibatorgenerated Tue Apr 21 10:24:49 CST 2020
  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 da_jqda
  107. *
  108. * @ibatorgenerated Tue Apr 21 10:24:49 CST 2020
  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 da_jqda
  117. *
  118. * @ibatorgenerated Tue Apr 21 10:24:49 CST 2020
  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 da_jqda
  126. *
  127. * @ibatorgenerated Tue Apr 21 10:24:49 CST 2020
  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 da_jqda
  135. *
  136. * @ibatorgenerated Tue Apr 21 10:24:49 CST 2020
  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 da_jqda
  144. *
  145. * @ibatorgenerated Tue Apr 21 10:24:49 CST 2020
  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 da_jqda
  153. *
  154. * @ibatorgenerated Tue Apr 21 10:24:49 CST 2020
  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 da_jqda
  162. *
  163. * @ibatorgenerated Tue Apr 21 10:24:49 CST 2020
  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 andJqidIsNull() {
  280. addCriterion("JQID is null");
  281. return this;
  282. }
  283. public Criteria andJqidIsNotNull() {
  284. addCriterion("JQID is not null");
  285. return this;
  286. }
  287. public Criteria andJqidEqualTo(String value) {
  288. addCriterion("JQID =", value, "jqid");
  289. return this;
  290. }
  291. public Criteria andJqidNotEqualTo(String value) {
  292. addCriterion("JQID <>", value, "jqid");
  293. return this;
  294. }
  295. public Criteria andJqidGreaterThan(String value) {
  296. addCriterion("JQID >", value, "jqid");
  297. return this;
  298. }
  299. public Criteria andJqidGreaterThanOrEqualTo(String value) {
  300. addCriterion("JQID >=", value, "jqid");
  301. return this;
  302. }
  303. public Criteria andJqidLessThan(String value) {
  304. addCriterion("JQID <", value, "jqid");
  305. return this;
  306. }
  307. public Criteria andJqidLessThanOrEqualTo(String value) {
  308. addCriterion("JQID <=", value, "jqid");
  309. return this;
  310. }
  311. public Criteria andJqidLike(String value) {
  312. addCriterion("JQID like", value, "jqid");
  313. return this;
  314. }
  315. public Criteria andJqidNotLike(String value) {
  316. addCriterion("JQID not like", value, "jqid");
  317. return this;
  318. }
  319. public Criteria andJqidIn(List<String> values) {
  320. addCriterion("JQID in", values, "jqid");
  321. return this;
  322. }
  323. public Criteria andJqidNotIn(List<String> values) {
  324. addCriterion("JQID not in", values, "jqid");
  325. return this;
  326. }
  327. public Criteria andJqidBetween(String value1, String value2) {
  328. addCriterion("JQID between", value1, value2, "jqid");
  329. return this;
  330. }
  331. public Criteria andJqidNotBetween(String value1, String value2) {
  332. addCriterion("JQID not between", value1, value2, "jqid");
  333. return this;
  334. }
  335. public Criteria andZsidIsNull() {
  336. addCriterion("ZSID is null");
  337. return this;
  338. }
  339. public Criteria andZsidIsNotNull() {
  340. addCriterion("ZSID is not null");
  341. return this;
  342. }
  343. public Criteria andZsidEqualTo(Integer value) {
  344. addCriterion("ZSID =", value, "zsid");
  345. return this;
  346. }
  347. public Criteria andZsidNotEqualTo(Integer value) {
  348. addCriterion("ZSID <>", value, "zsid");
  349. return this;
  350. }
  351. public Criteria andZsidGreaterThan(Integer value) {
  352. addCriterion("ZSID >", value, "zsid");
  353. return this;
  354. }
  355. public Criteria andZsidGreaterThanOrEqualTo(Integer value) {
  356. addCriterion("ZSID >=", value, "zsid");
  357. return this;
  358. }
  359. public Criteria andZsidLessThan(Integer value) {
  360. addCriterion("ZSID <", value, "zsid");
  361. return this;
  362. }
  363. public Criteria andZsidLessThanOrEqualTo(Integer value) {
  364. addCriterion("ZSID <=", value, "zsid");
  365. return this;
  366. }
  367. public Criteria andZsidIn(List<Integer> values) {
  368. addCriterion("ZSID in", values, "zsid");
  369. return this;
  370. }
  371. public Criteria andZsidNotIn(List<Integer> values) {
  372. addCriterion("ZSID not in", values, "zsid");
  373. return this;
  374. }
  375. public Criteria andZsidBetween(Integer value1, Integer value2) {
  376. addCriterion("ZSID between", value1, value2, "zsid");
  377. return this;
  378. }
  379. public Criteria andZsidNotBetween(Integer value1, Integer value2) {
  380. addCriterion("ZSID not between", value1, value2, "zsid");
  381. return this;
  382. }
  383. public Criteria andQhbmIsNull() {
  384. addCriterion("QHBM is null");
  385. return this;
  386. }
  387. public Criteria andQhbmIsNotNull() {
  388. addCriterion("QHBM is not null");
  389. return this;
  390. }
  391. public Criteria andQhbmEqualTo(String value) {
  392. addCriterion("QHBM =", value, "qhbm");
  393. return this;
  394. }
  395. public Criteria andQhbmNotEqualTo(String value) {
  396. addCriterion("QHBM <>", value, "qhbm");
  397. return this;
  398. }
  399. public Criteria andQhbmGreaterThan(String value) {
  400. addCriterion("QHBM >", value, "qhbm");
  401. return this;
  402. }
  403. public Criteria andQhbmGreaterThanOrEqualTo(String value) {
  404. addCriterion("QHBM >=", value, "qhbm");
  405. return this;
  406. }
  407. public Criteria andQhbmLessThan(String value) {
  408. addCriterion("QHBM <", value, "qhbm");
  409. return this;
  410. }
  411. public Criteria andQhbmLessThanOrEqualTo(String value) {
  412. addCriterion("QHBM <=", value, "qhbm");
  413. return this;
  414. }
  415. public Criteria andQhbmLike(String value) {
  416. addCriterion("QHBM like", value, "qhbm");
  417. return this;
  418. }
  419. public Criteria andQhbmNotLike(String value) {
  420. addCriterion("QHBM not like", value, "qhbm");
  421. return this;
  422. }
  423. public Criteria andQhbmIn(List<String> values) {
  424. addCriterion("QHBM in", values, "qhbm");
  425. return this;
  426. }
  427. public Criteria andQhbmNotIn(List<String> values) {
  428. addCriterion("QHBM not in", values, "qhbm");
  429. return this;
  430. }
  431. public Criteria andQhbmBetween(String value1, String value2) {
  432. addCriterion("QHBM between", value1, value2, "qhbm");
  433. return this;
  434. }
  435. public Criteria andQhbmNotBetween(String value1, String value2) {
  436. addCriterion("QHBM not between", value1, value2, "qhbm");
  437. return this;
  438. }
  439. public Criteria andMbbbIsNull() {
  440. addCriterion("MBBB is null");
  441. return this;
  442. }
  443. public Criteria andMbbbIsNotNull() {
  444. addCriterion("MBBB is not null");
  445. return this;
  446. }
  447. public Criteria andMbbbEqualTo(String value) {
  448. addCriterion("MBBB =", value, "mbbb");
  449. return this;
  450. }
  451. public Criteria andMbbbNotEqualTo(String value) {
  452. addCriterion("MBBB <>", value, "mbbb");
  453. return this;
  454. }
  455. public Criteria andMbbbGreaterThan(String value) {
  456. addCriterion("MBBB >", value, "mbbb");
  457. return this;
  458. }
  459. public Criteria andMbbbGreaterThanOrEqualTo(String value) {
  460. addCriterion("MBBB >=", value, "mbbb");
  461. return this;
  462. }
  463. public Criteria andMbbbLessThan(String value) {
  464. addCriterion("MBBB <", value, "mbbb");
  465. return this;
  466. }
  467. public Criteria andMbbbLessThanOrEqualTo(String value) {
  468. addCriterion("MBBB <=", value, "mbbb");
  469. return this;
  470. }
  471. public Criteria andMbbbLike(String value) {
  472. addCriterion("MBBB like", value, "mbbb");
  473. return this;
  474. }
  475. public Criteria andMbbbNotLike(String value) {
  476. addCriterion("MBBB not like", value, "mbbb");
  477. return this;
  478. }
  479. public Criteria andMbbbIn(List<String> values) {
  480. addCriterion("MBBB in", values, "mbbb");
  481. return this;
  482. }
  483. public Criteria andMbbbNotIn(List<String> values) {
  484. addCriterion("MBBB not in", values, "mbbb");
  485. return this;
  486. }
  487. public Criteria andMbbbBetween(String value1, String value2) {
  488. addCriterion("MBBB between", value1, value2, "mbbb");
  489. return this;
  490. }
  491. public Criteria andMbbbNotBetween(String value1, String value2) {
  492. addCriterion("MBBB not between", value1, value2, "mbbb");
  493. return this;
  494. }
  495. public Criteria andFtpcmdIsNull() {
  496. addCriterion("FTPCMD is null");
  497. return this;
  498. }
  499. public Criteria andFtpcmdIsNotNull() {
  500. addCriterion("FTPCMD is not null");
  501. return this;
  502. }
  503. public Criteria andFtpcmdEqualTo(String value) {
  504. addCriterion("FTPCMD =", value, "ftpcmd");
  505. return this;
  506. }
  507. public Criteria andFtpcmdNotEqualTo(String value) {
  508. addCriterion("FTPCMD <>", value, "ftpcmd");
  509. return this;
  510. }
  511. public Criteria andFtpcmdGreaterThan(String value) {
  512. addCriterion("FTPCMD >", value, "ftpcmd");
  513. return this;
  514. }
  515. public Criteria andFtpcmdGreaterThanOrEqualTo(String value) {
  516. addCriterion("FTPCMD >=", value, "ftpcmd");
  517. return this;
  518. }
  519. public Criteria andFtpcmdLessThan(String value) {
  520. addCriterion("FTPCMD <", value, "ftpcmd");
  521. return this;
  522. }
  523. public Criteria andFtpcmdLessThanOrEqualTo(String value) {
  524. addCriterion("FTPCMD <=", value, "ftpcmd");
  525. return this;
  526. }
  527. public Criteria andFtpcmdLike(String value) {
  528. addCriterion("FTPCMD like", value, "ftpcmd");
  529. return this;
  530. }
  531. public Criteria andFtpcmdNotLike(String value) {
  532. addCriterion("FTPCMD not like", value, "ftpcmd");
  533. return this;
  534. }
  535. public Criteria andFtpcmdIn(List<String> values) {
  536. addCriterion("FTPCMD in", values, "ftpcmd");
  537. return this;
  538. }
  539. public Criteria andFtpcmdNotIn(List<String> values) {
  540. addCriterion("FTPCMD not in", values, "ftpcmd");
  541. return this;
  542. }
  543. public Criteria andFtpcmdBetween(String value1, String value2) {
  544. addCriterion("FTPCMD between", value1, value2, "ftpcmd");
  545. return this;
  546. }
  547. public Criteria andFtpcmdNotBetween(String value1, String value2) {
  548. addCriterion("FTPCMD not between", value1, value2, "ftpcmd");
  549. return this;
  550. }
  551. public Criteria andXgrIsNull() {
  552. addCriterion("XGR is null");
  553. return this;
  554. }
  555. public Criteria andXgrIsNotNull() {
  556. addCriterion("XGR is not null");
  557. return this;
  558. }
  559. public Criteria andXgrEqualTo(String value) {
  560. addCriterion("XGR =", value, "xgr");
  561. return this;
  562. }
  563. public Criteria andXgrNotEqualTo(String value) {
  564. addCriterion("XGR <>", value, "xgr");
  565. return this;
  566. }
  567. public Criteria andXgrGreaterThan(String value) {
  568. addCriterion("XGR >", value, "xgr");
  569. return this;
  570. }
  571. public Criteria andXgrGreaterThanOrEqualTo(String value) {
  572. addCriterion("XGR >=", value, "xgr");
  573. return this;
  574. }
  575. public Criteria andXgrLessThan(String value) {
  576. addCriterion("XGR <", value, "xgr");
  577. return this;
  578. }
  579. public Criteria andXgrLessThanOrEqualTo(String value) {
  580. addCriterion("XGR <=", value, "xgr");
  581. return this;
  582. }
  583. public Criteria andXgrLike(String value) {
  584. addCriterion("XGR like", value, "xgr");
  585. return this;
  586. }
  587. public Criteria andXgrNotLike(String value) {
  588. addCriterion("XGR not like", value, "xgr");
  589. return this;
  590. }
  591. public Criteria andXgrIn(List<String> values) {
  592. addCriterion("XGR in", values, "xgr");
  593. return this;
  594. }
  595. public Criteria andXgrNotIn(List<String> values) {
  596. addCriterion("XGR not in", values, "xgr");
  597. return this;
  598. }
  599. public Criteria andXgrBetween(String value1, String value2) {
  600. addCriterion("XGR between", value1, value2, "xgr");
  601. return this;
  602. }
  603. public Criteria andXgrNotBetween(String value1, String value2) {
  604. addCriterion("XGR not between", value1, value2, "xgr");
  605. return this;
  606. }
  607. public Criteria andXgsjIsNull() {
  608. addCriterion("XGSJ is null");
  609. return this;
  610. }
  611. public Criteria andXgsjIsNotNull() {
  612. addCriterion("XGSJ is not null");
  613. return this;
  614. }
  615. public Criteria andXgsjEqualTo(Date value) {
  616. addCriterion("XGSJ =", value, "xgsj");
  617. return this;
  618. }
  619. public Criteria andXgsjNotEqualTo(Date value) {
  620. addCriterion("XGSJ <>", value, "xgsj");
  621. return this;
  622. }
  623. public Criteria andXgsjGreaterThan(Date value) {
  624. addCriterion("XGSJ >", value, "xgsj");
  625. return this;
  626. }
  627. public Criteria andXgsjGreaterThanOrEqualTo(Date value) {
  628. addCriterion("XGSJ >=", value, "xgsj");
  629. return this;
  630. }
  631. public Criteria andXgsjLessThan(Date value) {
  632. addCriterion("XGSJ <", value, "xgsj");
  633. return this;
  634. }
  635. public Criteria andXgsjLessThanOrEqualTo(Date value) {
  636. addCriterion("XGSJ <=", value, "xgsj");
  637. return this;
  638. }
  639. public Criteria andXgsjIn(List<Date> values) {
  640. addCriterion("XGSJ in", values, "xgsj");
  641. return this;
  642. }
  643. public Criteria andXgsjNotIn(List<Date> values) {
  644. addCriterion("XGSJ not in", values, "xgsj");
  645. return this;
  646. }
  647. public Criteria andXgsjBetween(Date value1, Date value2) {
  648. addCriterion("XGSJ between", value1, value2, "xgsj");
  649. return this;
  650. }
  651. public Criteria andXgsjNotBetween(Date value1, Date value2) {
  652. addCriterion("XGSJ not between", value1, value2, "xgsj");
  653. return this;
  654. }
  655. public Criteria andZfbzIsNull() {
  656. addCriterion("ZFBZ is null");
  657. return this;
  658. }
  659. public Criteria andZfbzIsNotNull() {
  660. addCriterion("ZFBZ is not null");
  661. return this;
  662. }
  663. public Criteria andZfbzEqualTo(Integer value) {
  664. addCriterion("ZFBZ =", value, "zfbz");
  665. return this;
  666. }
  667. public Criteria andZfbzNotEqualTo(Integer value) {
  668. addCriterion("ZFBZ <>", value, "zfbz");
  669. return this;
  670. }
  671. public Criteria andZfbzGreaterThan(Integer value) {
  672. addCriterion("ZFBZ >", value, "zfbz");
  673. return this;
  674. }
  675. public Criteria andZfbzGreaterThanOrEqualTo(Integer value) {
  676. addCriterion("ZFBZ >=", value, "zfbz");
  677. return this;
  678. }
  679. public Criteria andZfbzLessThan(Integer value) {
  680. addCriterion("ZFBZ <", value, "zfbz");
  681. return this;
  682. }
  683. public Criteria andZfbzLessThanOrEqualTo(Integer value) {
  684. addCriterion("ZFBZ <=", value, "zfbz");
  685. return this;
  686. }
  687. public Criteria andZfbzIn(List<Integer> values) {
  688. addCriterion("ZFBZ in", values, "zfbz");
  689. return this;
  690. }
  691. public Criteria andZfbzNotIn(List<Integer> values) {
  692. addCriterion("ZFBZ not in", values, "zfbz");
  693. return this;
  694. }
  695. public Criteria andZfbzBetween(Integer value1, Integer value2) {
  696. addCriterion("ZFBZ between", value1, value2, "zfbz");
  697. return this;
  698. }
  699. public Criteria andZfbzNotBetween(Integer value1, Integer value2) {
  700. addCriterion("ZFBZ not between", value1, value2, "zfbz");
  701. return this;
  702. }
  703. public Criteria andDqbbIsNull() {
  704. addCriterion("DQBB is null");
  705. return this;
  706. }
  707. public Criteria andDqbbIsNotNull() {
  708. addCriterion("DQBB is not null");
  709. return this;
  710. }
  711. public Criteria andDqbbEqualTo(String value) {
  712. addCriterion("DQBB =", value, "dqbb");
  713. return this;
  714. }
  715. public Criteria andDqbbNotEqualTo(String value) {
  716. addCriterion("DQBB <>", value, "dqbb");
  717. return this;
  718. }
  719. public Criteria andDqbbGreaterThan(String value) {
  720. addCriterion("DQBB >", value, "dqbb");
  721. return this;
  722. }
  723. public Criteria andDqbbGreaterThanOrEqualTo(String value) {
  724. addCriterion("DQBB >=", value, "dqbb");
  725. return this;
  726. }
  727. public Criteria andDqbbLessThan(String value) {
  728. addCriterion("DQBB <", value, "dqbb");
  729. return this;
  730. }
  731. public Criteria andDqbbLessThanOrEqualTo(String value) {
  732. addCriterion("DQBB <=", value, "dqbb");
  733. return this;
  734. }
  735. public Criteria andDqbbLike(String value) {
  736. addCriterion("DQBB like", value, "dqbb");
  737. return this;
  738. }
  739. public Criteria andDqbbNotLike(String value) {
  740. addCriterion("DQBB not like", value, "dqbb");
  741. return this;
  742. }
  743. public Criteria andDqbbIn(List<String> values) {
  744. addCriterion("DQBB in", values, "dqbb");
  745. return this;
  746. }
  747. public Criteria andDqbbNotIn(List<String> values) {
  748. addCriterion("DQBB not in", values, "dqbb");
  749. return this;
  750. }
  751. public Criteria andDqbbBetween(String value1, String value2) {
  752. addCriterion("DQBB between", value1, value2, "dqbb");
  753. return this;
  754. }
  755. public Criteria andDqbbNotBetween(String value1, String value2) {
  756. addCriterion("DQBB not between", value1, value2, "dqbb");
  757. return this;
  758. }
  759. public Criteria andHkdqbbIsNull() {
  760. addCriterion("HKDQBB is null");
  761. return this;
  762. }
  763. public Criteria andHkdqbbIsNotNull() {
  764. addCriterion("HKDQBB is not null");
  765. return this;
  766. }
  767. public Criteria andHkdqbbEqualTo(String value) {
  768. addCriterion("HKDQBB =", value, "hkdqbb");
  769. return this;
  770. }
  771. public Criteria andHkdqbbNotEqualTo(String value) {
  772. addCriterion("HKDQBB <>", value, "hkdqbb");
  773. return this;
  774. }
  775. public Criteria andHkdqbbGreaterThan(String value) {
  776. addCriterion("HKDQBB >", value, "hkdqbb");
  777. return this;
  778. }
  779. public Criteria andHkdqbbGreaterThanOrEqualTo(String value) {
  780. addCriterion("HKDQBB >=", value, "hkdqbb");
  781. return this;
  782. }
  783. public Criteria andHkdqbbLessThan(String value) {
  784. addCriterion("HKDQBB <", value, "hkdqbb");
  785. return this;
  786. }
  787. public Criteria andHkdqbbLessThanOrEqualTo(String value) {
  788. addCriterion("HKDQBB <=", value, "hkdqbb");
  789. return this;
  790. }
  791. public Criteria andHkdqbbLike(String value) {
  792. addCriterion("HKDQBB like", value, "hkdqbb");
  793. return this;
  794. }
  795. public Criteria andHkdqbbNotLike(String value) {
  796. addCriterion("HKDQBB not like", value, "hkdqbb");
  797. return this;
  798. }
  799. public Criteria andHkdqbbIn(List<String> values) {
  800. addCriterion("HKDQBB in", values, "hkdqbb");
  801. return this;
  802. }
  803. public Criteria andHkdqbbNotIn(List<String> values) {
  804. addCriterion("HKDQBB not in", values, "hkdqbb");
  805. return this;
  806. }
  807. public Criteria andHkdqbbBetween(String value1, String value2) {
  808. addCriterion("HKDQBB between", value1, value2, "hkdqbb");
  809. return this;
  810. }
  811. public Criteria andHkdqbbNotBetween(String value1, String value2) {
  812. addCriterion("HKDQBB not between", value1, value2, "hkdqbb");
  813. return this;
  814. }
  815. public Criteria andHkmbbbIsNull() {
  816. addCriterion("HKMBBB is null");
  817. return this;
  818. }
  819. public Criteria andHkmbbbIsNotNull() {
  820. addCriterion("HKMBBB is not null");
  821. return this;
  822. }
  823. public Criteria andHkmbbbEqualTo(String value) {
  824. addCriterion("HKMBBB =", value, "hkmbbb");
  825. return this;
  826. }
  827. public Criteria andHkmbbbNotEqualTo(String value) {
  828. addCriterion("HKMBBB <>", value, "hkmbbb");
  829. return this;
  830. }
  831. public Criteria andHkmbbbGreaterThan(String value) {
  832. addCriterion("HKMBBB >", value, "hkmbbb");
  833. return this;
  834. }
  835. public Criteria andHkmbbbGreaterThanOrEqualTo(String value) {
  836. addCriterion("HKMBBB >=", value, "hkmbbb");
  837. return this;
  838. }
  839. public Criteria andHkmbbbLessThan(String value) {
  840. addCriterion("HKMBBB <", value, "hkmbbb");
  841. return this;
  842. }
  843. public Criteria andHkmbbbLessThanOrEqualTo(String value) {
  844. addCriterion("HKMBBB <=", value, "hkmbbb");
  845. return this;
  846. }
  847. public Criteria andHkmbbbLike(String value) {
  848. addCriterion("HKMBBB like", value, "hkmbbb");
  849. return this;
  850. }
  851. public Criteria andHkmbbbNotLike(String value) {
  852. addCriterion("HKMBBB not like", value, "hkmbbb");
  853. return this;
  854. }
  855. public Criteria andHkmbbbIn(List<String> values) {
  856. addCriterion("HKMBBB in", values, "hkmbbb");
  857. return this;
  858. }
  859. public Criteria andHkmbbbNotIn(List<String> values) {
  860. addCriterion("HKMBBB not in", values, "hkmbbb");
  861. return this;
  862. }
  863. public Criteria andHkmbbbBetween(String value1, String value2) {
  864. addCriterion("HKMBBB between", value1, value2, "hkmbbb");
  865. return this;
  866. }
  867. public Criteria andHkmbbbNotBetween(String value1, String value2) {
  868. addCriterion("HKMBBB not between", value1, value2, "hkmbbb");
  869. return this;
  870. }
  871. public Criteria andHkftpcmdIsNull() {
  872. addCriterion("HKFTPCMD is null");
  873. return this;
  874. }
  875. public Criteria andHkftpcmdIsNotNull() {
  876. addCriterion("HKFTPCMD is not null");
  877. return this;
  878. }
  879. public Criteria andHkftpcmdEqualTo(String value) {
  880. addCriterion("HKFTPCMD =", value, "hkftpcmd");
  881. return this;
  882. }
  883. public Criteria andHkftpcmdNotEqualTo(String value) {
  884. addCriterion("HKFTPCMD <>", value, "hkftpcmd");
  885. return this;
  886. }
  887. public Criteria andHkftpcmdGreaterThan(String value) {
  888. addCriterion("HKFTPCMD >", value, "hkftpcmd");
  889. return this;
  890. }
  891. public Criteria andHkftpcmdGreaterThanOrEqualTo(String value) {
  892. addCriterion("HKFTPCMD >=", value, "hkftpcmd");
  893. return this;
  894. }
  895. public Criteria andHkftpcmdLessThan(String value) {
  896. addCriterion("HKFTPCMD <", value, "hkftpcmd");
  897. return this;
  898. }
  899. public Criteria andHkftpcmdLessThanOrEqualTo(String value) {
  900. addCriterion("HKFTPCMD <=", value, "hkftpcmd");
  901. return this;
  902. }
  903. public Criteria andHkftpcmdLike(String value) {
  904. addCriterion("HKFTPCMD like", value, "hkftpcmd");
  905. return this;
  906. }
  907. public Criteria andHkftpcmdNotLike(String value) {
  908. addCriterion("HKFTPCMD not like", value, "hkftpcmd");
  909. return this;
  910. }
  911. public Criteria andHkftpcmdIn(List<String> values) {
  912. addCriterion("HKFTPCMD in", values, "hkftpcmd");
  913. return this;
  914. }
  915. public Criteria andHkftpcmdNotIn(List<String> values) {
  916. addCriterion("HKFTPCMD not in", values, "hkftpcmd");
  917. return this;
  918. }
  919. public Criteria andHkftpcmdBetween(String value1, String value2) {
  920. addCriterion("HKFTPCMD between", value1, value2, "hkftpcmd");
  921. return this;
  922. }
  923. public Criteria andHkftpcmdNotBetween(String value1, String value2) {
  924. addCriterion("HKFTPCMD not between", value1, value2, "hkftpcmd");
  925. return this;
  926. }
  927. public Criteria andLcdqbbIsNull() {
  928. addCriterion("LCDQBB is null");
  929. return this;
  930. }
  931. public Criteria andLcdqbbIsNotNull() {
  932. addCriterion("LCDQBB is not null");
  933. return this;
  934. }
  935. public Criteria andLcdqbbEqualTo(String value) {
  936. addCriterion("LCDQBB =", value, "lcdqbb");
  937. return this;
  938. }
  939. public Criteria andLcdqbbNotEqualTo(String value) {
  940. addCriterion("LCDQBB <>", value, "lcdqbb");
  941. return this;
  942. }
  943. public Criteria andLcdqbbGreaterThan(String value) {
  944. addCriterion("LCDQBB >", value, "lcdqbb");
  945. return this;
  946. }
  947. public Criteria andLcdqbbGreaterThanOrEqualTo(String value) {
  948. addCriterion("LCDQBB >=", value, "lcdqbb");
  949. return this;
  950. }
  951. public Criteria andLcdqbbLessThan(String value) {
  952. addCriterion("LCDQBB <", value, "lcdqbb");
  953. return this;
  954. }
  955. public Criteria andLcdqbbLessThanOrEqualTo(String value) {
  956. addCriterion("LCDQBB <=", value, "lcdqbb");
  957. return this;
  958. }
  959. public Criteria andLcdqbbLike(String value) {
  960. addCriterion("LCDQBB like", value, "lcdqbb");
  961. return this;
  962. }
  963. public Criteria andLcdqbbNotLike(String value) {
  964. addCriterion("LCDQBB not like", value, "lcdqbb");
  965. return this;
  966. }
  967. public Criteria andLcdqbbIn(List<String> values) {
  968. addCriterion("LCDQBB in", values, "lcdqbb");
  969. return this;
  970. }
  971. public Criteria andLcdqbbNotIn(List<String> values) {
  972. addCriterion("LCDQBB not in", values, "lcdqbb");
  973. return this;
  974. }
  975. public Criteria andLcdqbbBetween(String value1, String value2) {
  976. addCriterion("LCDQBB between", value1, value2, "lcdqbb");
  977. return this;
  978. }
  979. public Criteria andLcdqbbNotBetween(String value1, String value2) {
  980. addCriterion("LCDQBB not between", value1, value2, "lcdqbb");
  981. return this;
  982. }
  983. public Criteria andLcmbbbIsNull() {
  984. addCriterion("LCMBBB is null");
  985. return this;
  986. }
  987. public Criteria andLcmbbbIsNotNull() {
  988. addCriterion("LCMBBB is not null");
  989. return this;
  990. }
  991. public Criteria andLcmbbbEqualTo(String value) {
  992. addCriterion("LCMBBB =", value, "lcmbbb");
  993. return this;
  994. }
  995. public Criteria andLcmbbbNotEqualTo(String value) {
  996. addCriterion("LCMBBB <>", value, "lcmbbb");
  997. return this;
  998. }
  999. public Criteria andLcmbbbGreaterThan(String value) {
  1000. addCriterion("LCMBBB >", value, "lcmbbb");
  1001. return this;
  1002. }
  1003. public Criteria andLcmbbbGreaterThanOrEqualTo(String value) {
  1004. addCriterion("LCMBBB >=", value, "lcmbbb");
  1005. return this;
  1006. }
  1007. public Criteria andLcmbbbLessThan(String value) {
  1008. addCriterion("LCMBBB <", value, "lcmbbb");
  1009. return this;
  1010. }
  1011. public Criteria andLcmbbbLessThanOrEqualTo(String value) {
  1012. addCriterion("LCMBBB <=", value, "lcmbbb");
  1013. return this;
  1014. }
  1015. public Criteria andLcmbbbLike(String value) {
  1016. addCriterion("LCMBBB like", value, "lcmbbb");
  1017. return this;
  1018. }
  1019. public Criteria andLcmbbbNotLike(String value) {
  1020. addCriterion("LCMBBB not like", value, "lcmbbb");
  1021. return this;
  1022. }
  1023. public Criteria andLcmbbbIn(List<String> values) {
  1024. addCriterion("LCMBBB in", values, "lcmbbb");
  1025. return this;
  1026. }
  1027. public Criteria andLcmbbbNotIn(List<String> values) {
  1028. addCriterion("LCMBBB not in", values, "lcmbbb");
  1029. return this;
  1030. }
  1031. public Criteria andLcmbbbBetween(String value1, String value2) {
  1032. addCriterion("LCMBBB between", value1, value2, "lcmbbb");
  1033. return this;
  1034. }
  1035. public Criteria andLcmbbbNotBetween(String value1, String value2) {
  1036. addCriterion("LCMBBB not between", value1, value2, "lcmbbb");
  1037. return this;
  1038. }
  1039. public Criteria andLcftpcmdIsNull() {
  1040. addCriterion("LCFTPCMD is null");
  1041. return this;
  1042. }
  1043. public Criteria andLcftpcmdIsNotNull() {
  1044. addCriterion("LCFTPCMD is not null");
  1045. return this;
  1046. }
  1047. public Criteria andLcftpcmdEqualTo(String value) {
  1048. addCriterion("LCFTPCMD =", value, "lcftpcmd");
  1049. return this;
  1050. }
  1051. public Criteria andLcftpcmdNotEqualTo(String value) {
  1052. addCriterion("LCFTPCMD <>", value, "lcftpcmd");
  1053. return this;
  1054. }
  1055. public Criteria andLcftpcmdGreaterThan(String value) {
  1056. addCriterion("LCFTPCMD >", value, "lcftpcmd");
  1057. return this;
  1058. }
  1059. public Criteria andLcftpcmdGreaterThanOrEqualTo(String value) {
  1060. addCriterion("LCFTPCMD >=", value, "lcftpcmd");
  1061. return this;
  1062. }
  1063. public Criteria andLcftpcmdLessThan(String value) {
  1064. addCriterion("LCFTPCMD <", value, "lcftpcmd");
  1065. return this;
  1066. }
  1067. public Criteria andLcftpcmdLessThanOrEqualTo(String value) {
  1068. addCriterion("LCFTPCMD <=", value, "lcftpcmd");
  1069. return this;
  1070. }
  1071. public Criteria andLcftpcmdLike(String value) {
  1072. addCriterion("LCFTPCMD like", value, "lcftpcmd");
  1073. return this;
  1074. }
  1075. public Criteria andLcftpcmdNotLike(String value) {
  1076. addCriterion("LCFTPCMD not like", value, "lcftpcmd");
  1077. return this;
  1078. }
  1079. public Criteria andLcftpcmdIn(List<String> values) {
  1080. addCriterion("LCFTPCMD in", values, "lcftpcmd");
  1081. return this;
  1082. }
  1083. public Criteria andLcftpcmdNotIn(List<String> values) {
  1084. addCriterion("LCFTPCMD not in", values, "lcftpcmd");
  1085. return this;
  1086. }
  1087. public Criteria andLcftpcmdBetween(String value1, String value2) {
  1088. addCriterion("LCFTPCMD between", value1, value2, "lcftpcmd");
  1089. return this;
  1090. }
  1091. public Criteria andLcftpcmdNotBetween(String value1, String value2) {
  1092. addCriterion("LCFTPCMD not between", value1, value2, "lcftpcmd");
  1093. return this;
  1094. }
  1095. public Criteria andXlhIsNull() {
  1096. addCriterion("XLH is null");
  1097. return this;
  1098. }
  1099. public Criteria andXlhIsNotNull() {
  1100. addCriterion("XLH is not null");
  1101. return this;
  1102. }
  1103. public Criteria andXlhEqualTo(String value) {
  1104. addCriterion("XLH =", value, "xlh");
  1105. return this;
  1106. }
  1107. public Criteria andXlhNotEqualTo(String value) {
  1108. addCriterion("XLH <>", value, "xlh");
  1109. return this;
  1110. }
  1111. public Criteria andXlhGreaterThan(String value) {
  1112. addCriterion("XLH >", value, "xlh");
  1113. return this;
  1114. }
  1115. public Criteria andXlhGreaterThanOrEqualTo(String value) {
  1116. addCriterion("XLH >=", value, "xlh");
  1117. return this;
  1118. }
  1119. public Criteria andXlhLessThan(String value) {
  1120. addCriterion("XLH <", value, "xlh");
  1121. return this;
  1122. }
  1123. public Criteria andXlhLessThanOrEqualTo(String value) {
  1124. addCriterion("XLH <=", value, "xlh");
  1125. return this;
  1126. }
  1127. public Criteria andXlhLike(String value) {
  1128. addCriterion("XLH like", value, "xlh");
  1129. return this;
  1130. }
  1131. public Criteria andXlhNotLike(String value) {
  1132. addCriterion("XLH not like", value, "xlh");
  1133. return this;
  1134. }
  1135. public Criteria andXlhIn(List<String> values) {
  1136. addCriterion("XLH in", values, "xlh");
  1137. return this;
  1138. }
  1139. public Criteria andXlhNotIn(List<String> values) {
  1140. addCriterion("XLH not in", values, "xlh");
  1141. return this;
  1142. }
  1143. public Criteria andXlhBetween(String value1, String value2) {
  1144. addCriterion("XLH between", value1, value2, "xlh");
  1145. return this;
  1146. }
  1147. public Criteria andXlhNotBetween(String value1, String value2) {
  1148. addCriterion("XLH not between", value1, value2, "xlh");
  1149. return this;
  1150. }
  1151. public Criteria andZdhIsNull() {
  1152. addCriterion("ZDH is null");
  1153. return this;
  1154. }
  1155. public Criteria andZdhIsNotNull() {
  1156. addCriterion("ZDH is not null");
  1157. return this;
  1158. }
  1159. public Criteria andZdhEqualTo(String value) {
  1160. addCriterion("ZDH =", value, "zdh");
  1161. return this;
  1162. }
  1163. public Criteria andZdhNotEqualTo(String value) {
  1164. addCriterion("ZDH <>", value, "zdh");
  1165. return this;
  1166. }
  1167. public Criteria andZdhGreaterThan(String value) {
  1168. addCriterion("ZDH >", value, "zdh");
  1169. return this;
  1170. }
  1171. public Criteria andZdhGreaterThanOrEqualTo(String value) {
  1172. addCriterion("ZDH >=", value, "zdh");
  1173. return this;
  1174. }
  1175. public Criteria andZdhLessThan(String value) {
  1176. addCriterion("ZDH <", value, "zdh");
  1177. return this;
  1178. }
  1179. public Criteria andZdhLessThanOrEqualTo(String value) {
  1180. addCriterion("ZDH <=", value, "zdh");
  1181. return this;
  1182. }
  1183. public Criteria andZdhLike(String value) {
  1184. addCriterion("ZDH like", value, "zdh");
  1185. return this;
  1186. }
  1187. public Criteria andZdhNotLike(String value) {
  1188. addCriterion("ZDH not like", value, "zdh");
  1189. return this;
  1190. }
  1191. public Criteria andZdhIn(List<String> values) {
  1192. addCriterion("ZDH in", values, "zdh");
  1193. return this;
  1194. }
  1195. public Criteria andZdhNotIn(List<String> values) {
  1196. addCriterion("ZDH not in", values, "zdh");
  1197. return this;
  1198. }
  1199. public Criteria andZdhBetween(String value1, String value2) {
  1200. addCriterion("ZDH between", value1, value2, "zdh");
  1201. return this;
  1202. }
  1203. public Criteria andZdhNotBetween(String value1, String value2) {
  1204. addCriterion("ZDH not between", value1, value2, "zdh");
  1205. return this;
  1206. }
  1207. public Criteria andImeiIsNull() {
  1208. addCriterion("IMEI is null");
  1209. return this;
  1210. }
  1211. public Criteria andImeiIsNotNull() {
  1212. addCriterion("IMEI is not null");
  1213. return this;
  1214. }
  1215. public Criteria andImeiEqualTo(String value) {
  1216. addCriterion("IMEI =", value, "imei");
  1217. return this;
  1218. }
  1219. public Criteria andImeiNotEqualTo(String value) {
  1220. addCriterion("IMEI <>", value, "imei");
  1221. return this;
  1222. }
  1223. public Criteria andImeiGreaterThan(String value) {
  1224. addCriterion("IMEI >", value, "imei");
  1225. return this;
  1226. }
  1227. public Criteria andImeiGreaterThanOrEqualTo(String value) {
  1228. addCriterion("IMEI >=", value, "imei");
  1229. return this;
  1230. }
  1231. public Criteria andImeiLessThan(String value) {
  1232. addCriterion("IMEI <", value, "imei");
  1233. return this;
  1234. }
  1235. public Criteria andImeiLessThanOrEqualTo(String value) {
  1236. addCriterion("IMEI <=", value, "imei");
  1237. return this;
  1238. }
  1239. public Criteria andImeiLike(String value) {
  1240. addCriterion("IMEI like", value, "imei");
  1241. return this;
  1242. }
  1243. public Criteria andImeiNotLike(String value) {
  1244. addCriterion("IMEI not like", value, "imei");
  1245. return this;
  1246. }
  1247. public Criteria andImeiIn(List<String> values) {
  1248. addCriterion("IMEI in", values, "imei");
  1249. return this;
  1250. }
  1251. public Criteria andImeiNotIn(List<String> values) {
  1252. addCriterion("IMEI not in", values, "imei");
  1253. return this;
  1254. }
  1255. public Criteria andImeiBetween(String value1, String value2) {
  1256. addCriterion("IMEI between", value1, value2, "imei");
  1257. return this;
  1258. }
  1259. public Criteria andImeiNotBetween(String value1, String value2) {
  1260. addCriterion("IMEI not between", value1, value2, "imei");
  1261. return this;
  1262. }
  1263. public Criteria andImsiIsNull() {
  1264. addCriterion("IMSI is null");
  1265. return this;
  1266. }
  1267. public Criteria andImsiIsNotNull() {
  1268. addCriterion("IMSI is not null");
  1269. return this;
  1270. }
  1271. public Criteria andImsiEqualTo(String value) {
  1272. addCriterion("IMSI =", value, "imsi");
  1273. return this;
  1274. }
  1275. public Criteria andImsiNotEqualTo(String value) {
  1276. addCriterion("IMSI <>", value, "imsi");
  1277. return this;
  1278. }
  1279. public Criteria andImsiGreaterThan(String value) {
  1280. addCriterion("IMSI >", value, "imsi");
  1281. return this;
  1282. }
  1283. public Criteria andImsiGreaterThanOrEqualTo(String value) {
  1284. addCriterion("IMSI >=", value, "imsi");
  1285. return this;
  1286. }
  1287. public Criteria andImsiLessThan(String value) {
  1288. addCriterion("IMSI <", value, "imsi");
  1289. return this;
  1290. }
  1291. public Criteria andImsiLessThanOrEqualTo(String value) {
  1292. addCriterion("IMSI <=", value, "imsi");
  1293. return this;
  1294. }
  1295. public Criteria andImsiLike(String value) {
  1296. addCriterion("IMSI like", value, "imsi");
  1297. return this;
  1298. }
  1299. public Criteria andImsiNotLike(String value) {
  1300. addCriterion("IMSI not like", value, "imsi");
  1301. return this;
  1302. }
  1303. public Criteria andImsiIn(List<String> values) {
  1304. addCriterion("IMSI in", values, "imsi");
  1305. return this;
  1306. }
  1307. public Criteria andImsiNotIn(List<String> values) {
  1308. addCriterion("IMSI not in", values, "imsi");
  1309. return this;
  1310. }
  1311. public Criteria andImsiBetween(String value1, String value2) {
  1312. addCriterion("IMSI between", value1, value2, "imsi");
  1313. return this;
  1314. }
  1315. public Criteria andImsiNotBetween(String value1, String value2) {
  1316. addCriterion("IMSI not between", value1, value2, "imsi");
  1317. return this;
  1318. }
  1319. public Criteria andCcidIsNull() {
  1320. addCriterion("CCID is null");
  1321. return this;
  1322. }
  1323. public Criteria andCcidIsNotNull() {
  1324. addCriterion("CCID is not null");
  1325. return this;
  1326. }
  1327. public Criteria andCcidEqualTo(String value) {
  1328. addCriterion("CCID =", value, "ccid");
  1329. return this;
  1330. }
  1331. public Criteria andCcidNotEqualTo(String value) {
  1332. addCriterion("CCID <>", value, "ccid");
  1333. return this;
  1334. }
  1335. public Criteria andCcidGreaterThan(String value) {
  1336. addCriterion("CCID >", value, "ccid");
  1337. return this;
  1338. }
  1339. public Criteria andCcidGreaterThanOrEqualTo(String value) {
  1340. addCriterion("CCID >=", value, "ccid");
  1341. return this;
  1342. }
  1343. public Criteria andCcidLessThan(String value) {
  1344. addCriterion("CCID <", value, "ccid");
  1345. return this;
  1346. }
  1347. public Criteria andCcidLessThanOrEqualTo(String value) {
  1348. addCriterion("CCID <=", value, "ccid");
  1349. return this;
  1350. }
  1351. public Criteria andCcidLike(String value) {
  1352. addCriterion("CCID like", value, "ccid");
  1353. return this;
  1354. }
  1355. public Criteria andCcidNotLike(String value) {
  1356. addCriterion("CCID not like", value, "ccid");
  1357. return this;
  1358. }
  1359. public Criteria andCcidIn(List<String> values) {
  1360. addCriterion("CCID in", values, "ccid");
  1361. return this;
  1362. }
  1363. public Criteria andCcidNotIn(List<String> values) {
  1364. addCriterion("CCID not in", values, "ccid");
  1365. return this;
  1366. }
  1367. public Criteria andCcidBetween(String value1, String value2) {
  1368. addCriterion("CCID between", value1, value2, "ccid");
  1369. return this;
  1370. }
  1371. public Criteria andCcidNotBetween(String value1, String value2) {
  1372. addCriterion("CCID not between", value1, value2, "ccid");
  1373. return this;
  1374. }
  1375. public Criteria andEsimnameIsNull() {
  1376. addCriterion("ESIMNAME is null");
  1377. return this;
  1378. }
  1379. public Criteria andEsimnameIsNotNull() {
  1380. addCriterion("ESIMNAME is not null");
  1381. return this;
  1382. }
  1383. public Criteria andEsimnameEqualTo(String value) {
  1384. addCriterion("ESIMNAME =", value, "esimname");
  1385. return this;
  1386. }
  1387. public Criteria andEsimnameNotEqualTo(String value) {
  1388. addCriterion("ESIMNAME <>", value, "esimname");
  1389. return this;
  1390. }
  1391. public Criteria andEsimnameGreaterThan(String value) {
  1392. addCriterion("ESIMNAME >", value, "esimname");
  1393. return this;
  1394. }
  1395. public Criteria andEsimnameGreaterThanOrEqualTo(String value) {
  1396. addCriterion("ESIMNAME >=", value, "esimname");
  1397. return this;
  1398. }
  1399. public Criteria andEsimnameLessThan(String value) {
  1400. addCriterion("ESIMNAME <", value, "esimname");
  1401. return this;
  1402. }
  1403. public Criteria andEsimnameLessThanOrEqualTo(String value) {
  1404. addCriterion("ESIMNAME <=", value, "esimname");
  1405. return this;
  1406. }
  1407. public Criteria andEsimnameLike(String value) {
  1408. addCriterion("ESIMNAME like", value, "esimname");
  1409. return this;
  1410. }
  1411. public Criteria andEsimnameNotLike(String value) {
  1412. addCriterion("ESIMNAME not like", value, "esimname");
  1413. return this;
  1414. }
  1415. public Criteria andEsimnameIn(List<String> values) {
  1416. addCriterion("ESIMNAME in", values, "esimname");
  1417. return this;
  1418. }
  1419. public Criteria andEsimnameNotIn(List<String> values) {
  1420. addCriterion("ESIMNAME not in", values, "esimname");
  1421. return this;
  1422. }
  1423. public Criteria andEsimnameBetween(String value1, String value2) {
  1424. addCriterion("ESIMNAME between", value1, value2, "esimname");
  1425. return this;
  1426. }
  1427. public Criteria andEsimnameNotBetween(String value1, String value2) {
  1428. addCriterion("ESIMNAME not between", value1, value2, "esimname");
  1429. return this;
  1430. }
  1431. }
  1432. }