MdoProInoutParaSQLBuilder.java 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050
  1. package com.miniframe.model.mdo;
  2. import java.util.ArrayList;
  3. import java.util.List;
  4. public class MdoProInoutParaSQLBuilder {
  5. protected String orderByClause;
  6. protected boolean distinct;
  7. protected List<Criteria> oredCriteria;
  8. public MdoProInoutParaSQLBuilder() {
  9. oredCriteria = new ArrayList<Criteria>();
  10. }
  11. public void setOrderByClause(String orderByClause) {
  12. this.orderByClause = orderByClause;
  13. }
  14. public String getOrderByClause() {
  15. return orderByClause;
  16. }
  17. public void setDistinct(boolean distinct) {
  18. this.distinct = distinct;
  19. }
  20. public boolean isDistinct() {
  21. return distinct;
  22. }
  23. public List<Criteria> getOredCriteria() {
  24. return oredCriteria;
  25. }
  26. public void or(Criteria criteria) {
  27. oredCriteria.add(criteria);
  28. }
  29. public Criteria or() {
  30. Criteria criteria = createCriteriaInternal();
  31. oredCriteria.add(criteria);
  32. return criteria;
  33. }
  34. public Criteria createCriteria() {
  35. Criteria criteria = createCriteriaInternal();
  36. if (oredCriteria.size() == 0) {
  37. oredCriteria.add(criteria);
  38. }
  39. return criteria;
  40. }
  41. protected Criteria createCriteriaInternal() {
  42. Criteria criteria = new Criteria();
  43. return criteria;
  44. }
  45. public void clear() {
  46. oredCriteria.clear();
  47. orderByClause = null;
  48. distinct = false;
  49. }
  50. protected abstract static class GeneratedCriteria {
  51. protected List<Criterion> criteria;
  52. protected GeneratedCriteria() {
  53. super();
  54. criteria = new ArrayList<Criterion>();
  55. }
  56. public boolean isValid() {
  57. return criteria.size() > 0;
  58. }
  59. public List<Criterion> getAllCriteria() {
  60. return criteria;
  61. }
  62. public List<Criterion> getCriteria() {
  63. return criteria;
  64. }
  65. protected void addCriterion(String condition) {
  66. if (condition == null) {
  67. throw new RuntimeException("Value for condition cannot be null");
  68. }
  69. criteria.add(new Criterion(condition));
  70. }
  71. protected void addCriterion(String condition, Object value, String property) {
  72. if (value == null) {
  73. throw new RuntimeException("Value for " + property + " cannot be null");
  74. }
  75. criteria.add(new Criterion(condition, value));
  76. }
  77. protected void addCriterion(String condition, Object value1, Object value2, String property) {
  78. if (value1 == null || value2 == null) {
  79. throw new RuntimeException("Between values for " + property + " cannot be null");
  80. }
  81. criteria.add(new Criterion(condition, value1, value2));
  82. }
  83. public Criteria andIdIsNull() {
  84. addCriterion("id is null");
  85. return (Criteria) this;
  86. }
  87. public Criteria andIdIsNotNull() {
  88. addCriterion("id is not null");
  89. return (Criteria) this;
  90. }
  91. public Criteria andIdEqualTo(String value) {
  92. addCriterion("id =", value, "id");
  93. return (Criteria) this;
  94. }
  95. public Criteria andIdNotEqualTo(String value) {
  96. addCriterion("id <>", value, "id");
  97. return (Criteria) this;
  98. }
  99. public Criteria andIdGreaterThan(String value) {
  100. addCriterion("id >", value, "id");
  101. return (Criteria) this;
  102. }
  103. public Criteria andIdGreaterThanOrEqualTo(String value) {
  104. addCriterion("id >=", value, "id");
  105. return (Criteria) this;
  106. }
  107. public Criteria andIdLessThan(String value) {
  108. addCriterion("id <", value, "id");
  109. return (Criteria) this;
  110. }
  111. public Criteria andIdLessThanOrEqualTo(String value) {
  112. addCriterion("id <=", value, "id");
  113. return (Criteria) this;
  114. }
  115. public Criteria andIdLike(String value) {
  116. addCriterion("id like", value, "id");
  117. return (Criteria) this;
  118. }
  119. public Criteria andIdNotLike(String value) {
  120. addCriterion("id not like", value, "id");
  121. return (Criteria) this;
  122. }
  123. public Criteria andIdIn(List<String> values) {
  124. addCriterion("id in", values, "id");
  125. return (Criteria) this;
  126. }
  127. public Criteria andIdNotIn(List<String> values) {
  128. addCriterion("id not in", values, "id");
  129. return (Criteria) this;
  130. }
  131. public Criteria andIdBetween(String value1, String value2) {
  132. addCriterion("id between", value1, value2, "id");
  133. return (Criteria) this;
  134. }
  135. public Criteria andIdNotBetween(String value1, String value2) {
  136. addCriterion("id not between", value1, value2, "id");
  137. return (Criteria) this;
  138. }
  139. public Criteria andPidIsNull() {
  140. addCriterion("pid is null");
  141. return (Criteria) this;
  142. }
  143. public Criteria andPidIsNotNull() {
  144. addCriterion("pid is not null");
  145. return (Criteria) this;
  146. }
  147. public Criteria andPidEqualTo(String value) {
  148. addCriterion("pid =", value, "pid");
  149. return (Criteria) this;
  150. }
  151. public Criteria andPidNotEqualTo(String value) {
  152. addCriterion("pid <>", value, "pid");
  153. return (Criteria) this;
  154. }
  155. public Criteria andPidGreaterThan(String value) {
  156. addCriterion("pid >", value, "pid");
  157. return (Criteria) this;
  158. }
  159. public Criteria andPidGreaterThanOrEqualTo(String value) {
  160. addCriterion("pid >=", value, "pid");
  161. return (Criteria) this;
  162. }
  163. public Criteria andPidLessThan(String value) {
  164. addCriterion("pid <", value, "pid");
  165. return (Criteria) this;
  166. }
  167. public Criteria andPidLessThanOrEqualTo(String value) {
  168. addCriterion("pid <=", value, "pid");
  169. return (Criteria) this;
  170. }
  171. public Criteria andPidLike(String value) {
  172. addCriterion("pid like", value, "pid");
  173. return (Criteria) this;
  174. }
  175. public Criteria andPidNotLike(String value) {
  176. addCriterion("pid not like", value, "pid");
  177. return (Criteria) this;
  178. }
  179. public Criteria andPidIn(List<String> values) {
  180. addCriterion("pid in", values, "pid");
  181. return (Criteria) this;
  182. }
  183. public Criteria andPidNotIn(List<String> values) {
  184. addCriterion("pid not in", values, "pid");
  185. return (Criteria) this;
  186. }
  187. public Criteria andPidBetween(String value1, String value2) {
  188. addCriterion("pid between", value1, value2, "pid");
  189. return (Criteria) this;
  190. }
  191. public Criteria andPidNotBetween(String value1, String value2) {
  192. addCriterion("pid not between", value1, value2, "pid");
  193. return (Criteria) this;
  194. }
  195. public Criteria andFatheridIsNull() {
  196. addCriterion("fatherid is null");
  197. return (Criteria) this;
  198. }
  199. public Criteria andFatheridIsNotNull() {
  200. addCriterion("fatherid is not null");
  201. return (Criteria) this;
  202. }
  203. public Criteria andFatheridEqualTo(String value) {
  204. addCriterion("fatherid =", value, "fatherid");
  205. return (Criteria) this;
  206. }
  207. public Criteria andFatheridNotEqualTo(String value) {
  208. addCriterion("fatherid <>", value, "fatherid");
  209. return (Criteria) this;
  210. }
  211. public Criteria andFatheridGreaterThan(String value) {
  212. addCriterion("fatherid >", value, "fatherid");
  213. return (Criteria) this;
  214. }
  215. public Criteria andFatheridGreaterThanOrEqualTo(String value) {
  216. addCriterion("fatherid >=", value, "fatherid");
  217. return (Criteria) this;
  218. }
  219. public Criteria andFatheridLessThan(String value) {
  220. addCriterion("fatherid <", value, "fatherid");
  221. return (Criteria) this;
  222. }
  223. public Criteria andFatheridLessThanOrEqualTo(String value) {
  224. addCriterion("fatherid <=", value, "fatherid");
  225. return (Criteria) this;
  226. }
  227. public Criteria andFatheridLike(String value) {
  228. addCriterion("fatherid like", value, "fatherid");
  229. return (Criteria) this;
  230. }
  231. public Criteria andFatheridNotLike(String value) {
  232. addCriterion("fatherid not like", value, "fatherid");
  233. return (Criteria) this;
  234. }
  235. public Criteria andFatheridIn(List<String> values) {
  236. addCriterion("fatherid in", values, "fatherid");
  237. return (Criteria) this;
  238. }
  239. public Criteria andFatheridNotIn(List<String> values) {
  240. addCriterion("fatherid not in", values, "fatherid");
  241. return (Criteria) this;
  242. }
  243. public Criteria andFatheridBetween(String value1, String value2) {
  244. addCriterion("fatherid between", value1, value2, "fatherid");
  245. return (Criteria) this;
  246. }
  247. public Criteria andFatheridNotBetween(String value1, String value2) {
  248. addCriterion("fatherid not between", value1, value2, "fatherid");
  249. return (Criteria) this;
  250. }
  251. public Criteria andNameIsNull() {
  252. addCriterion("name is null");
  253. return (Criteria) this;
  254. }
  255. public Criteria andNameIsNotNull() {
  256. addCriterion("name is not null");
  257. return (Criteria) this;
  258. }
  259. public Criteria andNameEqualTo(String value) {
  260. addCriterion("name =", value, "name");
  261. return (Criteria) this;
  262. }
  263. public Criteria andNameNotEqualTo(String value) {
  264. addCriterion("name <>", value, "name");
  265. return (Criteria) this;
  266. }
  267. public Criteria andNameGreaterThan(String value) {
  268. addCriterion("name >", value, "name");
  269. return (Criteria) this;
  270. }
  271. public Criteria andNameGreaterThanOrEqualTo(String value) {
  272. addCriterion("name >=", value, "name");
  273. return (Criteria) this;
  274. }
  275. public Criteria andNameLessThan(String value) {
  276. addCriterion("name <", value, "name");
  277. return (Criteria) this;
  278. }
  279. public Criteria andNameLessThanOrEqualTo(String value) {
  280. addCriterion("name <=", value, "name");
  281. return (Criteria) this;
  282. }
  283. public Criteria andNameLike(String value) {
  284. addCriterion("name like", value, "name");
  285. return (Criteria) this;
  286. }
  287. public Criteria andNameNotLike(String value) {
  288. addCriterion("name not like", value, "name");
  289. return (Criteria) this;
  290. }
  291. public Criteria andNameIn(List<String> values) {
  292. addCriterion("name in", values, "name");
  293. return (Criteria) this;
  294. }
  295. public Criteria andNameNotIn(List<String> values) {
  296. addCriterion("name not in", values, "name");
  297. return (Criteria) this;
  298. }
  299. public Criteria andNameBetween(String value1, String value2) {
  300. addCriterion("name between", value1, value2, "name");
  301. return (Criteria) this;
  302. }
  303. public Criteria andNameNotBetween(String value1, String value2) {
  304. addCriterion("name not between", value1, value2, "name");
  305. return (Criteria) this;
  306. }
  307. public Criteria andCodeIsNull() {
  308. addCriterion("code is null");
  309. return (Criteria) this;
  310. }
  311. public Criteria andCodeIsNotNull() {
  312. addCriterion("code is not null");
  313. return (Criteria) this;
  314. }
  315. public Criteria andCodeEqualTo(String value) {
  316. addCriterion("code =", value, "code");
  317. return (Criteria) this;
  318. }
  319. public Criteria andCodeNotEqualTo(String value) {
  320. addCriterion("code <>", value, "code");
  321. return (Criteria) this;
  322. }
  323. public Criteria andCodeGreaterThan(String value) {
  324. addCriterion("code >", value, "code");
  325. return (Criteria) this;
  326. }
  327. public Criteria andCodeGreaterThanOrEqualTo(String value) {
  328. addCriterion("code >=", value, "code");
  329. return (Criteria) this;
  330. }
  331. public Criteria andCodeLessThan(String value) {
  332. addCriterion("code <", value, "code");
  333. return (Criteria) this;
  334. }
  335. public Criteria andCodeLessThanOrEqualTo(String value) {
  336. addCriterion("code <=", value, "code");
  337. return (Criteria) this;
  338. }
  339. public Criteria andCodeLike(String value) {
  340. addCriterion("code like", value, "code");
  341. return (Criteria) this;
  342. }
  343. public Criteria andCodeNotLike(String value) {
  344. addCriterion("code not like", value, "code");
  345. return (Criteria) this;
  346. }
  347. public Criteria andCodeIn(List<String> values) {
  348. addCriterion("code in", values, "code");
  349. return (Criteria) this;
  350. }
  351. public Criteria andCodeNotIn(List<String> values) {
  352. addCriterion("code not in", values, "code");
  353. return (Criteria) this;
  354. }
  355. public Criteria andCodeBetween(String value1, String value2) {
  356. addCriterion("code between", value1, value2, "code");
  357. return (Criteria) this;
  358. }
  359. public Criteria andCodeNotBetween(String value1, String value2) {
  360. addCriterion("code not between", value1, value2, "code");
  361. return (Criteria) this;
  362. }
  363. public Criteria andFlagIsNull() {
  364. addCriterion("flag is null");
  365. return (Criteria) this;
  366. }
  367. public Criteria andFlagIsNotNull() {
  368. addCriterion("flag is not null");
  369. return (Criteria) this;
  370. }
  371. public Criteria andFlagEqualTo(Integer value) {
  372. addCriterion("flag =", value, "flag");
  373. return (Criteria) this;
  374. }
  375. public Criteria andFlagNotEqualTo(Integer value) {
  376. addCriterion("flag <>", value, "flag");
  377. return (Criteria) this;
  378. }
  379. public Criteria andFlagGreaterThan(Integer value) {
  380. addCriterion("flag >", value, "flag");
  381. return (Criteria) this;
  382. }
  383. public Criteria andFlagGreaterThanOrEqualTo(Integer value) {
  384. addCriterion("flag >=", value, "flag");
  385. return (Criteria) this;
  386. }
  387. public Criteria andFlagLessThan(Integer value) {
  388. addCriterion("flag <", value, "flag");
  389. return (Criteria) this;
  390. }
  391. public Criteria andFlagLessThanOrEqualTo(Integer value) {
  392. addCriterion("flag <=", value, "flag");
  393. return (Criteria) this;
  394. }
  395. public Criteria andFlagIn(List<Integer> values) {
  396. addCriterion("flag in", values, "flag");
  397. return (Criteria) this;
  398. }
  399. public Criteria andFlagNotIn(List<Integer> values) {
  400. addCriterion("flag not in", values, "flag");
  401. return (Criteria) this;
  402. }
  403. public Criteria andFlagBetween(Integer value1, Integer value2) {
  404. addCriterion("flag between", value1, value2, "flag");
  405. return (Criteria) this;
  406. }
  407. public Criteria andFlagNotBetween(Integer value1, Integer value2) {
  408. addCriterion("flag not between", value1, value2, "flag");
  409. return (Criteria) this;
  410. }
  411. public Criteria andValueIsNull() {
  412. addCriterion("value is null");
  413. return (Criteria) this;
  414. }
  415. public Criteria andValueIsNotNull() {
  416. addCriterion("value is not null");
  417. return (Criteria) this;
  418. }
  419. public Criteria andValueEqualTo(String value) {
  420. addCriterion("value =", value, "value");
  421. return (Criteria) this;
  422. }
  423. public Criteria andValueNotEqualTo(String value) {
  424. addCriterion("value <>", value, "value");
  425. return (Criteria) this;
  426. }
  427. public Criteria andValueGreaterThan(String value) {
  428. addCriterion("value >", value, "value");
  429. return (Criteria) this;
  430. }
  431. public Criteria andValueGreaterThanOrEqualTo(String value) {
  432. addCriterion("value >=", value, "value");
  433. return (Criteria) this;
  434. }
  435. public Criteria andValueLessThan(String value) {
  436. addCriterion("value <", value, "value");
  437. return (Criteria) this;
  438. }
  439. public Criteria andValueLessThanOrEqualTo(String value) {
  440. addCriterion("value <=", value, "value");
  441. return (Criteria) this;
  442. }
  443. public Criteria andValueLike(String value) {
  444. addCriterion("value like", value, "value");
  445. return (Criteria) this;
  446. }
  447. public Criteria andValueNotLike(String value) {
  448. addCriterion("value not like", value, "value");
  449. return (Criteria) this;
  450. }
  451. public Criteria andValueIn(List<String> values) {
  452. addCriterion("value in", values, "value");
  453. return (Criteria) this;
  454. }
  455. public Criteria andValueNotIn(List<String> values) {
  456. addCriterion("value not in", values, "value");
  457. return (Criteria) this;
  458. }
  459. public Criteria andValueBetween(String value1, String value2) {
  460. addCriterion("value between", value1, value2, "value");
  461. return (Criteria) this;
  462. }
  463. public Criteria andValueNotBetween(String value1, String value2) {
  464. addCriterion("value not between", value1, value2, "value");
  465. return (Criteria) this;
  466. }
  467. public Criteria andTypeIsNull() {
  468. addCriterion("type is null");
  469. return (Criteria) this;
  470. }
  471. public Criteria andTypeIsNotNull() {
  472. addCriterion("type is not null");
  473. return (Criteria) this;
  474. }
  475. public Criteria andTypeEqualTo(Integer value) {
  476. addCriterion("type =", value, "type");
  477. return (Criteria) this;
  478. }
  479. public Criteria andTypeNotEqualTo(Integer value) {
  480. addCriterion("type <>", value, "type");
  481. return (Criteria) this;
  482. }
  483. public Criteria andTypeGreaterThan(Integer value) {
  484. addCriterion("type >", value, "type");
  485. return (Criteria) this;
  486. }
  487. public Criteria andTypeGreaterThanOrEqualTo(Integer value) {
  488. addCriterion("type >=", value, "type");
  489. return (Criteria) this;
  490. }
  491. public Criteria andTypeLessThan(Integer value) {
  492. addCriterion("type <", value, "type");
  493. return (Criteria) this;
  494. }
  495. public Criteria andTypeLessThanOrEqualTo(Integer value) {
  496. addCriterion("type <=", value, "type");
  497. return (Criteria) this;
  498. }
  499. public Criteria andTypeIn(List<Integer> values) {
  500. addCriterion("type in", values, "type");
  501. return (Criteria) this;
  502. }
  503. public Criteria andTypeNotIn(List<Integer> values) {
  504. addCriterion("type not in", values, "type");
  505. return (Criteria) this;
  506. }
  507. public Criteria andTypeBetween(Integer value1, Integer value2) {
  508. addCriterion("type between", value1, value2, "type");
  509. return (Criteria) this;
  510. }
  511. public Criteria andTypeNotBetween(Integer value1, Integer value2) {
  512. addCriterion("type not between", value1, value2, "type");
  513. return (Criteria) this;
  514. }
  515. public Criteria andComtypeIsNull() {
  516. addCriterion("comtype is null");
  517. return (Criteria) this;
  518. }
  519. public Criteria andComtypeIsNotNull() {
  520. addCriterion("comtype is not null");
  521. return (Criteria) this;
  522. }
  523. public Criteria andComtypeEqualTo(Integer value) {
  524. addCriterion("comtype =", value, "comtype");
  525. return (Criteria) this;
  526. }
  527. public Criteria andComtypeNotEqualTo(Integer value) {
  528. addCriterion("comtype <>", value, "comtype");
  529. return (Criteria) this;
  530. }
  531. public Criteria andComtypeGreaterThan(Integer value) {
  532. addCriterion("comtype >", value, "comtype");
  533. return (Criteria) this;
  534. }
  535. public Criteria andComtypeGreaterThanOrEqualTo(Integer value) {
  536. addCriterion("comtype >=", value, "comtype");
  537. return (Criteria) this;
  538. }
  539. public Criteria andComtypeLessThan(Integer value) {
  540. addCriterion("comtype <", value, "comtype");
  541. return (Criteria) this;
  542. }
  543. public Criteria andComtypeLessThanOrEqualTo(Integer value) {
  544. addCriterion("comtype <=", value, "comtype");
  545. return (Criteria) this;
  546. }
  547. public Criteria andComtypeIn(List<Integer> values) {
  548. addCriterion("comtype in", values, "comtype");
  549. return (Criteria) this;
  550. }
  551. public Criteria andComtypeNotIn(List<Integer> values) {
  552. addCriterion("comtype not in", values, "comtype");
  553. return (Criteria) this;
  554. }
  555. public Criteria andComtypeBetween(Integer value1, Integer value2) {
  556. addCriterion("comtype between", value1, value2, "comtype");
  557. return (Criteria) this;
  558. }
  559. public Criteria andComtypeNotBetween(Integer value1, Integer value2) {
  560. addCriterion("comtype not between", value1, value2, "comtype");
  561. return (Criteria) this;
  562. }
  563. public Criteria andSteamflagIsNull() {
  564. addCriterion("steamflag is null");
  565. return (Criteria) this;
  566. }
  567. public Criteria andSteamflagIsNotNull() {
  568. addCriterion("steamflag is not null");
  569. return (Criteria) this;
  570. }
  571. public Criteria andSteamflagEqualTo(Integer value) {
  572. addCriterion("steamflag =", value, "steamflag");
  573. return (Criteria) this;
  574. }
  575. public Criteria andSteamflagNotEqualTo(Integer value) {
  576. addCriterion("steamflag <>", value, "steamflag");
  577. return (Criteria) this;
  578. }
  579. public Criteria andSteamflagGreaterThan(Integer value) {
  580. addCriterion("steamflag >", value, "steamflag");
  581. return (Criteria) this;
  582. }
  583. public Criteria andSteamflagGreaterThanOrEqualTo(Integer value) {
  584. addCriterion("steamflag >=", value, "steamflag");
  585. return (Criteria) this;
  586. }
  587. public Criteria andSteamflagLessThan(Integer value) {
  588. addCriterion("steamflag <", value, "steamflag");
  589. return (Criteria) this;
  590. }
  591. public Criteria andSteamflagLessThanOrEqualTo(Integer value) {
  592. addCriterion("steamflag <=", value, "steamflag");
  593. return (Criteria) this;
  594. }
  595. public Criteria andSteamflagIn(List<Integer> values) {
  596. addCriterion("steamflag in", values, "steamflag");
  597. return (Criteria) this;
  598. }
  599. public Criteria andSteamflagNotIn(List<Integer> values) {
  600. addCriterion("steamflag not in", values, "steamflag");
  601. return (Criteria) this;
  602. }
  603. public Criteria andSteamflagBetween(Integer value1, Integer value2) {
  604. addCriterion("steamflag between", value1, value2, "steamflag");
  605. return (Criteria) this;
  606. }
  607. public Criteria andSteamflagNotBetween(Integer value1, Integer value2) {
  608. addCriterion("steamflag not between", value1, value2, "steamflag");
  609. return (Criteria) this;
  610. }
  611. public Criteria andSteamtypeIsNull() {
  612. addCriterion("steamtype is null");
  613. return (Criteria) this;
  614. }
  615. public Criteria andSteamtypeIsNotNull() {
  616. addCriterion("steamtype is not null");
  617. return (Criteria) this;
  618. }
  619. public Criteria andSteamtypeEqualTo(Integer value) {
  620. addCriterion("steamtype =", value, "steamtype");
  621. return (Criteria) this;
  622. }
  623. public Criteria andSteamtypeNotEqualTo(Integer value) {
  624. addCriterion("steamtype <>", value, "steamtype");
  625. return (Criteria) this;
  626. }
  627. public Criteria andSteamtypeGreaterThan(Integer value) {
  628. addCriterion("steamtype >", value, "steamtype");
  629. return (Criteria) this;
  630. }
  631. public Criteria andSteamtypeGreaterThanOrEqualTo(Integer value) {
  632. addCriterion("steamtype >=", value, "steamtype");
  633. return (Criteria) this;
  634. }
  635. public Criteria andSteamtypeLessThan(Integer value) {
  636. addCriterion("steamtype <", value, "steamtype");
  637. return (Criteria) this;
  638. }
  639. public Criteria andSteamtypeLessThanOrEqualTo(Integer value) {
  640. addCriterion("steamtype <=", value, "steamtype");
  641. return (Criteria) this;
  642. }
  643. public Criteria andSteamtypeIn(List<Integer> values) {
  644. addCriterion("steamtype in", values, "steamtype");
  645. return (Criteria) this;
  646. }
  647. public Criteria andSteamtypeNotIn(List<Integer> values) {
  648. addCriterion("steamtype not in", values, "steamtype");
  649. return (Criteria) this;
  650. }
  651. public Criteria andSteamtypeBetween(Integer value1, Integer value2) {
  652. addCriterion("steamtype between", value1, value2, "steamtype");
  653. return (Criteria) this;
  654. }
  655. public Criteria andSteamtypeNotBetween(Integer value1, Integer value2) {
  656. addCriterion("steamtype not between", value1, value2, "steamtype");
  657. return (Criteria) this;
  658. }
  659. public Criteria andFcomidIsNull() {
  660. addCriterion("fcomid is null");
  661. return (Criteria) this;
  662. }
  663. public Criteria andFcomidIsNotNull() {
  664. addCriterion("fcomid is not null");
  665. return (Criteria) this;
  666. }
  667. public Criteria andFcomidEqualTo(String value) {
  668. addCriterion("fcomid =", value, "fcomid");
  669. return (Criteria) this;
  670. }
  671. public Criteria andFcomidNotEqualTo(String value) {
  672. addCriterion("fcomid <>", value, "fcomid");
  673. return (Criteria) this;
  674. }
  675. public Criteria andFcomidGreaterThan(String value) {
  676. addCriterion("fcomid >", value, "fcomid");
  677. return (Criteria) this;
  678. }
  679. public Criteria andFcomidGreaterThanOrEqualTo(String value) {
  680. addCriterion("fcomid >=", value, "fcomid");
  681. return (Criteria) this;
  682. }
  683. public Criteria andFcomidLessThan(String value) {
  684. addCriterion("fcomid <", value, "fcomid");
  685. return (Criteria) this;
  686. }
  687. public Criteria andFcomidLessThanOrEqualTo(String value) {
  688. addCriterion("fcomid <=", value, "fcomid");
  689. return (Criteria) this;
  690. }
  691. public Criteria andFcomidLike(String value) {
  692. addCriterion("fcomid like", value, "fcomid");
  693. return (Criteria) this;
  694. }
  695. public Criteria andFcomidNotLike(String value) {
  696. addCriterion("fcomid not like", value, "fcomid");
  697. return (Criteria) this;
  698. }
  699. public Criteria andFcomidIn(List<String> values) {
  700. addCriterion("fcomid in", values, "fcomid");
  701. return (Criteria) this;
  702. }
  703. public Criteria andFcomidNotIn(List<String> values) {
  704. addCriterion("fcomid not in", values, "fcomid");
  705. return (Criteria) this;
  706. }
  707. public Criteria andFcomidBetween(String value1, String value2) {
  708. addCriterion("fcomid between", value1, value2, "fcomid");
  709. return (Criteria) this;
  710. }
  711. public Criteria andFcomidNotBetween(String value1, String value2) {
  712. addCriterion("fcomid not between", value1, value2, "fcomid");
  713. return (Criteria) this;
  714. }
  715. public Criteria andFcomtypeIsNull() {
  716. addCriterion("fcomtype is null");
  717. return (Criteria) this;
  718. }
  719. public Criteria andFcomtypeIsNotNull() {
  720. addCriterion("fcomtype is not null");
  721. return (Criteria) this;
  722. }
  723. public Criteria andFcomtypeEqualTo(Integer value) {
  724. addCriterion("fcomtype =", value, "fcomtype");
  725. return (Criteria) this;
  726. }
  727. public Criteria andFcomtypeNotEqualTo(Integer value) {
  728. addCriterion("fcomtype <>", value, "fcomtype");
  729. return (Criteria) this;
  730. }
  731. public Criteria andFcomtypeGreaterThan(Integer value) {
  732. addCriterion("fcomtype >", value, "fcomtype");
  733. return (Criteria) this;
  734. }
  735. public Criteria andFcomtypeGreaterThanOrEqualTo(Integer value) {
  736. addCriterion("fcomtype >=", value, "fcomtype");
  737. return (Criteria) this;
  738. }
  739. public Criteria andFcomtypeLessThan(Integer value) {
  740. addCriterion("fcomtype <", value, "fcomtype");
  741. return (Criteria) this;
  742. }
  743. public Criteria andFcomtypeLessThanOrEqualTo(Integer value) {
  744. addCriterion("fcomtype <=", value, "fcomtype");
  745. return (Criteria) this;
  746. }
  747. public Criteria andFcomtypeIn(List<Integer> values) {
  748. addCriterion("fcomtype in", values, "fcomtype");
  749. return (Criteria) this;
  750. }
  751. public Criteria andFcomtypeNotIn(List<Integer> values) {
  752. addCriterion("fcomtype not in", values, "fcomtype");
  753. return (Criteria) this;
  754. }
  755. public Criteria andFcomtypeBetween(Integer value1, Integer value2) {
  756. addCriterion("fcomtype between", value1, value2, "fcomtype");
  757. return (Criteria) this;
  758. }
  759. public Criteria andFcomtypeNotBetween(Integer value1, Integer value2) {
  760. addCriterion("fcomtype not between", value1, value2, "fcomtype");
  761. return (Criteria) this;
  762. }
  763. }
  764. public static class Criteria extends GeneratedCriteria {
  765. protected Criteria() {
  766. super();
  767. }
  768. }
  769. public static class Criterion {
  770. private String condition;
  771. private Object value;
  772. private Object secondValue;
  773. private boolean noValue;
  774. private boolean singleValue;
  775. private boolean betweenValue;
  776. private boolean listValue;
  777. private String typeHandler;
  778. public String getCondition() {
  779. return condition;
  780. }
  781. public Object getValue() {
  782. return value;
  783. }
  784. public Object getSecondValue() {
  785. return secondValue;
  786. }
  787. public boolean isNoValue() {
  788. return noValue;
  789. }
  790. public boolean isSingleValue() {
  791. return singleValue;
  792. }
  793. public boolean isBetweenValue() {
  794. return betweenValue;
  795. }
  796. public boolean isListValue() {
  797. return listValue;
  798. }
  799. public String getTypeHandler() {
  800. return typeHandler;
  801. }
  802. protected Criterion(String condition) {
  803. super();
  804. this.condition = condition;
  805. this.typeHandler = null;
  806. this.noValue = true;
  807. }
  808. protected Criterion(String condition, Object value, String typeHandler) {
  809. super();
  810. this.condition = condition;
  811. this.value = value;
  812. this.typeHandler = typeHandler;
  813. if (value instanceof List<?>) {
  814. this.listValue = true;
  815. } else {
  816. this.singleValue = true;
  817. }
  818. }
  819. protected Criterion(String condition, Object value) {
  820. this(condition, value, null);
  821. }
  822. protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
  823. super();
  824. this.condition = condition;
  825. this.value = value;
  826. this.secondValue = secondValue;
  827. this.typeHandler = typeHandler;
  828. this.betweenValue = true;
  829. }
  830. protected Criterion(String condition, Object value, Object secondValue) {
  831. this(condition, value, secondValue, null);
  832. }
  833. }
  834. }