MtRoomExample.java 45 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451
  1. package com.minpay.db.table.model;
  2. import java.util.ArrayList;
  3. import java.util.List;
  4. public class MtRoomExample {
  5. /**
  6. * This field was generated by MyBatis Generator.
  7. * This field corresponds to the database table mt_room
  8. *
  9. * @mbggenerated
  10. */
  11. protected String orderByClause;
  12. /**
  13. * This field was generated by MyBatis Generator.
  14. * This field corresponds to the database table mt_room
  15. *
  16. * @mbggenerated
  17. */
  18. protected boolean distinct;
  19. /**
  20. * This field was generated by MyBatis Generator.
  21. * This field corresponds to the database table mt_room
  22. *
  23. * @mbggenerated
  24. */
  25. protected List<Criteria> oredCriteria;
  26. /**
  27. * This method was generated by MyBatis Generator.
  28. * This method corresponds to the database table mt_room
  29. *
  30. * @mbggenerated
  31. */
  32. public MtRoomExample() {
  33. oredCriteria = new ArrayList<Criteria>();
  34. }
  35. /**
  36. * This method was generated by MyBatis Generator.
  37. * This method corresponds to the database table mt_room
  38. *
  39. * @mbggenerated
  40. */
  41. public void setOrderByClause(String orderByClause) {
  42. this.orderByClause = orderByClause;
  43. }
  44. /**
  45. * This method was generated by MyBatis Generator.
  46. * This method corresponds to the database table mt_room
  47. *
  48. * @mbggenerated
  49. */
  50. public String getOrderByClause() {
  51. return orderByClause;
  52. }
  53. /**
  54. * This method was generated by MyBatis Generator.
  55. * This method corresponds to the database table mt_room
  56. *
  57. * @mbggenerated
  58. */
  59. public void setDistinct(boolean distinct) {
  60. this.distinct = distinct;
  61. }
  62. /**
  63. * This method was generated by MyBatis Generator.
  64. * This method corresponds to the database table mt_room
  65. *
  66. * @mbggenerated
  67. */
  68. public boolean isDistinct() {
  69. return distinct;
  70. }
  71. /**
  72. * This method was generated by MyBatis Generator.
  73. * This method corresponds to the database table mt_room
  74. *
  75. * @mbggenerated
  76. */
  77. public List<Criteria> getOredCriteria() {
  78. return oredCriteria;
  79. }
  80. /**
  81. * This method was generated by MyBatis Generator.
  82. * This method corresponds to the database table mt_room
  83. *
  84. * @mbggenerated
  85. */
  86. public void or(Criteria criteria) {
  87. oredCriteria.add(criteria);
  88. }
  89. /**
  90. * This method was generated by MyBatis Generator.
  91. * This method corresponds to the database table mt_room
  92. *
  93. * @mbggenerated
  94. */
  95. public Criteria or() {
  96. Criteria criteria = createCriteriaInternal();
  97. oredCriteria.add(criteria);
  98. return criteria;
  99. }
  100. /**
  101. * This method was generated by MyBatis Generator.
  102. * This method corresponds to the database table mt_room
  103. *
  104. * @mbggenerated
  105. */
  106. public Criteria createCriteria() {
  107. Criteria criteria = createCriteriaInternal();
  108. if (oredCriteria.size() == 0) {
  109. oredCriteria.add(criteria);
  110. }
  111. return criteria;
  112. }
  113. /**
  114. * This method was generated by MyBatis Generator.
  115. * This method corresponds to the database table mt_room
  116. *
  117. * @mbggenerated
  118. */
  119. protected Criteria createCriteriaInternal() {
  120. Criteria criteria = new Criteria();
  121. return criteria;
  122. }
  123. /**
  124. * This method was generated by MyBatis Generator.
  125. * This method corresponds to the database table mt_room
  126. *
  127. * @mbggenerated
  128. */
  129. public void clear() {
  130. oredCriteria.clear();
  131. orderByClause = null;
  132. distinct = false;
  133. }
  134. /**
  135. * This class was generated by MyBatis Generator.
  136. * This class corresponds to the database table mt_room
  137. *
  138. * @mbggenerated
  139. */
  140. protected abstract static class GeneratedCriteria {
  141. protected List<Criterion> criteria;
  142. protected GeneratedCriteria() {
  143. super();
  144. criteria = new ArrayList<Criterion>();
  145. }
  146. public boolean isValid() {
  147. return criteria.size() > 0;
  148. }
  149. public List<Criterion> getCriteria() {
  150. return criteria;
  151. }
  152. protected void addCriterion(String condition) {
  153. if (condition == null) {
  154. throw new RuntimeException("Value for condition cannot be null");
  155. }
  156. criteria.add(new Criterion(condition));
  157. }
  158. protected void addCriterion(String condition, Object value, String property) {
  159. if (value == null) {
  160. throw new RuntimeException("Value for " + property + " cannot be null");
  161. }
  162. criteria.add(new Criterion(condition, value));
  163. }
  164. protected void addCriterion(String condition, Object value1, Object value2, String property) {
  165. if (value1 == null || value2 == null) {
  166. throw new RuntimeException("Between values for " + property + " cannot be null");
  167. }
  168. criteria.add(new Criterion(condition, value1, value2));
  169. }
  170. public Criteria andIdIsNull() {
  171. addCriterion("RM_ID is null");
  172. return (Criteria) this;
  173. }
  174. public Criteria andIdIsNotNull() {
  175. addCriterion("RM_ID is not null");
  176. return (Criteria) this;
  177. }
  178. public Criteria andIdEqualTo(String value) {
  179. if(value == null ){
  180. andIdIsNull();
  181. } else {
  182. addCriterion("RM_ID =", value, "id");
  183. }
  184. return (Criteria) this;
  185. }
  186. public Criteria andIdNotEqualTo(String value) {
  187. if(value == null ){
  188. andIdIsNotNull();
  189. } else {
  190. addCriterion("RM_ID <>", value, "id");
  191. }
  192. return (Criteria) this;
  193. }
  194. public Criteria andIdGreaterThan(String value) {
  195. addCriterion("RM_ID >", value, "id");
  196. return (Criteria) this;
  197. }
  198. public Criteria andIdGreaterThanOrEqualTo(String value) {
  199. addCriterion("RM_ID >=", value, "id");
  200. return (Criteria) this;
  201. }
  202. public Criteria andIdLessThan(String value) {
  203. addCriterion("RM_ID <", value, "id");
  204. return (Criteria) this;
  205. }
  206. public Criteria andIdLessThanOrEqualTo(String value) {
  207. addCriterion("RM_ID <=", value, "id");
  208. return (Criteria) this;
  209. }
  210. public Criteria andIdLike(String value) {
  211. addCriterion("RM_ID like", value, "id");
  212. return (Criteria) this;
  213. }
  214. public Criteria andIdNotLike(String value) {
  215. addCriterion("RM_ID not like", value, "id");
  216. return (Criteria) this;
  217. }
  218. public Criteria andIdIn(List<String> values) {
  219. addCriterion("RM_ID in", values, "id");
  220. return (Criteria) this;
  221. }
  222. public Criteria andIdNotIn(List<String> values) {
  223. addCriterion("RM_ID not in", values, "id");
  224. return (Criteria) this;
  225. }
  226. public Criteria andIdBetween(String value1, String value2) {
  227. addCriterion("RM_ID between", value1, value2, "id");
  228. return (Criteria) this;
  229. }
  230. public Criteria andIdNotBetween(String value1, String value2) {
  231. addCriterion("RM_ID not between", value1, value2, "id");
  232. return (Criteria) this;
  233. }
  234. public Criteria andChannelIsNull() {
  235. addCriterion("RM_CHANNEL is null");
  236. return (Criteria) this;
  237. }
  238. public Criteria andChannelIsNotNull() {
  239. addCriterion("RM_CHANNEL is not null");
  240. return (Criteria) this;
  241. }
  242. public Criteria andChannelEqualTo(String value) {
  243. if(value == null ){
  244. andChannelIsNull();
  245. } else {
  246. addCriterion("RM_CHANNEL =", value, "channel");
  247. }
  248. return (Criteria) this;
  249. }
  250. public Criteria andChannelNotEqualTo(String value) {
  251. if(value == null ){
  252. andChannelIsNotNull();
  253. } else {
  254. addCriterion("RM_CHANNEL <>", value, "channel");
  255. }
  256. return (Criteria) this;
  257. }
  258. public Criteria andChannelGreaterThan(String value) {
  259. addCriterion("RM_CHANNEL >", value, "channel");
  260. return (Criteria) this;
  261. }
  262. public Criteria andChannelGreaterThanOrEqualTo(String value) {
  263. addCriterion("RM_CHANNEL >=", value, "channel");
  264. return (Criteria) this;
  265. }
  266. public Criteria andChannelLessThan(String value) {
  267. addCriterion("RM_CHANNEL <", value, "channel");
  268. return (Criteria) this;
  269. }
  270. public Criteria andChannelLessThanOrEqualTo(String value) {
  271. addCriterion("RM_CHANNEL <=", value, "channel");
  272. return (Criteria) this;
  273. }
  274. public Criteria andChannelLike(String value) {
  275. addCriterion("RM_CHANNEL like", value, "channel");
  276. return (Criteria) this;
  277. }
  278. public Criteria andChannelNotLike(String value) {
  279. addCriterion("RM_CHANNEL not like", value, "channel");
  280. return (Criteria) this;
  281. }
  282. public Criteria andChannelIn(List<String> values) {
  283. addCriterion("RM_CHANNEL in", values, "channel");
  284. return (Criteria) this;
  285. }
  286. public Criteria andChannelNotIn(List<String> values) {
  287. addCriterion("RM_CHANNEL not in", values, "channel");
  288. return (Criteria) this;
  289. }
  290. public Criteria andChannelBetween(String value1, String value2) {
  291. addCriterion("RM_CHANNEL between", value1, value2, "channel");
  292. return (Criteria) this;
  293. }
  294. public Criteria andChannelNotBetween(String value1, String value2) {
  295. addCriterion("RM_CHANNEL not between", value1, value2, "channel");
  296. return (Criteria) this;
  297. }
  298. public Criteria andNameIsNull() {
  299. addCriterion("RM_NAME is null");
  300. return (Criteria) this;
  301. }
  302. public Criteria andNameIsNotNull() {
  303. addCriterion("RM_NAME is not null");
  304. return (Criteria) this;
  305. }
  306. public Criteria andNameEqualTo(String value) {
  307. if(value == null ){
  308. andNameIsNull();
  309. } else {
  310. addCriterion("RM_NAME =", value, "name");
  311. }
  312. return (Criteria) this;
  313. }
  314. public Criteria andNameNotEqualTo(String value) {
  315. if(value == null ){
  316. andNameIsNotNull();
  317. } else {
  318. addCriterion("RM_NAME <>", value, "name");
  319. }
  320. return (Criteria) this;
  321. }
  322. public Criteria andNameGreaterThan(String value) {
  323. addCriterion("RM_NAME >", value, "name");
  324. return (Criteria) this;
  325. }
  326. public Criteria andNameGreaterThanOrEqualTo(String value) {
  327. addCriterion("RM_NAME >=", value, "name");
  328. return (Criteria) this;
  329. }
  330. public Criteria andNameLessThan(String value) {
  331. addCriterion("RM_NAME <", value, "name");
  332. return (Criteria) this;
  333. }
  334. public Criteria andNameLessThanOrEqualTo(String value) {
  335. addCriterion("RM_NAME <=", value, "name");
  336. return (Criteria) this;
  337. }
  338. public Criteria andNameLike(String value) {
  339. addCriterion("RM_NAME like", value, "name");
  340. return (Criteria) this;
  341. }
  342. public Criteria andNameNotLike(String value) {
  343. addCriterion("RM_NAME not like", value, "name");
  344. return (Criteria) this;
  345. }
  346. public Criteria andNameIn(List<String> values) {
  347. addCriterion("RM_NAME in", values, "name");
  348. return (Criteria) this;
  349. }
  350. public Criteria andNameNotIn(List<String> values) {
  351. addCriterion("RM_NAME not in", values, "name");
  352. return (Criteria) this;
  353. }
  354. public Criteria andNameBetween(String value1, String value2) {
  355. addCriterion("RM_NAME between", value1, value2, "name");
  356. return (Criteria) this;
  357. }
  358. public Criteria andNameNotBetween(String value1, String value2) {
  359. addCriterion("RM_NAME not between", value1, value2, "name");
  360. return (Criteria) this;
  361. }
  362. public Criteria andDescIsNull() {
  363. addCriterion("RM_DESC is null");
  364. return (Criteria) this;
  365. }
  366. public Criteria andDescIsNotNull() {
  367. addCriterion("RM_DESC is not null");
  368. return (Criteria) this;
  369. }
  370. public Criteria andDescEqualTo(String value) {
  371. if(value == null ){
  372. andDescIsNull();
  373. } else {
  374. addCriterion("RM_DESC =", value, "desc");
  375. }
  376. return (Criteria) this;
  377. }
  378. public Criteria andDescNotEqualTo(String value) {
  379. if(value == null ){
  380. andDescIsNotNull();
  381. } else {
  382. addCriterion("RM_DESC <>", value, "desc");
  383. }
  384. return (Criteria) this;
  385. }
  386. public Criteria andDescGreaterThan(String value) {
  387. addCriterion("RM_DESC >", value, "desc");
  388. return (Criteria) this;
  389. }
  390. public Criteria andDescGreaterThanOrEqualTo(String value) {
  391. addCriterion("RM_DESC >=", value, "desc");
  392. return (Criteria) this;
  393. }
  394. public Criteria andDescLessThan(String value) {
  395. addCriterion("RM_DESC <", value, "desc");
  396. return (Criteria) this;
  397. }
  398. public Criteria andDescLessThanOrEqualTo(String value) {
  399. addCriterion("RM_DESC <=", value, "desc");
  400. return (Criteria) this;
  401. }
  402. public Criteria andDescLike(String value) {
  403. addCriterion("RM_DESC like", value, "desc");
  404. return (Criteria) this;
  405. }
  406. public Criteria andDescNotLike(String value) {
  407. addCriterion("RM_DESC not like", value, "desc");
  408. return (Criteria) this;
  409. }
  410. public Criteria andDescIn(List<String> values) {
  411. addCriterion("RM_DESC in", values, "desc");
  412. return (Criteria) this;
  413. }
  414. public Criteria andDescNotIn(List<String> values) {
  415. addCriterion("RM_DESC not in", values, "desc");
  416. return (Criteria) this;
  417. }
  418. public Criteria andDescBetween(String value1, String value2) {
  419. addCriterion("RM_DESC between", value1, value2, "desc");
  420. return (Criteria) this;
  421. }
  422. public Criteria andDescNotBetween(String value1, String value2) {
  423. addCriterion("RM_DESC not between", value1, value2, "desc");
  424. return (Criteria) this;
  425. }
  426. public Criteria andCapacityIsNull() {
  427. addCriterion("RM_CAPACITY is null");
  428. return (Criteria) this;
  429. }
  430. public Criteria andCapacityIsNotNull() {
  431. addCriterion("RM_CAPACITY is not null");
  432. return (Criteria) this;
  433. }
  434. public Criteria andCapacityEqualTo(String value) {
  435. if(value == null ){
  436. andCapacityIsNull();
  437. } else {
  438. addCriterion("RM_CAPACITY =", value, "capacity");
  439. }
  440. return (Criteria) this;
  441. }
  442. public Criteria andCapacityNotEqualTo(String value) {
  443. if(value == null ){
  444. andCapacityIsNotNull();
  445. } else {
  446. addCriterion("RM_CAPACITY <>", value, "capacity");
  447. }
  448. return (Criteria) this;
  449. }
  450. public Criteria andCapacityGreaterThan(String value) {
  451. addCriterion("RM_CAPACITY >", value, "capacity");
  452. return (Criteria) this;
  453. }
  454. public Criteria andCapacityGreaterThanOrEqualTo(String value) {
  455. addCriterion("RM_CAPACITY >=", value, "capacity");
  456. return (Criteria) this;
  457. }
  458. public Criteria andCapacityLessThan(String value) {
  459. addCriterion("RM_CAPACITY <", value, "capacity");
  460. return (Criteria) this;
  461. }
  462. public Criteria andCapacityLessThanOrEqualTo(String value) {
  463. addCriterion("RM_CAPACITY <=", value, "capacity");
  464. return (Criteria) this;
  465. }
  466. public Criteria andCapacityLike(String value) {
  467. addCriterion("RM_CAPACITY like", value, "capacity");
  468. return (Criteria) this;
  469. }
  470. public Criteria andCapacityNotLike(String value) {
  471. addCriterion("RM_CAPACITY not like", value, "capacity");
  472. return (Criteria) this;
  473. }
  474. public Criteria andCapacityIn(List<String> values) {
  475. addCriterion("RM_CAPACITY in", values, "capacity");
  476. return (Criteria) this;
  477. }
  478. public Criteria andCapacityNotIn(List<String> values) {
  479. addCriterion("RM_CAPACITY not in", values, "capacity");
  480. return (Criteria) this;
  481. }
  482. public Criteria andCapacityBetween(String value1, String value2) {
  483. addCriterion("RM_CAPACITY between", value1, value2, "capacity");
  484. return (Criteria) this;
  485. }
  486. public Criteria andCapacityNotBetween(String value1, String value2) {
  487. addCriterion("RM_CAPACITY not between", value1, value2, "capacity");
  488. return (Criteria) this;
  489. }
  490. public Criteria andTyyIsNull() {
  491. addCriterion("RM_TYY is null");
  492. return (Criteria) this;
  493. }
  494. public Criteria andTyyIsNotNull() {
  495. addCriterion("RM_TYY is not null");
  496. return (Criteria) this;
  497. }
  498. public Criteria andTyyEqualTo(String value) {
  499. if(value == null ){
  500. andTyyIsNull();
  501. } else {
  502. addCriterion("RM_TYY =", value, "tyy");
  503. }
  504. return (Criteria) this;
  505. }
  506. public Criteria andTyyNotEqualTo(String value) {
  507. if(value == null ){
  508. andTyyIsNotNull();
  509. } else {
  510. addCriterion("RM_TYY <>", value, "tyy");
  511. }
  512. return (Criteria) this;
  513. }
  514. public Criteria andTyyGreaterThan(String value) {
  515. addCriterion("RM_TYY >", value, "tyy");
  516. return (Criteria) this;
  517. }
  518. public Criteria andTyyGreaterThanOrEqualTo(String value) {
  519. addCriterion("RM_TYY >=", value, "tyy");
  520. return (Criteria) this;
  521. }
  522. public Criteria andTyyLessThan(String value) {
  523. addCriterion("RM_TYY <", value, "tyy");
  524. return (Criteria) this;
  525. }
  526. public Criteria andTyyLessThanOrEqualTo(String value) {
  527. addCriterion("RM_TYY <=", value, "tyy");
  528. return (Criteria) this;
  529. }
  530. public Criteria andTyyLike(String value) {
  531. addCriterion("RM_TYY like", value, "tyy");
  532. return (Criteria) this;
  533. }
  534. public Criteria andTyyNotLike(String value) {
  535. addCriterion("RM_TYY not like", value, "tyy");
  536. return (Criteria) this;
  537. }
  538. public Criteria andTyyIn(List<String> values) {
  539. addCriterion("RM_TYY in", values, "tyy");
  540. return (Criteria) this;
  541. }
  542. public Criteria andTyyNotIn(List<String> values) {
  543. addCriterion("RM_TYY not in", values, "tyy");
  544. return (Criteria) this;
  545. }
  546. public Criteria andTyyBetween(String value1, String value2) {
  547. addCriterion("RM_TYY between", value1, value2, "tyy");
  548. return (Criteria) this;
  549. }
  550. public Criteria andTyyNotBetween(String value1, String value2) {
  551. addCriterion("RM_TYY not between", value1, value2, "tyy");
  552. return (Criteria) this;
  553. }
  554. public Criteria andBjbIsNull() {
  555. addCriterion("RM_BJB is null");
  556. return (Criteria) this;
  557. }
  558. public Criteria andBjbIsNotNull() {
  559. addCriterion("RM_BJB is not null");
  560. return (Criteria) this;
  561. }
  562. public Criteria andBjbEqualTo(String value) {
  563. if(value == null ){
  564. andBjbIsNull();
  565. } else {
  566. addCriterion("RM_BJB =", value, "bjb");
  567. }
  568. return (Criteria) this;
  569. }
  570. public Criteria andBjbNotEqualTo(String value) {
  571. if(value == null ){
  572. andBjbIsNotNull();
  573. } else {
  574. addCriterion("RM_BJB <>", value, "bjb");
  575. }
  576. return (Criteria) this;
  577. }
  578. public Criteria andBjbGreaterThan(String value) {
  579. addCriterion("RM_BJB >", value, "bjb");
  580. return (Criteria) this;
  581. }
  582. public Criteria andBjbGreaterThanOrEqualTo(String value) {
  583. addCriterion("RM_BJB >=", value, "bjb");
  584. return (Criteria) this;
  585. }
  586. public Criteria andBjbLessThan(String value) {
  587. addCriterion("RM_BJB <", value, "bjb");
  588. return (Criteria) this;
  589. }
  590. public Criteria andBjbLessThanOrEqualTo(String value) {
  591. addCriterion("RM_BJB <=", value, "bjb");
  592. return (Criteria) this;
  593. }
  594. public Criteria andBjbLike(String value) {
  595. addCriterion("RM_BJB like", value, "bjb");
  596. return (Criteria) this;
  597. }
  598. public Criteria andBjbNotLike(String value) {
  599. addCriterion("RM_BJB not like", value, "bjb");
  600. return (Criteria) this;
  601. }
  602. public Criteria andBjbIn(List<String> values) {
  603. addCriterion("RM_BJB in", values, "bjb");
  604. return (Criteria) this;
  605. }
  606. public Criteria andBjbNotIn(List<String> values) {
  607. addCriterion("RM_BJB not in", values, "bjb");
  608. return (Criteria) this;
  609. }
  610. public Criteria andBjbBetween(String value1, String value2) {
  611. addCriterion("RM_BJB between", value1, value2, "bjb");
  612. return (Criteria) this;
  613. }
  614. public Criteria andBjbNotBetween(String value1, String value2) {
  615. addCriterion("RM_BJB not between", value1, value2, "bjb");
  616. return (Criteria) this;
  617. }
  618. public Criteria andDhhyIsNull() {
  619. addCriterion("RM_DHHY is null");
  620. return (Criteria) this;
  621. }
  622. public Criteria andDhhyIsNotNull() {
  623. addCriterion("RM_DHHY is not null");
  624. return (Criteria) this;
  625. }
  626. public Criteria andDhhyEqualTo(String value) {
  627. if(value == null ){
  628. andDhhyIsNull();
  629. } else {
  630. addCriterion("RM_DHHY =", value, "dhhy");
  631. }
  632. return (Criteria) this;
  633. }
  634. public Criteria andDhhyNotEqualTo(String value) {
  635. if(value == null ){
  636. andDhhyIsNotNull();
  637. } else {
  638. addCriterion("RM_DHHY <>", value, "dhhy");
  639. }
  640. return (Criteria) this;
  641. }
  642. public Criteria andDhhyGreaterThan(String value) {
  643. addCriterion("RM_DHHY >", value, "dhhy");
  644. return (Criteria) this;
  645. }
  646. public Criteria andDhhyGreaterThanOrEqualTo(String value) {
  647. addCriterion("RM_DHHY >=", value, "dhhy");
  648. return (Criteria) this;
  649. }
  650. public Criteria andDhhyLessThan(String value) {
  651. addCriterion("RM_DHHY <", value, "dhhy");
  652. return (Criteria) this;
  653. }
  654. public Criteria andDhhyLessThanOrEqualTo(String value) {
  655. addCriterion("RM_DHHY <=", value, "dhhy");
  656. return (Criteria) this;
  657. }
  658. public Criteria andDhhyLike(String value) {
  659. addCriterion("RM_DHHY like", value, "dhhy");
  660. return (Criteria) this;
  661. }
  662. public Criteria andDhhyNotLike(String value) {
  663. addCriterion("RM_DHHY not like", value, "dhhy");
  664. return (Criteria) this;
  665. }
  666. public Criteria andDhhyIn(List<String> values) {
  667. addCriterion("RM_DHHY in", values, "dhhy");
  668. return (Criteria) this;
  669. }
  670. public Criteria andDhhyNotIn(List<String> values) {
  671. addCriterion("RM_DHHY not in", values, "dhhy");
  672. return (Criteria) this;
  673. }
  674. public Criteria andDhhyBetween(String value1, String value2) {
  675. addCriterion("RM_DHHY between", value1, value2, "dhhy");
  676. return (Criteria) this;
  677. }
  678. public Criteria andDhhyNotBetween(String value1, String value2) {
  679. addCriterion("RM_DHHY not between", value1, value2, "dhhy");
  680. return (Criteria) this;
  681. }
  682. public Criteria andSphyIsNull() {
  683. addCriterion("RM_SPHY is null");
  684. return (Criteria) this;
  685. }
  686. public Criteria andSphyIsNotNull() {
  687. addCriterion("RM_SPHY is not null");
  688. return (Criteria) this;
  689. }
  690. public Criteria andSphyEqualTo(String value) {
  691. if(value == null ){
  692. andSphyIsNull();
  693. } else {
  694. addCriterion("RM_SPHY =", value, "sphy");
  695. }
  696. return (Criteria) this;
  697. }
  698. public Criteria andSphyNotEqualTo(String value) {
  699. if(value == null ){
  700. andSphyIsNotNull();
  701. } else {
  702. addCriterion("RM_SPHY <>", value, "sphy");
  703. }
  704. return (Criteria) this;
  705. }
  706. public Criteria andSphyGreaterThan(String value) {
  707. addCriterion("RM_SPHY >", value, "sphy");
  708. return (Criteria) this;
  709. }
  710. public Criteria andSphyGreaterThanOrEqualTo(String value) {
  711. addCriterion("RM_SPHY >=", value, "sphy");
  712. return (Criteria) this;
  713. }
  714. public Criteria andSphyLessThan(String value) {
  715. addCriterion("RM_SPHY <", value, "sphy");
  716. return (Criteria) this;
  717. }
  718. public Criteria andSphyLessThanOrEqualTo(String value) {
  719. addCriterion("RM_SPHY <=", value, "sphy");
  720. return (Criteria) this;
  721. }
  722. public Criteria andSphyLike(String value) {
  723. addCriterion("RM_SPHY like", value, "sphy");
  724. return (Criteria) this;
  725. }
  726. public Criteria andSphyNotLike(String value) {
  727. addCriterion("RM_SPHY not like", value, "sphy");
  728. return (Criteria) this;
  729. }
  730. public Criteria andSphyIn(List<String> values) {
  731. addCriterion("RM_SPHY in", values, "sphy");
  732. return (Criteria) this;
  733. }
  734. public Criteria andSphyNotIn(List<String> values) {
  735. addCriterion("RM_SPHY not in", values, "sphy");
  736. return (Criteria) this;
  737. }
  738. public Criteria andSphyBetween(String value1, String value2) {
  739. addCriterion("RM_SPHY between", value1, value2, "sphy");
  740. return (Criteria) this;
  741. }
  742. public Criteria andSphyNotBetween(String value1, String value2) {
  743. addCriterion("RM_SPHY not between", value1, value2, "sphy");
  744. return (Criteria) this;
  745. }
  746. public Criteria andSerialnoIsNull() {
  747. addCriterion("RM_SERIALNO is null");
  748. return (Criteria) this;
  749. }
  750. public Criteria andSerialnoIsNotNull() {
  751. addCriterion("RM_SERIALNO is not null");
  752. return (Criteria) this;
  753. }
  754. public Criteria andSerialnoEqualTo(String value) {
  755. if(value == null ){
  756. andSerialnoIsNull();
  757. } else {
  758. addCriterion("RM_SERIALNO =", value, "serialno");
  759. }
  760. return (Criteria) this;
  761. }
  762. public Criteria andSerialnoNotEqualTo(String value) {
  763. if(value == null ){
  764. andSerialnoIsNotNull();
  765. } else {
  766. addCriterion("RM_SERIALNO <>", value, "serialno");
  767. }
  768. return (Criteria) this;
  769. }
  770. public Criteria andSerialnoGreaterThan(String value) {
  771. addCriterion("RM_SERIALNO >", value, "serialno");
  772. return (Criteria) this;
  773. }
  774. public Criteria andSerialnoGreaterThanOrEqualTo(String value) {
  775. addCriterion("RM_SERIALNO >=", value, "serialno");
  776. return (Criteria) this;
  777. }
  778. public Criteria andSerialnoLessThan(String value) {
  779. addCriterion("RM_SERIALNO <", value, "serialno");
  780. return (Criteria) this;
  781. }
  782. public Criteria andSerialnoLessThanOrEqualTo(String value) {
  783. addCriterion("RM_SERIALNO <=", value, "serialno");
  784. return (Criteria) this;
  785. }
  786. public Criteria andSerialnoLike(String value) {
  787. addCriterion("RM_SERIALNO like", value, "serialno");
  788. return (Criteria) this;
  789. }
  790. public Criteria andSerialnoNotLike(String value) {
  791. addCriterion("RM_SERIALNO not like", value, "serialno");
  792. return (Criteria) this;
  793. }
  794. public Criteria andSerialnoIn(List<String> values) {
  795. addCriterion("RM_SERIALNO in", values, "serialno");
  796. return (Criteria) this;
  797. }
  798. public Criteria andSerialnoNotIn(List<String> values) {
  799. addCriterion("RM_SERIALNO not in", values, "serialno");
  800. return (Criteria) this;
  801. }
  802. public Criteria andSerialnoBetween(String value1, String value2) {
  803. addCriterion("RM_SERIALNO between", value1, value2, "serialno");
  804. return (Criteria) this;
  805. }
  806. public Criteria andSerialnoNotBetween(String value1, String value2) {
  807. addCriterion("RM_SERIALNO not between", value1, value2, "serialno");
  808. return (Criteria) this;
  809. }
  810. public Criteria andCreateUserIsNull() {
  811. addCriterion("RM_CREATE_USER is null");
  812. return (Criteria) this;
  813. }
  814. public Criteria andCreateUserIsNotNull() {
  815. addCriterion("RM_CREATE_USER is not null");
  816. return (Criteria) this;
  817. }
  818. public Criteria andCreateUserEqualTo(String value) {
  819. if(value == null ){
  820. andCreateUserIsNull();
  821. } else {
  822. addCriterion("RM_CREATE_USER =", value, "createUser");
  823. }
  824. return (Criteria) this;
  825. }
  826. public Criteria andCreateUserNotEqualTo(String value) {
  827. if(value == null ){
  828. andCreateUserIsNotNull();
  829. } else {
  830. addCriterion("RM_CREATE_USER <>", value, "createUser");
  831. }
  832. return (Criteria) this;
  833. }
  834. public Criteria andCreateUserGreaterThan(String value) {
  835. addCriterion("RM_CREATE_USER >", value, "createUser");
  836. return (Criteria) this;
  837. }
  838. public Criteria andCreateUserGreaterThanOrEqualTo(String value) {
  839. addCriterion("RM_CREATE_USER >=", value, "createUser");
  840. return (Criteria) this;
  841. }
  842. public Criteria andCreateUserLessThan(String value) {
  843. addCriterion("RM_CREATE_USER <", value, "createUser");
  844. return (Criteria) this;
  845. }
  846. public Criteria andCreateUserLessThanOrEqualTo(String value) {
  847. addCriterion("RM_CREATE_USER <=", value, "createUser");
  848. return (Criteria) this;
  849. }
  850. public Criteria andCreateUserLike(String value) {
  851. addCriterion("RM_CREATE_USER like", value, "createUser");
  852. return (Criteria) this;
  853. }
  854. public Criteria andCreateUserNotLike(String value) {
  855. addCriterion("RM_CREATE_USER not like", value, "createUser");
  856. return (Criteria) this;
  857. }
  858. public Criteria andCreateUserIn(List<String> values) {
  859. addCriterion("RM_CREATE_USER in", values, "createUser");
  860. return (Criteria) this;
  861. }
  862. public Criteria andCreateUserNotIn(List<String> values) {
  863. addCriterion("RM_CREATE_USER not in", values, "createUser");
  864. return (Criteria) this;
  865. }
  866. public Criteria andCreateUserBetween(String value1, String value2) {
  867. addCriterion("RM_CREATE_USER between", value1, value2, "createUser");
  868. return (Criteria) this;
  869. }
  870. public Criteria andCreateUserNotBetween(String value1, String value2) {
  871. addCriterion("RM_CREATE_USER not between", value1, value2, "createUser");
  872. return (Criteria) this;
  873. }
  874. public Criteria andCreateTimeIsNull() {
  875. addCriterion("RM_CREATE_TIME is null");
  876. return (Criteria) this;
  877. }
  878. public Criteria andCreateTimeIsNotNull() {
  879. addCriterion("RM_CREATE_TIME is not null");
  880. return (Criteria) this;
  881. }
  882. public Criteria andCreateTimeEqualTo(String value) {
  883. if(value == null ){
  884. andCreateTimeIsNull();
  885. } else {
  886. addCriterion("RM_CREATE_TIME =", value, "createTime");
  887. }
  888. return (Criteria) this;
  889. }
  890. public Criteria andCreateTimeNotEqualTo(String value) {
  891. if(value == null ){
  892. andCreateTimeIsNotNull();
  893. } else {
  894. addCriterion("RM_CREATE_TIME <>", value, "createTime");
  895. }
  896. return (Criteria) this;
  897. }
  898. public Criteria andCreateTimeGreaterThan(String value) {
  899. addCriterion("RM_CREATE_TIME >", value, "createTime");
  900. return (Criteria) this;
  901. }
  902. public Criteria andCreateTimeGreaterThanOrEqualTo(String value) {
  903. addCriterion("RM_CREATE_TIME >=", value, "createTime");
  904. return (Criteria) this;
  905. }
  906. public Criteria andCreateTimeLessThan(String value) {
  907. addCriterion("RM_CREATE_TIME <", value, "createTime");
  908. return (Criteria) this;
  909. }
  910. public Criteria andCreateTimeLessThanOrEqualTo(String value) {
  911. addCriterion("RM_CREATE_TIME <=", value, "createTime");
  912. return (Criteria) this;
  913. }
  914. public Criteria andCreateTimeLike(String value) {
  915. addCriterion("RM_CREATE_TIME like", value, "createTime");
  916. return (Criteria) this;
  917. }
  918. public Criteria andCreateTimeNotLike(String value) {
  919. addCriterion("RM_CREATE_TIME not like", value, "createTime");
  920. return (Criteria) this;
  921. }
  922. public Criteria andCreateTimeIn(List<String> values) {
  923. addCriterion("RM_CREATE_TIME in", values, "createTime");
  924. return (Criteria) this;
  925. }
  926. public Criteria andCreateTimeNotIn(List<String> values) {
  927. addCriterion("RM_CREATE_TIME not in", values, "createTime");
  928. return (Criteria) this;
  929. }
  930. public Criteria andCreateTimeBetween(String value1, String value2) {
  931. addCriterion("RM_CREATE_TIME between", value1, value2, "createTime");
  932. return (Criteria) this;
  933. }
  934. public Criteria andCreateTimeNotBetween(String value1, String value2) {
  935. addCriterion("RM_CREATE_TIME not between", value1, value2, "createTime");
  936. return (Criteria) this;
  937. }
  938. public Criteria andModifyUserIsNull() {
  939. addCriterion("RM_MODIFY_USER is null");
  940. return (Criteria) this;
  941. }
  942. public Criteria andModifyUserIsNotNull() {
  943. addCriterion("RM_MODIFY_USER is not null");
  944. return (Criteria) this;
  945. }
  946. public Criteria andModifyUserEqualTo(String value) {
  947. if(value == null ){
  948. andModifyUserIsNull();
  949. } else {
  950. addCriterion("RM_MODIFY_USER =", value, "modifyUser");
  951. }
  952. return (Criteria) this;
  953. }
  954. public Criteria andModifyUserNotEqualTo(String value) {
  955. if(value == null ){
  956. andModifyUserIsNotNull();
  957. } else {
  958. addCriterion("RM_MODIFY_USER <>", value, "modifyUser");
  959. }
  960. return (Criteria) this;
  961. }
  962. public Criteria andModifyUserGreaterThan(String value) {
  963. addCriterion("RM_MODIFY_USER >", value, "modifyUser");
  964. return (Criteria) this;
  965. }
  966. public Criteria andModifyUserGreaterThanOrEqualTo(String value) {
  967. addCriterion("RM_MODIFY_USER >=", value, "modifyUser");
  968. return (Criteria) this;
  969. }
  970. public Criteria andModifyUserLessThan(String value) {
  971. addCriterion("RM_MODIFY_USER <", value, "modifyUser");
  972. return (Criteria) this;
  973. }
  974. public Criteria andModifyUserLessThanOrEqualTo(String value) {
  975. addCriterion("RM_MODIFY_USER <=", value, "modifyUser");
  976. return (Criteria) this;
  977. }
  978. public Criteria andModifyUserLike(String value) {
  979. addCriterion("RM_MODIFY_USER like", value, "modifyUser");
  980. return (Criteria) this;
  981. }
  982. public Criteria andModifyUserNotLike(String value) {
  983. addCriterion("RM_MODIFY_USER not like", value, "modifyUser");
  984. return (Criteria) this;
  985. }
  986. public Criteria andModifyUserIn(List<String> values) {
  987. addCriterion("RM_MODIFY_USER in", values, "modifyUser");
  988. return (Criteria) this;
  989. }
  990. public Criteria andModifyUserNotIn(List<String> values) {
  991. addCriterion("RM_MODIFY_USER not in", values, "modifyUser");
  992. return (Criteria) this;
  993. }
  994. public Criteria andModifyUserBetween(String value1, String value2) {
  995. addCriterion("RM_MODIFY_USER between", value1, value2, "modifyUser");
  996. return (Criteria) this;
  997. }
  998. public Criteria andModifyUserNotBetween(String value1, String value2) {
  999. addCriterion("RM_MODIFY_USER not between", value1, value2, "modifyUser");
  1000. return (Criteria) this;
  1001. }
  1002. public Criteria andModifyTimeIsNull() {
  1003. addCriterion("RM_MODIFY_TIME is null");
  1004. return (Criteria) this;
  1005. }
  1006. public Criteria andModifyTimeIsNotNull() {
  1007. addCriterion("RM_MODIFY_TIME is not null");
  1008. return (Criteria) this;
  1009. }
  1010. public Criteria andModifyTimeEqualTo(String value) {
  1011. if(value == null ){
  1012. andModifyTimeIsNull();
  1013. } else {
  1014. addCriterion("RM_MODIFY_TIME =", value, "modifyTime");
  1015. }
  1016. return (Criteria) this;
  1017. }
  1018. public Criteria andModifyTimeNotEqualTo(String value) {
  1019. if(value == null ){
  1020. andModifyTimeIsNotNull();
  1021. } else {
  1022. addCriterion("RM_MODIFY_TIME <>", value, "modifyTime");
  1023. }
  1024. return (Criteria) this;
  1025. }
  1026. public Criteria andModifyTimeGreaterThan(String value) {
  1027. addCriterion("RM_MODIFY_TIME >", value, "modifyTime");
  1028. return (Criteria) this;
  1029. }
  1030. public Criteria andModifyTimeGreaterThanOrEqualTo(String value) {
  1031. addCriterion("RM_MODIFY_TIME >=", value, "modifyTime");
  1032. return (Criteria) this;
  1033. }
  1034. public Criteria andModifyTimeLessThan(String value) {
  1035. addCriterion("RM_MODIFY_TIME <", value, "modifyTime");
  1036. return (Criteria) this;
  1037. }
  1038. public Criteria andModifyTimeLessThanOrEqualTo(String value) {
  1039. addCriterion("RM_MODIFY_TIME <=", value, "modifyTime");
  1040. return (Criteria) this;
  1041. }
  1042. public Criteria andModifyTimeLike(String value) {
  1043. addCriterion("RM_MODIFY_TIME like", value, "modifyTime");
  1044. return (Criteria) this;
  1045. }
  1046. public Criteria andModifyTimeNotLike(String value) {
  1047. addCriterion("RM_MODIFY_TIME not like", value, "modifyTime");
  1048. return (Criteria) this;
  1049. }
  1050. public Criteria andModifyTimeIn(List<String> values) {
  1051. addCriterion("RM_MODIFY_TIME in", values, "modifyTime");
  1052. return (Criteria) this;
  1053. }
  1054. public Criteria andModifyTimeNotIn(List<String> values) {
  1055. addCriterion("RM_MODIFY_TIME not in", values, "modifyTime");
  1056. return (Criteria) this;
  1057. }
  1058. public Criteria andModifyTimeBetween(String value1, String value2) {
  1059. addCriterion("RM_MODIFY_TIME between", value1, value2, "modifyTime");
  1060. return (Criteria) this;
  1061. }
  1062. public Criteria andModifyTimeNotBetween(String value1, String value2) {
  1063. addCriterion("RM_MODIFY_TIME not between", value1, value2, "modifyTime");
  1064. return (Criteria) this;
  1065. }
  1066. public Criteria andStateIsNull() {
  1067. addCriterion("RM_STATE is null");
  1068. return (Criteria) this;
  1069. }
  1070. public Criteria andStateIsNotNull() {
  1071. addCriterion("RM_STATE is not null");
  1072. return (Criteria) this;
  1073. }
  1074. public Criteria andStateEqualTo(String value) {
  1075. if(value == null ){
  1076. andStateIsNull();
  1077. } else {
  1078. addCriterion("RM_STATE =", value, "state");
  1079. }
  1080. return (Criteria) this;
  1081. }
  1082. public Criteria andStateNotEqualTo(String value) {
  1083. if(value == null ){
  1084. andStateIsNotNull();
  1085. } else {
  1086. addCriterion("RM_STATE <>", value, "state");
  1087. }
  1088. return (Criteria) this;
  1089. }
  1090. public Criteria andStateGreaterThan(String value) {
  1091. addCriterion("RM_STATE >", value, "state");
  1092. return (Criteria) this;
  1093. }
  1094. public Criteria andStateGreaterThanOrEqualTo(String value) {
  1095. addCriterion("RM_STATE >=", value, "state");
  1096. return (Criteria) this;
  1097. }
  1098. public Criteria andStateLessThan(String value) {
  1099. addCriterion("RM_STATE <", value, "state");
  1100. return (Criteria) this;
  1101. }
  1102. public Criteria andStateLessThanOrEqualTo(String value) {
  1103. addCriterion("RM_STATE <=", value, "state");
  1104. return (Criteria) this;
  1105. }
  1106. public Criteria andStateLike(String value) {
  1107. addCriterion("RM_STATE like", value, "state");
  1108. return (Criteria) this;
  1109. }
  1110. public Criteria andStateNotLike(String value) {
  1111. addCriterion("RM_STATE not like", value, "state");
  1112. return (Criteria) this;
  1113. }
  1114. public Criteria andStateIn(List<String> values) {
  1115. addCriterion("RM_STATE in", values, "state");
  1116. return (Criteria) this;
  1117. }
  1118. public Criteria andStateNotIn(List<String> values) {
  1119. addCriterion("RM_STATE not in", values, "state");
  1120. return (Criteria) this;
  1121. }
  1122. public Criteria andStateBetween(String value1, String value2) {
  1123. addCriterion("RM_STATE between", value1, value2, "state");
  1124. return (Criteria) this;
  1125. }
  1126. public Criteria andStateNotBetween(String value1, String value2) {
  1127. addCriterion("RM_STATE not between", value1, value2, "state");
  1128. return (Criteria) this;
  1129. }
  1130. }
  1131. /**
  1132. * This class was generated by MyBatis Generator.
  1133. * This class corresponds to the database table mt_room
  1134. *
  1135. * @mbggenerated do_not_delete_during_merge
  1136. */
  1137. public static class Criteria extends GeneratedCriteria {
  1138. protected Criteria() {
  1139. super();
  1140. }
  1141. }
  1142. /**
  1143. * This class was generated by MyBatis Generator.
  1144. * This class corresponds to the database table mt_room
  1145. *
  1146. * @mbggenerated
  1147. */
  1148. public static class Criterion {
  1149. private String condition;
  1150. private Object value;
  1151. private Object secondValue;
  1152. private boolean noValue;
  1153. private boolean singleValue;
  1154. private boolean betweenValue;
  1155. private boolean listValue;
  1156. public String getCondition() {
  1157. return condition;
  1158. }
  1159. public Object getValue() {
  1160. return value;
  1161. }
  1162. public Object getSecondValue() {
  1163. return secondValue;
  1164. }
  1165. public boolean isNoValue() {
  1166. return noValue;
  1167. }
  1168. public boolean isSingleValue() {
  1169. return singleValue;
  1170. }
  1171. public boolean isBetweenValue() {
  1172. return betweenValue;
  1173. }
  1174. public boolean isListValue() {
  1175. return listValue;
  1176. }
  1177. protected Criterion(String condition) {
  1178. super();
  1179. this.condition = condition;
  1180. this.noValue = true;
  1181. }
  1182. protected Criterion(String condition, Object value) {
  1183. super();
  1184. this.condition = condition;
  1185. this.value = value;
  1186. if (value instanceof List<?>) {
  1187. this.listValue = true;
  1188. } else {
  1189. this.singleValue = true;
  1190. }
  1191. }
  1192. protected Criterion(String condition, Object value, Object secondValue) {
  1193. super();
  1194. this.condition = condition;
  1195. this.value = value;
  1196. this.secondValue = secondValue;
  1197. this.betweenValue = true;
  1198. }
  1199. }
  1200. }