SjWeatherDataExample.java 90 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874
  1. package com.huimv.sj.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 SjWeatherDataExample {
  8. /**
  9. * This field was generated by Apache iBATIS ibator.
  10. * This field corresponds to the database table sj_weatherdata
  11. *
  12. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  13. */
  14. protected String orderByClause;
  15. /**
  16. * This field was generated by Apache iBATIS ibator.
  17. * This field corresponds to the database table sj_weatherdata
  18. *
  19. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  20. */
  21. protected List<Criteria> oredCriteria;
  22. /**
  23. * This field was generated by Apache iBATIS ibator.
  24. * This field corresponds to the database table sj_weatherdata
  25. *
  26. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  27. */
  28. protected int start = -1;
  29. /**
  30. * This field was generated by Apache iBATIS ibator.
  31. * This field corresponds to the database table sj_weatherdata
  32. *
  33. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  34. */
  35. protected int limit = -1;
  36. /**
  37. * This method was generated by Apache iBATIS ibator.
  38. * This method corresponds to the database table sj_weatherdata
  39. *
  40. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  41. */
  42. public SjWeatherDataExample() {
  43. oredCriteria = new ArrayList<Criteria>();
  44. }
  45. /**
  46. * This method was generated by Apache iBATIS ibator.
  47. * This method corresponds to the database table sj_weatherdata
  48. *
  49. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  50. */
  51. protected SjWeatherDataExample(SjWeatherDataExample 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 sj_weatherdata
  58. *
  59. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  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 sj_weatherdata
  67. *
  68. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  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 sj_weatherdata
  76. *
  77. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  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 sj_weatherdata
  85. *
  86. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  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 sj_weatherdata
  94. *
  95. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  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 sj_weatherdata
  107. *
  108. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  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 sj_weatherdata
  117. *
  118. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  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 sj_weatherdata
  126. *
  127. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  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 sj_weatherdata
  135. *
  136. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  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 sj_weatherdata
  144. *
  145. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  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 sj_weatherdata
  153. *
  154. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  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 sj_weatherdata
  162. *
  163. * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
  164. */
  165. public static class Criteria {
  166. protected List<String> criteriaWithoutValue;
  167. protected List<Map<String, Object>> criteriaWithSingleValue;
  168. protected List<Map<String, Object>> criteriaWithListValue;
  169. protected List<Map<String, Object>> criteriaWithBetweenValue;
  170. protected Criteria() {
  171. super();
  172. criteriaWithoutValue = new ArrayList<String>();
  173. criteriaWithSingleValue = new ArrayList<Map<String, Object>>();
  174. criteriaWithListValue = new ArrayList<Map<String, Object>>();
  175. criteriaWithBetweenValue = new ArrayList<Map<String, Object>>();
  176. }
  177. public boolean isValid() {
  178. return criteriaWithoutValue.size() > 0
  179. || criteriaWithSingleValue.size() > 0
  180. || criteriaWithListValue.size() > 0
  181. || criteriaWithBetweenValue.size() > 0;
  182. }
  183. public List<String> getCriteriaWithoutValue() {
  184. return criteriaWithoutValue;
  185. }
  186. public List<Map<String, Object>> getCriteriaWithSingleValue() {
  187. return criteriaWithSingleValue;
  188. }
  189. public List<Map<String, Object>> getCriteriaWithListValue() {
  190. return criteriaWithListValue;
  191. }
  192. public List<Map<String, Object>> getCriteriaWithBetweenValue() {
  193. return criteriaWithBetweenValue;
  194. }
  195. protected void addCriterion(String condition) {
  196. if (condition == null) {
  197. throw new RuntimeException("Value for condition cannot be null");
  198. }
  199. criteriaWithoutValue.add(condition);
  200. }
  201. protected void addCriterion(String condition, Object value, String property) {
  202. if (value == null) {
  203. throw new RuntimeException("Value for " + property + " cannot be null");
  204. }
  205. Map<String, Object> map = new HashMap<String, Object>();
  206. map.put("condition", condition);
  207. map.put("value", value);
  208. criteriaWithSingleValue.add(map);
  209. }
  210. protected void addCriterion(String condition, List<? extends Object> values, String property) {
  211. if (values == null || values.size() == 0) {
  212. throw new RuntimeException("Value list for " + property + " cannot be null or empty");
  213. }
  214. Map<String, Object> map = new HashMap<String, Object>();
  215. map.put("condition", condition);
  216. map.put("values", values);
  217. criteriaWithListValue.add(map);
  218. }
  219. protected void addCriterion(String condition, Object value1, Object value2, String property) {
  220. if (value1 == null || value2 == null) {
  221. throw new RuntimeException("Between values for " + property + " cannot be null");
  222. }
  223. List<Object> list = new ArrayList<Object>();
  224. list.add(value1);
  225. list.add(value2);
  226. Map<String, Object> map = new HashMap<String, Object>();
  227. map.put("condition", condition);
  228. map.put("values", list);
  229. criteriaWithBetweenValue.add(map);
  230. }
  231. public Criteria andIdIsNull() {
  232. addCriterion("ID is null");
  233. return this;
  234. }
  235. public Criteria andIdIsNotNull() {
  236. addCriterion("ID is not null");
  237. return this;
  238. }
  239. public Criteria andIdEqualTo(Integer value) {
  240. addCriterion("ID =", value, "id");
  241. return this;
  242. }
  243. public Criteria andIdNotEqualTo(Integer value) {
  244. addCriterion("ID <>", value, "id");
  245. return this;
  246. }
  247. public Criteria andIdGreaterThan(Integer value) {
  248. addCriterion("ID >", value, "id");
  249. return this;
  250. }
  251. public Criteria andIdGreaterThanOrEqualTo(Integer value) {
  252. addCriterion("ID >=", value, "id");
  253. return this;
  254. }
  255. public Criteria andIdLessThan(Integer value) {
  256. addCriterion("ID <", value, "id");
  257. return this;
  258. }
  259. public Criteria andIdLessThanOrEqualTo(Integer value) {
  260. addCriterion("ID <=", value, "id");
  261. return this;
  262. }
  263. public Criteria andIdIn(List<Integer> values) {
  264. addCriterion("ID in", values, "id");
  265. return this;
  266. }
  267. public Criteria andIdNotIn(List<Integer> values) {
  268. addCriterion("ID not in", values, "id");
  269. return this;
  270. }
  271. public Criteria andIdBetween(Integer value1, Integer value2) {
  272. addCriterion("ID between", value1, value2, "id");
  273. return this;
  274. }
  275. public Criteria andIdNotBetween(Integer value1, Integer value2) {
  276. addCriterion("ID not between", value1, value2, "id");
  277. return this;
  278. }
  279. public Criteria andYhidIsNull() {
  280. addCriterion("YHID is null");
  281. return this;
  282. }
  283. public Criteria andYhidIsNotNull() {
  284. addCriterion("YHID is not null");
  285. return this;
  286. }
  287. public Criteria andYhidEqualTo(Integer value) {
  288. addCriterion("YHID =", value, "yhid");
  289. return this;
  290. }
  291. public Criteria andYhidNotEqualTo(Integer value) {
  292. addCriterion("YHID <>", value, "yhid");
  293. return this;
  294. }
  295. public Criteria andYhidGreaterThan(Integer value) {
  296. addCriterion("YHID >", value, "yhid");
  297. return this;
  298. }
  299. public Criteria andYhidGreaterThanOrEqualTo(Integer value) {
  300. addCriterion("YHID >=", value, "yhid");
  301. return this;
  302. }
  303. public Criteria andYhidLessThan(Integer value) {
  304. addCriterion("YHID <", value, "yhid");
  305. return this;
  306. }
  307. public Criteria andYhidLessThanOrEqualTo(Integer value) {
  308. addCriterion("YHID <=", value, "yhid");
  309. return this;
  310. }
  311. public Criteria andYhidIn(List<Integer> values) {
  312. addCriterion("YHID in", values, "yhid");
  313. return this;
  314. }
  315. public Criteria andYhidNotIn(List<Integer> values) {
  316. addCriterion("YHID not in", values, "yhid");
  317. return this;
  318. }
  319. public Criteria andYhidBetween(Integer value1, Integer value2) {
  320. addCriterion("YHID between", value1, value2, "yhid");
  321. return this;
  322. }
  323. public Criteria andYhidNotBetween(Integer value1, Integer value2) {
  324. addCriterion("YHID not between", value1, value2, "yhid");
  325. return this;
  326. }
  327. public Criteria andIpIsNull() {
  328. addCriterion("IP is null");
  329. return this;
  330. }
  331. public Criteria andIpIsNotNull() {
  332. addCriterion("IP is not null");
  333. return this;
  334. }
  335. public Criteria andIpEqualTo(String value) {
  336. addCriterion("IP =", value, "ip");
  337. return this;
  338. }
  339. public Criteria andIpNotEqualTo(String value) {
  340. addCriterion("IP <>", value, "ip");
  341. return this;
  342. }
  343. public Criteria andIpGreaterThan(String value) {
  344. addCriterion("IP >", value, "ip");
  345. return this;
  346. }
  347. public Criteria andIpGreaterThanOrEqualTo(String value) {
  348. addCriterion("IP >=", value, "ip");
  349. return this;
  350. }
  351. public Criteria andIpLessThan(String value) {
  352. addCriterion("IP <", value, "ip");
  353. return this;
  354. }
  355. public Criteria andIpLessThanOrEqualTo(String value) {
  356. addCriterion("IP <=", value, "ip");
  357. return this;
  358. }
  359. public Criteria andIpLike(String value) {
  360. addCriterion("IP like", value, "ip");
  361. return this;
  362. }
  363. public Criteria andIpNotLike(String value) {
  364. addCriterion("IP not like", value, "ip");
  365. return this;
  366. }
  367. public Criteria andIpIn(List<String> values) {
  368. addCriterion("IP in", values, "ip");
  369. return this;
  370. }
  371. public Criteria andIpNotIn(List<String> values) {
  372. addCriterion("IP not in", values, "ip");
  373. return this;
  374. }
  375. public Criteria andIpBetween(String value1, String value2) {
  376. addCriterion("IP between", value1, value2, "ip");
  377. return this;
  378. }
  379. public Criteria andIpNotBetween(String value1, String value2) {
  380. addCriterion("IP not between", value1, value2, "ip");
  381. return this;
  382. }
  383. public Criteria andSavetimeIsNull() {
  384. addCriterion("savetime is null");
  385. return this;
  386. }
  387. public Criteria andSavetimeIsNotNull() {
  388. addCriterion("savetime is not null");
  389. return this;
  390. }
  391. public Criteria andSavetimeEqualTo(Date value) {
  392. addCriterion("savetime =", value, "savetime");
  393. return this;
  394. }
  395. public Criteria andSavetimeNotEqualTo(Date value) {
  396. addCriterion("savetime <>", value, "savetime");
  397. return this;
  398. }
  399. public Criteria andSavetimeGreaterThan(Date value) {
  400. addCriterion("savetime >", value, "savetime");
  401. return this;
  402. }
  403. public Criteria andSavetimeGreaterThanOrEqualTo(Date value) {
  404. addCriterion("savetime >=", value, "savetime");
  405. return this;
  406. }
  407. public Criteria andSavetimeLessThan(Date value) {
  408. addCriterion("savetime <", value, "savetime");
  409. return this;
  410. }
  411. public Criteria andSavetimeLessThanOrEqualTo(Date value) {
  412. addCriterion("savetime <=", value, "savetime");
  413. return this;
  414. }
  415. public Criteria andSavetimeIn(List<Date> values) {
  416. addCriterion("savetime in", values, "savetime");
  417. return this;
  418. }
  419. public Criteria andSavetimeNotIn(List<Date> values) {
  420. addCriterion("savetime not in", values, "savetime");
  421. return this;
  422. }
  423. public Criteria andSavetimeBetween(Date value1, Date value2) {
  424. addCriterion("savetime between", value1, value2, "savetime");
  425. return this;
  426. }
  427. public Criteria andSavetimeNotBetween(Date value1, Date value2) {
  428. addCriterion("savetime not between", value1, value2, "savetime");
  429. return this;
  430. }
  431. public Criteria andProvcityIsNull() {
  432. addCriterion("provCity is null");
  433. return this;
  434. }
  435. public Criteria andProvcityIsNotNull() {
  436. addCriterion("provCity is not null");
  437. return this;
  438. }
  439. public Criteria andProvcityEqualTo(String value) {
  440. addCriterion("provCity =", value, "provcity");
  441. return this;
  442. }
  443. public Criteria andProvcityNotEqualTo(String value) {
  444. addCriterion("provCity <>", value, "provcity");
  445. return this;
  446. }
  447. public Criteria andProvcityGreaterThan(String value) {
  448. addCriterion("provCity >", value, "provcity");
  449. return this;
  450. }
  451. public Criteria andProvcityGreaterThanOrEqualTo(String value) {
  452. addCriterion("provCity >=", value, "provcity");
  453. return this;
  454. }
  455. public Criteria andProvcityLessThan(String value) {
  456. addCriterion("provCity <", value, "provcity");
  457. return this;
  458. }
  459. public Criteria andProvcityLessThanOrEqualTo(String value) {
  460. addCriterion("provCity <=", value, "provcity");
  461. return this;
  462. }
  463. public Criteria andProvcityLike(String value) {
  464. addCriterion("provCity like", value, "provcity");
  465. return this;
  466. }
  467. public Criteria andProvcityNotLike(String value) {
  468. addCriterion("provCity not like", value, "provcity");
  469. return this;
  470. }
  471. public Criteria andProvcityIn(List<String> values) {
  472. addCriterion("provCity in", values, "provcity");
  473. return this;
  474. }
  475. public Criteria andProvcityNotIn(List<String> values) {
  476. addCriterion("provCity not in", values, "provcity");
  477. return this;
  478. }
  479. public Criteria andProvcityBetween(String value1, String value2) {
  480. addCriterion("provCity between", value1, value2, "provcity");
  481. return this;
  482. }
  483. public Criteria andProvcityNotBetween(String value1, String value2) {
  484. addCriterion("provCity not between", value1, value2, "provcity");
  485. return this;
  486. }
  487. public Criteria andCitynameIsNull() {
  488. addCriterion("cityName is null");
  489. return this;
  490. }
  491. public Criteria andCitynameIsNotNull() {
  492. addCriterion("cityName is not null");
  493. return this;
  494. }
  495. public Criteria andCitynameEqualTo(String value) {
  496. addCriterion("cityName =", value, "cityname");
  497. return this;
  498. }
  499. public Criteria andCitynameNotEqualTo(String value) {
  500. addCriterion("cityName <>", value, "cityname");
  501. return this;
  502. }
  503. public Criteria andCitynameGreaterThan(String value) {
  504. addCriterion("cityName >", value, "cityname");
  505. return this;
  506. }
  507. public Criteria andCitynameGreaterThanOrEqualTo(String value) {
  508. addCriterion("cityName >=", value, "cityname");
  509. return this;
  510. }
  511. public Criteria andCitynameLessThan(String value) {
  512. addCriterion("cityName <", value, "cityname");
  513. return this;
  514. }
  515. public Criteria andCitynameLessThanOrEqualTo(String value) {
  516. addCriterion("cityName <=", value, "cityname");
  517. return this;
  518. }
  519. public Criteria andCitynameLike(String value) {
  520. addCriterion("cityName like", value, "cityname");
  521. return this;
  522. }
  523. public Criteria andCitynameNotLike(String value) {
  524. addCriterion("cityName not like", value, "cityname");
  525. return this;
  526. }
  527. public Criteria andCitynameIn(List<String> values) {
  528. addCriterion("cityName in", values, "cityname");
  529. return this;
  530. }
  531. public Criteria andCitynameNotIn(List<String> values) {
  532. addCriterion("cityName not in", values, "cityname");
  533. return this;
  534. }
  535. public Criteria andCitynameBetween(String value1, String value2) {
  536. addCriterion("cityName between", value1, value2, "cityname");
  537. return this;
  538. }
  539. public Criteria andCitynameNotBetween(String value1, String value2) {
  540. addCriterion("cityName not between", value1, value2, "cityname");
  541. return this;
  542. }
  543. public Criteria andCitycodeIsNull() {
  544. addCriterion("cityCode is null");
  545. return this;
  546. }
  547. public Criteria andCitycodeIsNotNull() {
  548. addCriterion("cityCode is not null");
  549. return this;
  550. }
  551. public Criteria andCitycodeEqualTo(Integer value) {
  552. addCriterion("cityCode =", value, "citycode");
  553. return this;
  554. }
  555. public Criteria andCitycodeNotEqualTo(Integer value) {
  556. addCriterion("cityCode <>", value, "citycode");
  557. return this;
  558. }
  559. public Criteria andCitycodeGreaterThan(Integer value) {
  560. addCriterion("cityCode >", value, "citycode");
  561. return this;
  562. }
  563. public Criteria andCitycodeGreaterThanOrEqualTo(Integer value) {
  564. addCriterion("cityCode >=", value, "citycode");
  565. return this;
  566. }
  567. public Criteria andCitycodeLessThan(Integer value) {
  568. addCriterion("cityCode <", value, "citycode");
  569. return this;
  570. }
  571. public Criteria andCitycodeLessThanOrEqualTo(Integer value) {
  572. addCriterion("cityCode <=", value, "citycode");
  573. return this;
  574. }
  575. public Criteria andCitycodeIn(List<Integer> values) {
  576. addCriterion("cityCode in", values, "citycode");
  577. return this;
  578. }
  579. public Criteria andCitycodeNotIn(List<Integer> values) {
  580. addCriterion("cityCode not in", values, "citycode");
  581. return this;
  582. }
  583. public Criteria andCitycodeBetween(Integer value1, Integer value2) {
  584. addCriterion("cityCode between", value1, value2, "citycode");
  585. return this;
  586. }
  587. public Criteria andCitycodeNotBetween(Integer value1, Integer value2) {
  588. addCriterion("cityCode not between", value1, value2, "citycode");
  589. return this;
  590. }
  591. public Criteria andFbtimeIsNull() {
  592. addCriterion("fbTime is null");
  593. return this;
  594. }
  595. public Criteria andFbtimeIsNotNull() {
  596. addCriterion("fbTime is not null");
  597. return this;
  598. }
  599. public Criteria andFbtimeEqualTo(Date value) {
  600. addCriterion("fbTime =", value, "fbtime");
  601. return this;
  602. }
  603. public Criteria andFbtimeNotEqualTo(Date value) {
  604. addCriterion("fbTime <>", value, "fbtime");
  605. return this;
  606. }
  607. public Criteria andFbtimeGreaterThan(Date value) {
  608. addCriterion("fbTime >", value, "fbtime");
  609. return this;
  610. }
  611. public Criteria andFbtimeGreaterThanOrEqualTo(Date value) {
  612. addCriterion("fbTime >=", value, "fbtime");
  613. return this;
  614. }
  615. public Criteria andFbtimeLessThan(Date value) {
  616. addCriterion("fbTime <", value, "fbtime");
  617. return this;
  618. }
  619. public Criteria andFbtimeLessThanOrEqualTo(Date value) {
  620. addCriterion("fbTime <=", value, "fbtime");
  621. return this;
  622. }
  623. public Criteria andFbtimeIn(List<Date> values) {
  624. addCriterion("fbTime in", values, "fbtime");
  625. return this;
  626. }
  627. public Criteria andFbtimeNotIn(List<Date> values) {
  628. addCriterion("fbTime not in", values, "fbtime");
  629. return this;
  630. }
  631. public Criteria andFbtimeBetween(Date value1, Date value2) {
  632. addCriterion("fbTime between", value1, value2, "fbtime");
  633. return this;
  634. }
  635. public Criteria andFbtimeNotBetween(Date value1, Date value2) {
  636. addCriterion("fbTime not between", value1, value2, "fbtime");
  637. return this;
  638. }
  639. public Criteria andCurrtempIsNull() {
  640. addCriterion("currTemp is null");
  641. return this;
  642. }
  643. public Criteria andCurrtempIsNotNull() {
  644. addCriterion("currTemp is not null");
  645. return this;
  646. }
  647. public Criteria andCurrtempEqualTo(String value) {
  648. addCriterion("currTemp =", value, "currtemp");
  649. return this;
  650. }
  651. public Criteria andCurrtempNotEqualTo(String value) {
  652. addCriterion("currTemp <>", value, "currtemp");
  653. return this;
  654. }
  655. public Criteria andCurrtempGreaterThan(String value) {
  656. addCriterion("currTemp >", value, "currtemp");
  657. return this;
  658. }
  659. public Criteria andCurrtempGreaterThanOrEqualTo(String value) {
  660. addCriterion("currTemp >=", value, "currtemp");
  661. return this;
  662. }
  663. public Criteria andCurrtempLessThan(String value) {
  664. addCriterion("currTemp <", value, "currtemp");
  665. return this;
  666. }
  667. public Criteria andCurrtempLessThanOrEqualTo(String value) {
  668. addCriterion("currTemp <=", value, "currtemp");
  669. return this;
  670. }
  671. public Criteria andCurrtempLike(String value) {
  672. addCriterion("currTemp like", value, "currtemp");
  673. return this;
  674. }
  675. public Criteria andCurrtempNotLike(String value) {
  676. addCriterion("currTemp not like", value, "currtemp");
  677. return this;
  678. }
  679. public Criteria andCurrtempIn(List<String> values) {
  680. addCriterion("currTemp in", values, "currtemp");
  681. return this;
  682. }
  683. public Criteria andCurrtempNotIn(List<String> values) {
  684. addCriterion("currTemp not in", values, "currtemp");
  685. return this;
  686. }
  687. public Criteria andCurrtempBetween(String value1, String value2) {
  688. addCriterion("currTemp between", value1, value2, "currtemp");
  689. return this;
  690. }
  691. public Criteria andCurrtempNotBetween(String value1, String value2) {
  692. addCriterion("currTemp not between", value1, value2, "currtemp");
  693. return this;
  694. }
  695. public Criteria andCurrwindIsNull() {
  696. addCriterion("currWind is null");
  697. return this;
  698. }
  699. public Criteria andCurrwindIsNotNull() {
  700. addCriterion("currWind is not null");
  701. return this;
  702. }
  703. public Criteria andCurrwindEqualTo(String value) {
  704. addCriterion("currWind =", value, "currwind");
  705. return this;
  706. }
  707. public Criteria andCurrwindNotEqualTo(String value) {
  708. addCriterion("currWind <>", value, "currwind");
  709. return this;
  710. }
  711. public Criteria andCurrwindGreaterThan(String value) {
  712. addCriterion("currWind >", value, "currwind");
  713. return this;
  714. }
  715. public Criteria andCurrwindGreaterThanOrEqualTo(String value) {
  716. addCriterion("currWind >=", value, "currwind");
  717. return this;
  718. }
  719. public Criteria andCurrwindLessThan(String value) {
  720. addCriterion("currWind <", value, "currwind");
  721. return this;
  722. }
  723. public Criteria andCurrwindLessThanOrEqualTo(String value) {
  724. addCriterion("currWind <=", value, "currwind");
  725. return this;
  726. }
  727. public Criteria andCurrwindLike(String value) {
  728. addCriterion("currWind like", value, "currwind");
  729. return this;
  730. }
  731. public Criteria andCurrwindNotLike(String value) {
  732. addCriterion("currWind not like", value, "currwind");
  733. return this;
  734. }
  735. public Criteria andCurrwindIn(List<String> values) {
  736. addCriterion("currWind in", values, "currwind");
  737. return this;
  738. }
  739. public Criteria andCurrwindNotIn(List<String> values) {
  740. addCriterion("currWind not in", values, "currwind");
  741. return this;
  742. }
  743. public Criteria andCurrwindBetween(String value1, String value2) {
  744. addCriterion("currWind between", value1, value2, "currwind");
  745. return this;
  746. }
  747. public Criteria andCurrwindNotBetween(String value1, String value2) {
  748. addCriterion("currWind not between", value1, value2, "currwind");
  749. return this;
  750. }
  751. public Criteria andCurrwetIsNull() {
  752. addCriterion("currWet is null");
  753. return this;
  754. }
  755. public Criteria andCurrwetIsNotNull() {
  756. addCriterion("currWet is not null");
  757. return this;
  758. }
  759. public Criteria andCurrwetEqualTo(String value) {
  760. addCriterion("currWet =", value, "currwet");
  761. return this;
  762. }
  763. public Criteria andCurrwetNotEqualTo(String value) {
  764. addCriterion("currWet <>", value, "currwet");
  765. return this;
  766. }
  767. public Criteria andCurrwetGreaterThan(String value) {
  768. addCriterion("currWet >", value, "currwet");
  769. return this;
  770. }
  771. public Criteria andCurrwetGreaterThanOrEqualTo(String value) {
  772. addCriterion("currWet >=", value, "currwet");
  773. return this;
  774. }
  775. public Criteria andCurrwetLessThan(String value) {
  776. addCriterion("currWet <", value, "currwet");
  777. return this;
  778. }
  779. public Criteria andCurrwetLessThanOrEqualTo(String value) {
  780. addCriterion("currWet <=", value, "currwet");
  781. return this;
  782. }
  783. public Criteria andCurrwetLike(String value) {
  784. addCriterion("currWet like", value, "currwet");
  785. return this;
  786. }
  787. public Criteria andCurrwetNotLike(String value) {
  788. addCriterion("currWet not like", value, "currwet");
  789. return this;
  790. }
  791. public Criteria andCurrwetIn(List<String> values) {
  792. addCriterion("currWet in", values, "currwet");
  793. return this;
  794. }
  795. public Criteria andCurrwetNotIn(List<String> values) {
  796. addCriterion("currWet not in", values, "currwet");
  797. return this;
  798. }
  799. public Criteria andCurrwetBetween(String value1, String value2) {
  800. addCriterion("currWet between", value1, value2, "currwet");
  801. return this;
  802. }
  803. public Criteria andCurrwetNotBetween(String value1, String value2) {
  804. addCriterion("currWet not between", value1, value2, "currwet");
  805. return this;
  806. }
  807. public Criteria andCurrairIsNull() {
  808. addCriterion("currAir is null");
  809. return this;
  810. }
  811. public Criteria andCurrairIsNotNull() {
  812. addCriterion("currAir is not null");
  813. return this;
  814. }
  815. public Criteria andCurrairEqualTo(String value) {
  816. addCriterion("currAir =", value, "currair");
  817. return this;
  818. }
  819. public Criteria andCurrairNotEqualTo(String value) {
  820. addCriterion("currAir <>", value, "currair");
  821. return this;
  822. }
  823. public Criteria andCurrairGreaterThan(String value) {
  824. addCriterion("currAir >", value, "currair");
  825. return this;
  826. }
  827. public Criteria andCurrairGreaterThanOrEqualTo(String value) {
  828. addCriterion("currAir >=", value, "currair");
  829. return this;
  830. }
  831. public Criteria andCurrairLessThan(String value) {
  832. addCriterion("currAir <", value, "currair");
  833. return this;
  834. }
  835. public Criteria andCurrairLessThanOrEqualTo(String value) {
  836. addCriterion("currAir <=", value, "currair");
  837. return this;
  838. }
  839. public Criteria andCurrairLike(String value) {
  840. addCriterion("currAir like", value, "currair");
  841. return this;
  842. }
  843. public Criteria andCurrairNotLike(String value) {
  844. addCriterion("currAir not like", value, "currair");
  845. return this;
  846. }
  847. public Criteria andCurrairIn(List<String> values) {
  848. addCriterion("currAir in", values, "currair");
  849. return this;
  850. }
  851. public Criteria andCurrairNotIn(List<String> values) {
  852. addCriterion("currAir not in", values, "currair");
  853. return this;
  854. }
  855. public Criteria andCurrairBetween(String value1, String value2) {
  856. addCriterion("currAir between", value1, value2, "currair");
  857. return this;
  858. }
  859. public Criteria andCurrairNotBetween(String value1, String value2) {
  860. addCriterion("currAir not between", value1, value2, "currair");
  861. return this;
  862. }
  863. public Criteria andCurrzwxIsNull() {
  864. addCriterion("currZwx is null");
  865. return this;
  866. }
  867. public Criteria andCurrzwxIsNotNull() {
  868. addCriterion("currZwx is not null");
  869. return this;
  870. }
  871. public Criteria andCurrzwxEqualTo(String value) {
  872. addCriterion("currZwx =", value, "currzwx");
  873. return this;
  874. }
  875. public Criteria andCurrzwxNotEqualTo(String value) {
  876. addCriterion("currZwx <>", value, "currzwx");
  877. return this;
  878. }
  879. public Criteria andCurrzwxGreaterThan(String value) {
  880. addCriterion("currZwx >", value, "currzwx");
  881. return this;
  882. }
  883. public Criteria andCurrzwxGreaterThanOrEqualTo(String value) {
  884. addCriterion("currZwx >=", value, "currzwx");
  885. return this;
  886. }
  887. public Criteria andCurrzwxLessThan(String value) {
  888. addCriterion("currZwx <", value, "currzwx");
  889. return this;
  890. }
  891. public Criteria andCurrzwxLessThanOrEqualTo(String value) {
  892. addCriterion("currZwx <=", value, "currzwx");
  893. return this;
  894. }
  895. public Criteria andCurrzwxLike(String value) {
  896. addCriterion("currZwx like", value, "currzwx");
  897. return this;
  898. }
  899. public Criteria andCurrzwxNotLike(String value) {
  900. addCriterion("currZwx not like", value, "currzwx");
  901. return this;
  902. }
  903. public Criteria andCurrzwxIn(List<String> values) {
  904. addCriterion("currZwx in", values, "currzwx");
  905. return this;
  906. }
  907. public Criteria andCurrzwxNotIn(List<String> values) {
  908. addCriterion("currZwx not in", values, "currzwx");
  909. return this;
  910. }
  911. public Criteria andCurrzwxBetween(String value1, String value2) {
  912. addCriterion("currZwx between", value1, value2, "currzwx");
  913. return this;
  914. }
  915. public Criteria andCurrzwxNotBetween(String value1, String value2) {
  916. addCriterion("currZwx not between", value1, value2, "currzwx");
  917. return this;
  918. }
  919. public Criteria andFirstdateIsNull() {
  920. addCriterion("firstDate is null");
  921. return this;
  922. }
  923. public Criteria andFirstdateIsNotNull() {
  924. addCriterion("firstDate is not null");
  925. return this;
  926. }
  927. public Criteria andFirstdateEqualTo(String value) {
  928. addCriterion("firstDate =", value, "firstdate");
  929. return this;
  930. }
  931. public Criteria andFirstdateNotEqualTo(String value) {
  932. addCriterion("firstDate <>", value, "firstdate");
  933. return this;
  934. }
  935. public Criteria andFirstdateGreaterThan(String value) {
  936. addCriterion("firstDate >", value, "firstdate");
  937. return this;
  938. }
  939. public Criteria andFirstdateGreaterThanOrEqualTo(String value) {
  940. addCriterion("firstDate >=", value, "firstdate");
  941. return this;
  942. }
  943. public Criteria andFirstdateLessThan(String value) {
  944. addCriterion("firstDate <", value, "firstdate");
  945. return this;
  946. }
  947. public Criteria andFirstdateLessThanOrEqualTo(String value) {
  948. addCriterion("firstDate <=", value, "firstdate");
  949. return this;
  950. }
  951. public Criteria andFirstdateLike(String value) {
  952. addCriterion("firstDate like", value, "firstdate");
  953. return this;
  954. }
  955. public Criteria andFirstdateNotLike(String value) {
  956. addCriterion("firstDate not like", value, "firstdate");
  957. return this;
  958. }
  959. public Criteria andFirstdateIn(List<String> values) {
  960. addCriterion("firstDate in", values, "firstdate");
  961. return this;
  962. }
  963. public Criteria andFirstdateNotIn(List<String> values) {
  964. addCriterion("firstDate not in", values, "firstdate");
  965. return this;
  966. }
  967. public Criteria andFirstdateBetween(String value1, String value2) {
  968. addCriterion("firstDate between", value1, value2, "firstdate");
  969. return this;
  970. }
  971. public Criteria andFirstdateNotBetween(String value1, String value2) {
  972. addCriterion("firstDate not between", value1, value2, "firstdate");
  973. return this;
  974. }
  975. public Criteria andFirsttempIsNull() {
  976. addCriterion("firstTemp is null");
  977. return this;
  978. }
  979. public Criteria andFirsttempIsNotNull() {
  980. addCriterion("firstTemp is not null");
  981. return this;
  982. }
  983. public Criteria andFirsttempEqualTo(String value) {
  984. addCriterion("firstTemp =", value, "firsttemp");
  985. return this;
  986. }
  987. public Criteria andFirsttempNotEqualTo(String value) {
  988. addCriterion("firstTemp <>", value, "firsttemp");
  989. return this;
  990. }
  991. public Criteria andFirsttempGreaterThan(String value) {
  992. addCriterion("firstTemp >", value, "firsttemp");
  993. return this;
  994. }
  995. public Criteria andFirsttempGreaterThanOrEqualTo(String value) {
  996. addCriterion("firstTemp >=", value, "firsttemp");
  997. return this;
  998. }
  999. public Criteria andFirsttempLessThan(String value) {
  1000. addCriterion("firstTemp <", value, "firsttemp");
  1001. return this;
  1002. }
  1003. public Criteria andFirsttempLessThanOrEqualTo(String value) {
  1004. addCriterion("firstTemp <=", value, "firsttemp");
  1005. return this;
  1006. }
  1007. public Criteria andFirsttempLike(String value) {
  1008. addCriterion("firstTemp like", value, "firsttemp");
  1009. return this;
  1010. }
  1011. public Criteria andFirsttempNotLike(String value) {
  1012. addCriterion("firstTemp not like", value, "firsttemp");
  1013. return this;
  1014. }
  1015. public Criteria andFirsttempIn(List<String> values) {
  1016. addCriterion("firstTemp in", values, "firsttemp");
  1017. return this;
  1018. }
  1019. public Criteria andFirsttempNotIn(List<String> values) {
  1020. addCriterion("firstTemp not in", values, "firsttemp");
  1021. return this;
  1022. }
  1023. public Criteria andFirsttempBetween(String value1, String value2) {
  1024. addCriterion("firstTemp between", value1, value2, "firsttemp");
  1025. return this;
  1026. }
  1027. public Criteria andFirsttempNotBetween(String value1, String value2) {
  1028. addCriterion("firstTemp not between", value1, value2, "firsttemp");
  1029. return this;
  1030. }
  1031. public Criteria andFirstwindIsNull() {
  1032. addCriterion("firstWind is null");
  1033. return this;
  1034. }
  1035. public Criteria andFirstwindIsNotNull() {
  1036. addCriterion("firstWind is not null");
  1037. return this;
  1038. }
  1039. public Criteria andFirstwindEqualTo(String value) {
  1040. addCriterion("firstWind =", value, "firstwind");
  1041. return this;
  1042. }
  1043. public Criteria andFirstwindNotEqualTo(String value) {
  1044. addCriterion("firstWind <>", value, "firstwind");
  1045. return this;
  1046. }
  1047. public Criteria andFirstwindGreaterThan(String value) {
  1048. addCriterion("firstWind >", value, "firstwind");
  1049. return this;
  1050. }
  1051. public Criteria andFirstwindGreaterThanOrEqualTo(String value) {
  1052. addCriterion("firstWind >=", value, "firstwind");
  1053. return this;
  1054. }
  1055. public Criteria andFirstwindLessThan(String value) {
  1056. addCriterion("firstWind <", value, "firstwind");
  1057. return this;
  1058. }
  1059. public Criteria andFirstwindLessThanOrEqualTo(String value) {
  1060. addCriterion("firstWind <=", value, "firstwind");
  1061. return this;
  1062. }
  1063. public Criteria andFirstwindLike(String value) {
  1064. addCriterion("firstWind like", value, "firstwind");
  1065. return this;
  1066. }
  1067. public Criteria andFirstwindNotLike(String value) {
  1068. addCriterion("firstWind not like", value, "firstwind");
  1069. return this;
  1070. }
  1071. public Criteria andFirstwindIn(List<String> values) {
  1072. addCriterion("firstWind in", values, "firstwind");
  1073. return this;
  1074. }
  1075. public Criteria andFirstwindNotIn(List<String> values) {
  1076. addCriterion("firstWind not in", values, "firstwind");
  1077. return this;
  1078. }
  1079. public Criteria andFirstwindBetween(String value1, String value2) {
  1080. addCriterion("firstWind between", value1, value2, "firstwind");
  1081. return this;
  1082. }
  1083. public Criteria andFirstwindNotBetween(String value1, String value2) {
  1084. addCriterion("firstWind not between", value1, value2, "firstwind");
  1085. return this;
  1086. }
  1087. public Criteria andFirsticon1IsNull() {
  1088. addCriterion("firstIcon1 is null");
  1089. return this;
  1090. }
  1091. public Criteria andFirsticon1IsNotNull() {
  1092. addCriterion("firstIcon1 is not null");
  1093. return this;
  1094. }
  1095. public Criteria andFirsticon1EqualTo(String value) {
  1096. addCriterion("firstIcon1 =", value, "firsticon1");
  1097. return this;
  1098. }
  1099. public Criteria andFirsticon1NotEqualTo(String value) {
  1100. addCriterion("firstIcon1 <>", value, "firsticon1");
  1101. return this;
  1102. }
  1103. public Criteria andFirsticon1GreaterThan(String value) {
  1104. addCriterion("firstIcon1 >", value, "firsticon1");
  1105. return this;
  1106. }
  1107. public Criteria andFirsticon1GreaterThanOrEqualTo(String value) {
  1108. addCriterion("firstIcon1 >=", value, "firsticon1");
  1109. return this;
  1110. }
  1111. public Criteria andFirsticon1LessThan(String value) {
  1112. addCriterion("firstIcon1 <", value, "firsticon1");
  1113. return this;
  1114. }
  1115. public Criteria andFirsticon1LessThanOrEqualTo(String value) {
  1116. addCriterion("firstIcon1 <=", value, "firsticon1");
  1117. return this;
  1118. }
  1119. public Criteria andFirsticon1Like(String value) {
  1120. addCriterion("firstIcon1 like", value, "firsticon1");
  1121. return this;
  1122. }
  1123. public Criteria andFirsticon1NotLike(String value) {
  1124. addCriterion("firstIcon1 not like", value, "firsticon1");
  1125. return this;
  1126. }
  1127. public Criteria andFirsticon1In(List<String> values) {
  1128. addCriterion("firstIcon1 in", values, "firsticon1");
  1129. return this;
  1130. }
  1131. public Criteria andFirsticon1NotIn(List<String> values) {
  1132. addCriterion("firstIcon1 not in", values, "firsticon1");
  1133. return this;
  1134. }
  1135. public Criteria andFirsticon1Between(String value1, String value2) {
  1136. addCriterion("firstIcon1 between", value1, value2, "firsticon1");
  1137. return this;
  1138. }
  1139. public Criteria andFirsticon1NotBetween(String value1, String value2) {
  1140. addCriterion("firstIcon1 not between", value1, value2, "firsticon1");
  1141. return this;
  1142. }
  1143. public Criteria andFirsticon2IsNull() {
  1144. addCriterion("firstIcon2 is null");
  1145. return this;
  1146. }
  1147. public Criteria andFirsticon2IsNotNull() {
  1148. addCriterion("firstIcon2 is not null");
  1149. return this;
  1150. }
  1151. public Criteria andFirsticon2EqualTo(String value) {
  1152. addCriterion("firstIcon2 =", value, "firsticon2");
  1153. return this;
  1154. }
  1155. public Criteria andFirsticon2NotEqualTo(String value) {
  1156. addCriterion("firstIcon2 <>", value, "firsticon2");
  1157. return this;
  1158. }
  1159. public Criteria andFirsticon2GreaterThan(String value) {
  1160. addCriterion("firstIcon2 >", value, "firsticon2");
  1161. return this;
  1162. }
  1163. public Criteria andFirsticon2GreaterThanOrEqualTo(String value) {
  1164. addCriterion("firstIcon2 >=", value, "firsticon2");
  1165. return this;
  1166. }
  1167. public Criteria andFirsticon2LessThan(String value) {
  1168. addCriterion("firstIcon2 <", value, "firsticon2");
  1169. return this;
  1170. }
  1171. public Criteria andFirsticon2LessThanOrEqualTo(String value) {
  1172. addCriterion("firstIcon2 <=", value, "firsticon2");
  1173. return this;
  1174. }
  1175. public Criteria andFirsticon2Like(String value) {
  1176. addCriterion("firstIcon2 like", value, "firsticon2");
  1177. return this;
  1178. }
  1179. public Criteria andFirsticon2NotLike(String value) {
  1180. addCriterion("firstIcon2 not like", value, "firsticon2");
  1181. return this;
  1182. }
  1183. public Criteria andFirsticon2In(List<String> values) {
  1184. addCriterion("firstIcon2 in", values, "firsticon2");
  1185. return this;
  1186. }
  1187. public Criteria andFirsticon2NotIn(List<String> values) {
  1188. addCriterion("firstIcon2 not in", values, "firsticon2");
  1189. return this;
  1190. }
  1191. public Criteria andFirsticon2Between(String value1, String value2) {
  1192. addCriterion("firstIcon2 between", value1, value2, "firsticon2");
  1193. return this;
  1194. }
  1195. public Criteria andFirsticon2NotBetween(String value1, String value2) {
  1196. addCriterion("firstIcon2 not between", value1, value2, "firsticon2");
  1197. return this;
  1198. }
  1199. public Criteria andSecondateIsNull() {
  1200. addCriterion("seconDate is null");
  1201. return this;
  1202. }
  1203. public Criteria andSecondateIsNotNull() {
  1204. addCriterion("seconDate is not null");
  1205. return this;
  1206. }
  1207. public Criteria andSecondateEqualTo(String value) {
  1208. addCriterion("seconDate =", value, "secondate");
  1209. return this;
  1210. }
  1211. public Criteria andSecondateNotEqualTo(String value) {
  1212. addCriterion("seconDate <>", value, "secondate");
  1213. return this;
  1214. }
  1215. public Criteria andSecondateGreaterThan(String value) {
  1216. addCriterion("seconDate >", value, "secondate");
  1217. return this;
  1218. }
  1219. public Criteria andSecondateGreaterThanOrEqualTo(String value) {
  1220. addCriterion("seconDate >=", value, "secondate");
  1221. return this;
  1222. }
  1223. public Criteria andSecondateLessThan(String value) {
  1224. addCriterion("seconDate <", value, "secondate");
  1225. return this;
  1226. }
  1227. public Criteria andSecondateLessThanOrEqualTo(String value) {
  1228. addCriterion("seconDate <=", value, "secondate");
  1229. return this;
  1230. }
  1231. public Criteria andSecondateLike(String value) {
  1232. addCriterion("seconDate like", value, "secondate");
  1233. return this;
  1234. }
  1235. public Criteria andSecondateNotLike(String value) {
  1236. addCriterion("seconDate not like", value, "secondate");
  1237. return this;
  1238. }
  1239. public Criteria andSecondateIn(List<String> values) {
  1240. addCriterion("seconDate in", values, "secondate");
  1241. return this;
  1242. }
  1243. public Criteria andSecondateNotIn(List<String> values) {
  1244. addCriterion("seconDate not in", values, "secondate");
  1245. return this;
  1246. }
  1247. public Criteria andSecondateBetween(String value1, String value2) {
  1248. addCriterion("seconDate between", value1, value2, "secondate");
  1249. return this;
  1250. }
  1251. public Criteria andSecondateNotBetween(String value1, String value2) {
  1252. addCriterion("seconDate not between", value1, value2, "secondate");
  1253. return this;
  1254. }
  1255. public Criteria andSecontempIsNull() {
  1256. addCriterion("seconTemp is null");
  1257. return this;
  1258. }
  1259. public Criteria andSecontempIsNotNull() {
  1260. addCriterion("seconTemp is not null");
  1261. return this;
  1262. }
  1263. public Criteria andSecontempEqualTo(String value) {
  1264. addCriterion("seconTemp =", value, "secontemp");
  1265. return this;
  1266. }
  1267. public Criteria andSecontempNotEqualTo(String value) {
  1268. addCriterion("seconTemp <>", value, "secontemp");
  1269. return this;
  1270. }
  1271. public Criteria andSecontempGreaterThan(String value) {
  1272. addCriterion("seconTemp >", value, "secontemp");
  1273. return this;
  1274. }
  1275. public Criteria andSecontempGreaterThanOrEqualTo(String value) {
  1276. addCriterion("seconTemp >=", value, "secontemp");
  1277. return this;
  1278. }
  1279. public Criteria andSecontempLessThan(String value) {
  1280. addCriterion("seconTemp <", value, "secontemp");
  1281. return this;
  1282. }
  1283. public Criteria andSecontempLessThanOrEqualTo(String value) {
  1284. addCriterion("seconTemp <=", value, "secontemp");
  1285. return this;
  1286. }
  1287. public Criteria andSecontempLike(String value) {
  1288. addCriterion("seconTemp like", value, "secontemp");
  1289. return this;
  1290. }
  1291. public Criteria andSecontempNotLike(String value) {
  1292. addCriterion("seconTemp not like", value, "secontemp");
  1293. return this;
  1294. }
  1295. public Criteria andSecontempIn(List<String> values) {
  1296. addCriterion("seconTemp in", values, "secontemp");
  1297. return this;
  1298. }
  1299. public Criteria andSecontempNotIn(List<String> values) {
  1300. addCriterion("seconTemp not in", values, "secontemp");
  1301. return this;
  1302. }
  1303. public Criteria andSecontempBetween(String value1, String value2) {
  1304. addCriterion("seconTemp between", value1, value2, "secontemp");
  1305. return this;
  1306. }
  1307. public Criteria andSecontempNotBetween(String value1, String value2) {
  1308. addCriterion("seconTemp not between", value1, value2, "secontemp");
  1309. return this;
  1310. }
  1311. public Criteria andSeconwindIsNull() {
  1312. addCriterion("seconWind is null");
  1313. return this;
  1314. }
  1315. public Criteria andSeconwindIsNotNull() {
  1316. addCriterion("seconWind is not null");
  1317. return this;
  1318. }
  1319. public Criteria andSeconwindEqualTo(String value) {
  1320. addCriterion("seconWind =", value, "seconwind");
  1321. return this;
  1322. }
  1323. public Criteria andSeconwindNotEqualTo(String value) {
  1324. addCriterion("seconWind <>", value, "seconwind");
  1325. return this;
  1326. }
  1327. public Criteria andSeconwindGreaterThan(String value) {
  1328. addCriterion("seconWind >", value, "seconwind");
  1329. return this;
  1330. }
  1331. public Criteria andSeconwindGreaterThanOrEqualTo(String value) {
  1332. addCriterion("seconWind >=", value, "seconwind");
  1333. return this;
  1334. }
  1335. public Criteria andSeconwindLessThan(String value) {
  1336. addCriterion("seconWind <", value, "seconwind");
  1337. return this;
  1338. }
  1339. public Criteria andSeconwindLessThanOrEqualTo(String value) {
  1340. addCriterion("seconWind <=", value, "seconwind");
  1341. return this;
  1342. }
  1343. public Criteria andSeconwindLike(String value) {
  1344. addCriterion("seconWind like", value, "seconwind");
  1345. return this;
  1346. }
  1347. public Criteria andSeconwindNotLike(String value) {
  1348. addCriterion("seconWind not like", value, "seconwind");
  1349. return this;
  1350. }
  1351. public Criteria andSeconwindIn(List<String> values) {
  1352. addCriterion("seconWind in", values, "seconwind");
  1353. return this;
  1354. }
  1355. public Criteria andSeconwindNotIn(List<String> values) {
  1356. addCriterion("seconWind not in", values, "seconwind");
  1357. return this;
  1358. }
  1359. public Criteria andSeconwindBetween(String value1, String value2) {
  1360. addCriterion("seconWind between", value1, value2, "seconwind");
  1361. return this;
  1362. }
  1363. public Criteria andSeconwindNotBetween(String value1, String value2) {
  1364. addCriterion("seconWind not between", value1, value2, "seconwind");
  1365. return this;
  1366. }
  1367. public Criteria andSeconicon1IsNull() {
  1368. addCriterion("seconIcon1 is null");
  1369. return this;
  1370. }
  1371. public Criteria andSeconicon1IsNotNull() {
  1372. addCriterion("seconIcon1 is not null");
  1373. return this;
  1374. }
  1375. public Criteria andSeconicon1EqualTo(String value) {
  1376. addCriterion("seconIcon1 =", value, "seconicon1");
  1377. return this;
  1378. }
  1379. public Criteria andSeconicon1NotEqualTo(String value) {
  1380. addCriterion("seconIcon1 <>", value, "seconicon1");
  1381. return this;
  1382. }
  1383. public Criteria andSeconicon1GreaterThan(String value) {
  1384. addCriterion("seconIcon1 >", value, "seconicon1");
  1385. return this;
  1386. }
  1387. public Criteria andSeconicon1GreaterThanOrEqualTo(String value) {
  1388. addCriterion("seconIcon1 >=", value, "seconicon1");
  1389. return this;
  1390. }
  1391. public Criteria andSeconicon1LessThan(String value) {
  1392. addCriterion("seconIcon1 <", value, "seconicon1");
  1393. return this;
  1394. }
  1395. public Criteria andSeconicon1LessThanOrEqualTo(String value) {
  1396. addCriterion("seconIcon1 <=", value, "seconicon1");
  1397. return this;
  1398. }
  1399. public Criteria andSeconicon1Like(String value) {
  1400. addCriterion("seconIcon1 like", value, "seconicon1");
  1401. return this;
  1402. }
  1403. public Criteria andSeconicon1NotLike(String value) {
  1404. addCriterion("seconIcon1 not like", value, "seconicon1");
  1405. return this;
  1406. }
  1407. public Criteria andSeconicon1In(List<String> values) {
  1408. addCriterion("seconIcon1 in", values, "seconicon1");
  1409. return this;
  1410. }
  1411. public Criteria andSeconicon1NotIn(List<String> values) {
  1412. addCriterion("seconIcon1 not in", values, "seconicon1");
  1413. return this;
  1414. }
  1415. public Criteria andSeconicon1Between(String value1, String value2) {
  1416. addCriterion("seconIcon1 between", value1, value2, "seconicon1");
  1417. return this;
  1418. }
  1419. public Criteria andSeconicon1NotBetween(String value1, String value2) {
  1420. addCriterion("seconIcon1 not between", value1, value2, "seconicon1");
  1421. return this;
  1422. }
  1423. public Criteria andSeconicon2IsNull() {
  1424. addCriterion("seconIcon2 is null");
  1425. return this;
  1426. }
  1427. public Criteria andSeconicon2IsNotNull() {
  1428. addCriterion("seconIcon2 is not null");
  1429. return this;
  1430. }
  1431. public Criteria andSeconicon2EqualTo(String value) {
  1432. addCriterion("seconIcon2 =", value, "seconicon2");
  1433. return this;
  1434. }
  1435. public Criteria andSeconicon2NotEqualTo(String value) {
  1436. addCriterion("seconIcon2 <>", value, "seconicon2");
  1437. return this;
  1438. }
  1439. public Criteria andSeconicon2GreaterThan(String value) {
  1440. addCriterion("seconIcon2 >", value, "seconicon2");
  1441. return this;
  1442. }
  1443. public Criteria andSeconicon2GreaterThanOrEqualTo(String value) {
  1444. addCriterion("seconIcon2 >=", value, "seconicon2");
  1445. return this;
  1446. }
  1447. public Criteria andSeconicon2LessThan(String value) {
  1448. addCriterion("seconIcon2 <", value, "seconicon2");
  1449. return this;
  1450. }
  1451. public Criteria andSeconicon2LessThanOrEqualTo(String value) {
  1452. addCriterion("seconIcon2 <=", value, "seconicon2");
  1453. return this;
  1454. }
  1455. public Criteria andSeconicon2Like(String value) {
  1456. addCriterion("seconIcon2 like", value, "seconicon2");
  1457. return this;
  1458. }
  1459. public Criteria andSeconicon2NotLike(String value) {
  1460. addCriterion("seconIcon2 not like", value, "seconicon2");
  1461. return this;
  1462. }
  1463. public Criteria andSeconicon2In(List<String> values) {
  1464. addCriterion("seconIcon2 in", values, "seconicon2");
  1465. return this;
  1466. }
  1467. public Criteria andSeconicon2NotIn(List<String> values) {
  1468. addCriterion("seconIcon2 not in", values, "seconicon2");
  1469. return this;
  1470. }
  1471. public Criteria andSeconicon2Between(String value1, String value2) {
  1472. addCriterion("seconIcon2 between", value1, value2, "seconicon2");
  1473. return this;
  1474. }
  1475. public Criteria andSeconicon2NotBetween(String value1, String value2) {
  1476. addCriterion("seconIcon2 not between", value1, value2, "seconicon2");
  1477. return this;
  1478. }
  1479. public Criteria andThirddateIsNull() {
  1480. addCriterion("thirdDate is null");
  1481. return this;
  1482. }
  1483. public Criteria andThirddateIsNotNull() {
  1484. addCriterion("thirdDate is not null");
  1485. return this;
  1486. }
  1487. public Criteria andThirddateEqualTo(String value) {
  1488. addCriterion("thirdDate =", value, "thirddate");
  1489. return this;
  1490. }
  1491. public Criteria andThirddateNotEqualTo(String value) {
  1492. addCriterion("thirdDate <>", value, "thirddate");
  1493. return this;
  1494. }
  1495. public Criteria andThirddateGreaterThan(String value) {
  1496. addCriterion("thirdDate >", value, "thirddate");
  1497. return this;
  1498. }
  1499. public Criteria andThirddateGreaterThanOrEqualTo(String value) {
  1500. addCriterion("thirdDate >=", value, "thirddate");
  1501. return this;
  1502. }
  1503. public Criteria andThirddateLessThan(String value) {
  1504. addCriterion("thirdDate <", value, "thirddate");
  1505. return this;
  1506. }
  1507. public Criteria andThirddateLessThanOrEqualTo(String value) {
  1508. addCriterion("thirdDate <=", value, "thirddate");
  1509. return this;
  1510. }
  1511. public Criteria andThirddateLike(String value) {
  1512. addCriterion("thirdDate like", value, "thirddate");
  1513. return this;
  1514. }
  1515. public Criteria andThirddateNotLike(String value) {
  1516. addCriterion("thirdDate not like", value, "thirddate");
  1517. return this;
  1518. }
  1519. public Criteria andThirddateIn(List<String> values) {
  1520. addCriterion("thirdDate in", values, "thirddate");
  1521. return this;
  1522. }
  1523. public Criteria andThirddateNotIn(List<String> values) {
  1524. addCriterion("thirdDate not in", values, "thirddate");
  1525. return this;
  1526. }
  1527. public Criteria andThirddateBetween(String value1, String value2) {
  1528. addCriterion("thirdDate between", value1, value2, "thirddate");
  1529. return this;
  1530. }
  1531. public Criteria andThirddateNotBetween(String value1, String value2) {
  1532. addCriterion("thirdDate not between", value1, value2, "thirddate");
  1533. return this;
  1534. }
  1535. public Criteria andThirdtempIsNull() {
  1536. addCriterion("thirdTemp is null");
  1537. return this;
  1538. }
  1539. public Criteria andThirdtempIsNotNull() {
  1540. addCriterion("thirdTemp is not null");
  1541. return this;
  1542. }
  1543. public Criteria andThirdtempEqualTo(String value) {
  1544. addCriterion("thirdTemp =", value, "thirdtemp");
  1545. return this;
  1546. }
  1547. public Criteria andThirdtempNotEqualTo(String value) {
  1548. addCriterion("thirdTemp <>", value, "thirdtemp");
  1549. return this;
  1550. }
  1551. public Criteria andThirdtempGreaterThan(String value) {
  1552. addCriterion("thirdTemp >", value, "thirdtemp");
  1553. return this;
  1554. }
  1555. public Criteria andThirdtempGreaterThanOrEqualTo(String value) {
  1556. addCriterion("thirdTemp >=", value, "thirdtemp");
  1557. return this;
  1558. }
  1559. public Criteria andThirdtempLessThan(String value) {
  1560. addCriterion("thirdTemp <", value, "thirdtemp");
  1561. return this;
  1562. }
  1563. public Criteria andThirdtempLessThanOrEqualTo(String value) {
  1564. addCriterion("thirdTemp <=", value, "thirdtemp");
  1565. return this;
  1566. }
  1567. public Criteria andThirdtempLike(String value) {
  1568. addCriterion("thirdTemp like", value, "thirdtemp");
  1569. return this;
  1570. }
  1571. public Criteria andThirdtempNotLike(String value) {
  1572. addCriterion("thirdTemp not like", value, "thirdtemp");
  1573. return this;
  1574. }
  1575. public Criteria andThirdtempIn(List<String> values) {
  1576. addCriterion("thirdTemp in", values, "thirdtemp");
  1577. return this;
  1578. }
  1579. public Criteria andThirdtempNotIn(List<String> values) {
  1580. addCriterion("thirdTemp not in", values, "thirdtemp");
  1581. return this;
  1582. }
  1583. public Criteria andThirdtempBetween(String value1, String value2) {
  1584. addCriterion("thirdTemp between", value1, value2, "thirdtemp");
  1585. return this;
  1586. }
  1587. public Criteria andThirdtempNotBetween(String value1, String value2) {
  1588. addCriterion("thirdTemp not between", value1, value2, "thirdtemp");
  1589. return this;
  1590. }
  1591. public Criteria andThirdwindIsNull() {
  1592. addCriterion("thirdWind is null");
  1593. return this;
  1594. }
  1595. public Criteria andThirdwindIsNotNull() {
  1596. addCriterion("thirdWind is not null");
  1597. return this;
  1598. }
  1599. public Criteria andThirdwindEqualTo(String value) {
  1600. addCriterion("thirdWind =", value, "thirdwind");
  1601. return this;
  1602. }
  1603. public Criteria andThirdwindNotEqualTo(String value) {
  1604. addCriterion("thirdWind <>", value, "thirdwind");
  1605. return this;
  1606. }
  1607. public Criteria andThirdwindGreaterThan(String value) {
  1608. addCriterion("thirdWind >", value, "thirdwind");
  1609. return this;
  1610. }
  1611. public Criteria andThirdwindGreaterThanOrEqualTo(String value) {
  1612. addCriterion("thirdWind >=", value, "thirdwind");
  1613. return this;
  1614. }
  1615. public Criteria andThirdwindLessThan(String value) {
  1616. addCriterion("thirdWind <", value, "thirdwind");
  1617. return this;
  1618. }
  1619. public Criteria andThirdwindLessThanOrEqualTo(String value) {
  1620. addCriterion("thirdWind <=", value, "thirdwind");
  1621. return this;
  1622. }
  1623. public Criteria andThirdwindLike(String value) {
  1624. addCriterion("thirdWind like", value, "thirdwind");
  1625. return this;
  1626. }
  1627. public Criteria andThirdwindNotLike(String value) {
  1628. addCriterion("thirdWind not like", value, "thirdwind");
  1629. return this;
  1630. }
  1631. public Criteria andThirdwindIn(List<String> values) {
  1632. addCriterion("thirdWind in", values, "thirdwind");
  1633. return this;
  1634. }
  1635. public Criteria andThirdwindNotIn(List<String> values) {
  1636. addCriterion("thirdWind not in", values, "thirdwind");
  1637. return this;
  1638. }
  1639. public Criteria andThirdwindBetween(String value1, String value2) {
  1640. addCriterion("thirdWind between", value1, value2, "thirdwind");
  1641. return this;
  1642. }
  1643. public Criteria andThirdwindNotBetween(String value1, String value2) {
  1644. addCriterion("thirdWind not between", value1, value2, "thirdwind");
  1645. return this;
  1646. }
  1647. public Criteria andThirdicon1IsNull() {
  1648. addCriterion("thirdIcon1 is null");
  1649. return this;
  1650. }
  1651. public Criteria andThirdicon1IsNotNull() {
  1652. addCriterion("thirdIcon1 is not null");
  1653. return this;
  1654. }
  1655. public Criteria andThirdicon1EqualTo(String value) {
  1656. addCriterion("thirdIcon1 =", value, "thirdicon1");
  1657. return this;
  1658. }
  1659. public Criteria andThirdicon1NotEqualTo(String value) {
  1660. addCriterion("thirdIcon1 <>", value, "thirdicon1");
  1661. return this;
  1662. }
  1663. public Criteria andThirdicon1GreaterThan(String value) {
  1664. addCriterion("thirdIcon1 >", value, "thirdicon1");
  1665. return this;
  1666. }
  1667. public Criteria andThirdicon1GreaterThanOrEqualTo(String value) {
  1668. addCriterion("thirdIcon1 >=", value, "thirdicon1");
  1669. return this;
  1670. }
  1671. public Criteria andThirdicon1LessThan(String value) {
  1672. addCriterion("thirdIcon1 <", value, "thirdicon1");
  1673. return this;
  1674. }
  1675. public Criteria andThirdicon1LessThanOrEqualTo(String value) {
  1676. addCriterion("thirdIcon1 <=", value, "thirdicon1");
  1677. return this;
  1678. }
  1679. public Criteria andThirdicon1Like(String value) {
  1680. addCriterion("thirdIcon1 like", value, "thirdicon1");
  1681. return this;
  1682. }
  1683. public Criteria andThirdicon1NotLike(String value) {
  1684. addCriterion("thirdIcon1 not like", value, "thirdicon1");
  1685. return this;
  1686. }
  1687. public Criteria andThirdicon1In(List<String> values) {
  1688. addCriterion("thirdIcon1 in", values, "thirdicon1");
  1689. return this;
  1690. }
  1691. public Criteria andThirdicon1NotIn(List<String> values) {
  1692. addCriterion("thirdIcon1 not in", values, "thirdicon1");
  1693. return this;
  1694. }
  1695. public Criteria andThirdicon1Between(String value1, String value2) {
  1696. addCriterion("thirdIcon1 between", value1, value2, "thirdicon1");
  1697. return this;
  1698. }
  1699. public Criteria andThirdicon1NotBetween(String value1, String value2) {
  1700. addCriterion("thirdIcon1 not between", value1, value2, "thirdicon1");
  1701. return this;
  1702. }
  1703. public Criteria andThirdicon2IsNull() {
  1704. addCriterion("thirdIcon2 is null");
  1705. return this;
  1706. }
  1707. public Criteria andThirdicon2IsNotNull() {
  1708. addCriterion("thirdIcon2 is not null");
  1709. return this;
  1710. }
  1711. public Criteria andThirdicon2EqualTo(String value) {
  1712. addCriterion("thirdIcon2 =", value, "thirdicon2");
  1713. return this;
  1714. }
  1715. public Criteria andThirdicon2NotEqualTo(String value) {
  1716. addCriterion("thirdIcon2 <>", value, "thirdicon2");
  1717. return this;
  1718. }
  1719. public Criteria andThirdicon2GreaterThan(String value) {
  1720. addCriterion("thirdIcon2 >", value, "thirdicon2");
  1721. return this;
  1722. }
  1723. public Criteria andThirdicon2GreaterThanOrEqualTo(String value) {
  1724. addCriterion("thirdIcon2 >=", value, "thirdicon2");
  1725. return this;
  1726. }
  1727. public Criteria andThirdicon2LessThan(String value) {
  1728. addCriterion("thirdIcon2 <", value, "thirdicon2");
  1729. return this;
  1730. }
  1731. public Criteria andThirdicon2LessThanOrEqualTo(String value) {
  1732. addCriterion("thirdIcon2 <=", value, "thirdicon2");
  1733. return this;
  1734. }
  1735. public Criteria andThirdicon2Like(String value) {
  1736. addCriterion("thirdIcon2 like", value, "thirdicon2");
  1737. return this;
  1738. }
  1739. public Criteria andThirdicon2NotLike(String value) {
  1740. addCriterion("thirdIcon2 not like", value, "thirdicon2");
  1741. return this;
  1742. }
  1743. public Criteria andThirdicon2In(List<String> values) {
  1744. addCriterion("thirdIcon2 in", values, "thirdicon2");
  1745. return this;
  1746. }
  1747. public Criteria andThirdicon2NotIn(List<String> values) {
  1748. addCriterion("thirdIcon2 not in", values, "thirdicon2");
  1749. return this;
  1750. }
  1751. public Criteria andThirdicon2Between(String value1, String value2) {
  1752. addCriterion("thirdIcon2 between", value1, value2, "thirdicon2");
  1753. return this;
  1754. }
  1755. public Criteria andThirdicon2NotBetween(String value1, String value2) {
  1756. addCriterion("thirdIcon2 not between", value1, value2, "thirdicon2");
  1757. return this;
  1758. }
  1759. public Criteria andFourthdateIsNull() {
  1760. addCriterion("fourthDate is null");
  1761. return this;
  1762. }
  1763. public Criteria andFourthdateIsNotNull() {
  1764. addCriterion("fourthDate is not null");
  1765. return this;
  1766. }
  1767. public Criteria andFourthdateEqualTo(String value) {
  1768. addCriterion("fourthDate =", value, "fourthdate");
  1769. return this;
  1770. }
  1771. public Criteria andFourthdateNotEqualTo(String value) {
  1772. addCriterion("fourthDate <>", value, "fourthdate");
  1773. return this;
  1774. }
  1775. public Criteria andFourthdateGreaterThan(String value) {
  1776. addCriterion("fourthDate >", value, "fourthdate");
  1777. return this;
  1778. }
  1779. public Criteria andFourthdateGreaterThanOrEqualTo(String value) {
  1780. addCriterion("fourthDate >=", value, "fourthdate");
  1781. return this;
  1782. }
  1783. public Criteria andFourthdateLessThan(String value) {
  1784. addCriterion("fourthDate <", value, "fourthdate");
  1785. return this;
  1786. }
  1787. public Criteria andFourthdateLessThanOrEqualTo(String value) {
  1788. addCriterion("fourthDate <=", value, "fourthdate");
  1789. return this;
  1790. }
  1791. public Criteria andFourthdateLike(String value) {
  1792. addCriterion("fourthDate like", value, "fourthdate");
  1793. return this;
  1794. }
  1795. public Criteria andFourthdateNotLike(String value) {
  1796. addCriterion("fourthDate not like", value, "fourthdate");
  1797. return this;
  1798. }
  1799. public Criteria andFourthdateIn(List<String> values) {
  1800. addCriterion("fourthDate in", values, "fourthdate");
  1801. return this;
  1802. }
  1803. public Criteria andFourthdateNotIn(List<String> values) {
  1804. addCriterion("fourthDate not in", values, "fourthdate");
  1805. return this;
  1806. }
  1807. public Criteria andFourthdateBetween(String value1, String value2) {
  1808. addCriterion("fourthDate between", value1, value2, "fourthdate");
  1809. return this;
  1810. }
  1811. public Criteria andFourthdateNotBetween(String value1, String value2) {
  1812. addCriterion("fourthDate not between", value1, value2, "fourthdate");
  1813. return this;
  1814. }
  1815. public Criteria andFourthtempIsNull() {
  1816. addCriterion("fourthTemp is null");
  1817. return this;
  1818. }
  1819. public Criteria andFourthtempIsNotNull() {
  1820. addCriterion("fourthTemp is not null");
  1821. return this;
  1822. }
  1823. public Criteria andFourthtempEqualTo(String value) {
  1824. addCriterion("fourthTemp =", value, "fourthtemp");
  1825. return this;
  1826. }
  1827. public Criteria andFourthtempNotEqualTo(String value) {
  1828. addCriterion("fourthTemp <>", value, "fourthtemp");
  1829. return this;
  1830. }
  1831. public Criteria andFourthtempGreaterThan(String value) {
  1832. addCriterion("fourthTemp >", value, "fourthtemp");
  1833. return this;
  1834. }
  1835. public Criteria andFourthtempGreaterThanOrEqualTo(String value) {
  1836. addCriterion("fourthTemp >=", value, "fourthtemp");
  1837. return this;
  1838. }
  1839. public Criteria andFourthtempLessThan(String value) {
  1840. addCriterion("fourthTemp <", value, "fourthtemp");
  1841. return this;
  1842. }
  1843. public Criteria andFourthtempLessThanOrEqualTo(String value) {
  1844. addCriterion("fourthTemp <=", value, "fourthtemp");
  1845. return this;
  1846. }
  1847. public Criteria andFourthtempLike(String value) {
  1848. addCriterion("fourthTemp like", value, "fourthtemp");
  1849. return this;
  1850. }
  1851. public Criteria andFourthtempNotLike(String value) {
  1852. addCriterion("fourthTemp not like", value, "fourthtemp");
  1853. return this;
  1854. }
  1855. public Criteria andFourthtempIn(List<String> values) {
  1856. addCriterion("fourthTemp in", values, "fourthtemp");
  1857. return this;
  1858. }
  1859. public Criteria andFourthtempNotIn(List<String> values) {
  1860. addCriterion("fourthTemp not in", values, "fourthtemp");
  1861. return this;
  1862. }
  1863. public Criteria andFourthtempBetween(String value1, String value2) {
  1864. addCriterion("fourthTemp between", value1, value2, "fourthtemp");
  1865. return this;
  1866. }
  1867. public Criteria andFourthtempNotBetween(String value1, String value2) {
  1868. addCriterion("fourthTemp not between", value1, value2, "fourthtemp");
  1869. return this;
  1870. }
  1871. public Criteria andFourthwindIsNull() {
  1872. addCriterion("fourthWind is null");
  1873. return this;
  1874. }
  1875. public Criteria andFourthwindIsNotNull() {
  1876. addCriterion("fourthWind is not null");
  1877. return this;
  1878. }
  1879. public Criteria andFourthwindEqualTo(String value) {
  1880. addCriterion("fourthWind =", value, "fourthwind");
  1881. return this;
  1882. }
  1883. public Criteria andFourthwindNotEqualTo(String value) {
  1884. addCriterion("fourthWind <>", value, "fourthwind");
  1885. return this;
  1886. }
  1887. public Criteria andFourthwindGreaterThan(String value) {
  1888. addCriterion("fourthWind >", value, "fourthwind");
  1889. return this;
  1890. }
  1891. public Criteria andFourthwindGreaterThanOrEqualTo(String value) {
  1892. addCriterion("fourthWind >=", value, "fourthwind");
  1893. return this;
  1894. }
  1895. public Criteria andFourthwindLessThan(String value) {
  1896. addCriterion("fourthWind <", value, "fourthwind");
  1897. return this;
  1898. }
  1899. public Criteria andFourthwindLessThanOrEqualTo(String value) {
  1900. addCriterion("fourthWind <=", value, "fourthwind");
  1901. return this;
  1902. }
  1903. public Criteria andFourthwindLike(String value) {
  1904. addCriterion("fourthWind like", value, "fourthwind");
  1905. return this;
  1906. }
  1907. public Criteria andFourthwindNotLike(String value) {
  1908. addCriterion("fourthWind not like", value, "fourthwind");
  1909. return this;
  1910. }
  1911. public Criteria andFourthwindIn(List<String> values) {
  1912. addCriterion("fourthWind in", values, "fourthwind");
  1913. return this;
  1914. }
  1915. public Criteria andFourthwindNotIn(List<String> values) {
  1916. addCriterion("fourthWind not in", values, "fourthwind");
  1917. return this;
  1918. }
  1919. public Criteria andFourthwindBetween(String value1, String value2) {
  1920. addCriterion("fourthWind between", value1, value2, "fourthwind");
  1921. return this;
  1922. }
  1923. public Criteria andFourthwindNotBetween(String value1, String value2) {
  1924. addCriterion("fourthWind not between", value1, value2, "fourthwind");
  1925. return this;
  1926. }
  1927. public Criteria andFourthicon1IsNull() {
  1928. addCriterion("fourthIcon1 is null");
  1929. return this;
  1930. }
  1931. public Criteria andFourthicon1IsNotNull() {
  1932. addCriterion("fourthIcon1 is not null");
  1933. return this;
  1934. }
  1935. public Criteria andFourthicon1EqualTo(String value) {
  1936. addCriterion("fourthIcon1 =", value, "fourthicon1");
  1937. return this;
  1938. }
  1939. public Criteria andFourthicon1NotEqualTo(String value) {
  1940. addCriterion("fourthIcon1 <>", value, "fourthicon1");
  1941. return this;
  1942. }
  1943. public Criteria andFourthicon1GreaterThan(String value) {
  1944. addCriterion("fourthIcon1 >", value, "fourthicon1");
  1945. return this;
  1946. }
  1947. public Criteria andFourthicon1GreaterThanOrEqualTo(String value) {
  1948. addCriterion("fourthIcon1 >=", value, "fourthicon1");
  1949. return this;
  1950. }
  1951. public Criteria andFourthicon1LessThan(String value) {
  1952. addCriterion("fourthIcon1 <", value, "fourthicon1");
  1953. return this;
  1954. }
  1955. public Criteria andFourthicon1LessThanOrEqualTo(String value) {
  1956. addCriterion("fourthIcon1 <=", value, "fourthicon1");
  1957. return this;
  1958. }
  1959. public Criteria andFourthicon1Like(String value) {
  1960. addCriterion("fourthIcon1 like", value, "fourthicon1");
  1961. return this;
  1962. }
  1963. public Criteria andFourthicon1NotLike(String value) {
  1964. addCriterion("fourthIcon1 not like", value, "fourthicon1");
  1965. return this;
  1966. }
  1967. public Criteria andFourthicon1In(List<String> values) {
  1968. addCriterion("fourthIcon1 in", values, "fourthicon1");
  1969. return this;
  1970. }
  1971. public Criteria andFourthicon1NotIn(List<String> values) {
  1972. addCriterion("fourthIcon1 not in", values, "fourthicon1");
  1973. return this;
  1974. }
  1975. public Criteria andFourthicon1Between(String value1, String value2) {
  1976. addCriterion("fourthIcon1 between", value1, value2, "fourthicon1");
  1977. return this;
  1978. }
  1979. public Criteria andFourthicon1NotBetween(String value1, String value2) {
  1980. addCriterion("fourthIcon1 not between", value1, value2, "fourthicon1");
  1981. return this;
  1982. }
  1983. public Criteria andFourthicon2IsNull() {
  1984. addCriterion("fourthIcon2 is null");
  1985. return this;
  1986. }
  1987. public Criteria andFourthicon2IsNotNull() {
  1988. addCriterion("fourthIcon2 is not null");
  1989. return this;
  1990. }
  1991. public Criteria andFourthicon2EqualTo(String value) {
  1992. addCriterion("fourthIcon2 =", value, "fourthicon2");
  1993. return this;
  1994. }
  1995. public Criteria andFourthicon2NotEqualTo(String value) {
  1996. addCriterion("fourthIcon2 <>", value, "fourthicon2");
  1997. return this;
  1998. }
  1999. public Criteria andFourthicon2GreaterThan(String value) {
  2000. addCriterion("fourthIcon2 >", value, "fourthicon2");
  2001. return this;
  2002. }
  2003. public Criteria andFourthicon2GreaterThanOrEqualTo(String value) {
  2004. addCriterion("fourthIcon2 >=", value, "fourthicon2");
  2005. return this;
  2006. }
  2007. public Criteria andFourthicon2LessThan(String value) {
  2008. addCriterion("fourthIcon2 <", value, "fourthicon2");
  2009. return this;
  2010. }
  2011. public Criteria andFourthicon2LessThanOrEqualTo(String value) {
  2012. addCriterion("fourthIcon2 <=", value, "fourthicon2");
  2013. return this;
  2014. }
  2015. public Criteria andFourthicon2Like(String value) {
  2016. addCriterion("fourthIcon2 like", value, "fourthicon2");
  2017. return this;
  2018. }
  2019. public Criteria andFourthicon2NotLike(String value) {
  2020. addCriterion("fourthIcon2 not like", value, "fourthicon2");
  2021. return this;
  2022. }
  2023. public Criteria andFourthicon2In(List<String> values) {
  2024. addCriterion("fourthIcon2 in", values, "fourthicon2");
  2025. return this;
  2026. }
  2027. public Criteria andFourthicon2NotIn(List<String> values) {
  2028. addCriterion("fourthIcon2 not in", values, "fourthicon2");
  2029. return this;
  2030. }
  2031. public Criteria andFourthicon2Between(String value1, String value2) {
  2032. addCriterion("fourthIcon2 between", value1, value2, "fourthicon2");
  2033. return this;
  2034. }
  2035. public Criteria andFourthicon2NotBetween(String value1, String value2) {
  2036. addCriterion("fourthIcon2 not between", value1, value2, "fourthicon2");
  2037. return this;
  2038. }
  2039. public Criteria andFifthdateIsNull() {
  2040. addCriterion("fifthDate is null");
  2041. return this;
  2042. }
  2043. public Criteria andFifthdateIsNotNull() {
  2044. addCriterion("fifthDate is not null");
  2045. return this;
  2046. }
  2047. public Criteria andFifthdateEqualTo(String value) {
  2048. addCriterion("fifthDate =", value, "fifthdate");
  2049. return this;
  2050. }
  2051. public Criteria andFifthdateNotEqualTo(String value) {
  2052. addCriterion("fifthDate <>", value, "fifthdate");
  2053. return this;
  2054. }
  2055. public Criteria andFifthdateGreaterThan(String value) {
  2056. addCriterion("fifthDate >", value, "fifthdate");
  2057. return this;
  2058. }
  2059. public Criteria andFifthdateGreaterThanOrEqualTo(String value) {
  2060. addCriterion("fifthDate >=", value, "fifthdate");
  2061. return this;
  2062. }
  2063. public Criteria andFifthdateLessThan(String value) {
  2064. addCriterion("fifthDate <", value, "fifthdate");
  2065. return this;
  2066. }
  2067. public Criteria andFifthdateLessThanOrEqualTo(String value) {
  2068. addCriterion("fifthDate <=", value, "fifthdate");
  2069. return this;
  2070. }
  2071. public Criteria andFifthdateLike(String value) {
  2072. addCriterion("fifthDate like", value, "fifthdate");
  2073. return this;
  2074. }
  2075. public Criteria andFifthdateNotLike(String value) {
  2076. addCriterion("fifthDate not like", value, "fifthdate");
  2077. return this;
  2078. }
  2079. public Criteria andFifthdateIn(List<String> values) {
  2080. addCriterion("fifthDate in", values, "fifthdate");
  2081. return this;
  2082. }
  2083. public Criteria andFifthdateNotIn(List<String> values) {
  2084. addCriterion("fifthDate not in", values, "fifthdate");
  2085. return this;
  2086. }
  2087. public Criteria andFifthdateBetween(String value1, String value2) {
  2088. addCriterion("fifthDate between", value1, value2, "fifthdate");
  2089. return this;
  2090. }
  2091. public Criteria andFifthdateNotBetween(String value1, String value2) {
  2092. addCriterion("fifthDate not between", value1, value2, "fifthdate");
  2093. return this;
  2094. }
  2095. public Criteria andFifthtempIsNull() {
  2096. addCriterion("fifthTemp is null");
  2097. return this;
  2098. }
  2099. public Criteria andFifthtempIsNotNull() {
  2100. addCriterion("fifthTemp is not null");
  2101. return this;
  2102. }
  2103. public Criteria andFifthtempEqualTo(String value) {
  2104. addCriterion("fifthTemp =", value, "fifthtemp");
  2105. return this;
  2106. }
  2107. public Criteria andFifthtempNotEqualTo(String value) {
  2108. addCriterion("fifthTemp <>", value, "fifthtemp");
  2109. return this;
  2110. }
  2111. public Criteria andFifthtempGreaterThan(String value) {
  2112. addCriterion("fifthTemp >", value, "fifthtemp");
  2113. return this;
  2114. }
  2115. public Criteria andFifthtempGreaterThanOrEqualTo(String value) {
  2116. addCriterion("fifthTemp >=", value, "fifthtemp");
  2117. return this;
  2118. }
  2119. public Criteria andFifthtempLessThan(String value) {
  2120. addCriterion("fifthTemp <", value, "fifthtemp");
  2121. return this;
  2122. }
  2123. public Criteria andFifthtempLessThanOrEqualTo(String value) {
  2124. addCriterion("fifthTemp <=", value, "fifthtemp");
  2125. return this;
  2126. }
  2127. public Criteria andFifthtempLike(String value) {
  2128. addCriterion("fifthTemp like", value, "fifthtemp");
  2129. return this;
  2130. }
  2131. public Criteria andFifthtempNotLike(String value) {
  2132. addCriterion("fifthTemp not like", value, "fifthtemp");
  2133. return this;
  2134. }
  2135. public Criteria andFifthtempIn(List<String> values) {
  2136. addCriterion("fifthTemp in", values, "fifthtemp");
  2137. return this;
  2138. }
  2139. public Criteria andFifthtempNotIn(List<String> values) {
  2140. addCriterion("fifthTemp not in", values, "fifthtemp");
  2141. return this;
  2142. }
  2143. public Criteria andFifthtempBetween(String value1, String value2) {
  2144. addCriterion("fifthTemp between", value1, value2, "fifthtemp");
  2145. return this;
  2146. }
  2147. public Criteria andFifthtempNotBetween(String value1, String value2) {
  2148. addCriterion("fifthTemp not between", value1, value2, "fifthtemp");
  2149. return this;
  2150. }
  2151. public Criteria andFifthwindIsNull() {
  2152. addCriterion("fifthWind is null");
  2153. return this;
  2154. }
  2155. public Criteria andFifthwindIsNotNull() {
  2156. addCriterion("fifthWind is not null");
  2157. return this;
  2158. }
  2159. public Criteria andFifthwindEqualTo(String value) {
  2160. addCriterion("fifthWind =", value, "fifthwind");
  2161. return this;
  2162. }
  2163. public Criteria andFifthwindNotEqualTo(String value) {
  2164. addCriterion("fifthWind <>", value, "fifthwind");
  2165. return this;
  2166. }
  2167. public Criteria andFifthwindGreaterThan(String value) {
  2168. addCriterion("fifthWind >", value, "fifthwind");
  2169. return this;
  2170. }
  2171. public Criteria andFifthwindGreaterThanOrEqualTo(String value) {
  2172. addCriterion("fifthWind >=", value, "fifthwind");
  2173. return this;
  2174. }
  2175. public Criteria andFifthwindLessThan(String value) {
  2176. addCriterion("fifthWind <", value, "fifthwind");
  2177. return this;
  2178. }
  2179. public Criteria andFifthwindLessThanOrEqualTo(String value) {
  2180. addCriterion("fifthWind <=", value, "fifthwind");
  2181. return this;
  2182. }
  2183. public Criteria andFifthwindLike(String value) {
  2184. addCriterion("fifthWind like", value, "fifthwind");
  2185. return this;
  2186. }
  2187. public Criteria andFifthwindNotLike(String value) {
  2188. addCriterion("fifthWind not like", value, "fifthwind");
  2189. return this;
  2190. }
  2191. public Criteria andFifthwindIn(List<String> values) {
  2192. addCriterion("fifthWind in", values, "fifthwind");
  2193. return this;
  2194. }
  2195. public Criteria andFifthwindNotIn(List<String> values) {
  2196. addCriterion("fifthWind not in", values, "fifthwind");
  2197. return this;
  2198. }
  2199. public Criteria andFifthwindBetween(String value1, String value2) {
  2200. addCriterion("fifthWind between", value1, value2, "fifthwind");
  2201. return this;
  2202. }
  2203. public Criteria andFifthwindNotBetween(String value1, String value2) {
  2204. addCriterion("fifthWind not between", value1, value2, "fifthwind");
  2205. return this;
  2206. }
  2207. public Criteria andFifthicon1IsNull() {
  2208. addCriterion("fifthIcon1 is null");
  2209. return this;
  2210. }
  2211. public Criteria andFifthicon1IsNotNull() {
  2212. addCriterion("fifthIcon1 is not null");
  2213. return this;
  2214. }
  2215. public Criteria andFifthicon1EqualTo(String value) {
  2216. addCriterion("fifthIcon1 =", value, "fifthicon1");
  2217. return this;
  2218. }
  2219. public Criteria andFifthicon1NotEqualTo(String value) {
  2220. addCriterion("fifthIcon1 <>", value, "fifthicon1");
  2221. return this;
  2222. }
  2223. public Criteria andFifthicon1GreaterThan(String value) {
  2224. addCriterion("fifthIcon1 >", value, "fifthicon1");
  2225. return this;
  2226. }
  2227. public Criteria andFifthicon1GreaterThanOrEqualTo(String value) {
  2228. addCriterion("fifthIcon1 >=", value, "fifthicon1");
  2229. return this;
  2230. }
  2231. public Criteria andFifthicon1LessThan(String value) {
  2232. addCriterion("fifthIcon1 <", value, "fifthicon1");
  2233. return this;
  2234. }
  2235. public Criteria andFifthicon1LessThanOrEqualTo(String value) {
  2236. addCriterion("fifthIcon1 <=", value, "fifthicon1");
  2237. return this;
  2238. }
  2239. public Criteria andFifthicon1Like(String value) {
  2240. addCriterion("fifthIcon1 like", value, "fifthicon1");
  2241. return this;
  2242. }
  2243. public Criteria andFifthicon1NotLike(String value) {
  2244. addCriterion("fifthIcon1 not like", value, "fifthicon1");
  2245. return this;
  2246. }
  2247. public Criteria andFifthicon1In(List<String> values) {
  2248. addCriterion("fifthIcon1 in", values, "fifthicon1");
  2249. return this;
  2250. }
  2251. public Criteria andFifthicon1NotIn(List<String> values) {
  2252. addCriterion("fifthIcon1 not in", values, "fifthicon1");
  2253. return this;
  2254. }
  2255. public Criteria andFifthicon1Between(String value1, String value2) {
  2256. addCriterion("fifthIcon1 between", value1, value2, "fifthicon1");
  2257. return this;
  2258. }
  2259. public Criteria andFifthicon1NotBetween(String value1, String value2) {
  2260. addCriterion("fifthIcon1 not between", value1, value2, "fifthicon1");
  2261. return this;
  2262. }
  2263. public Criteria andFifthicon2IsNull() {
  2264. addCriterion("fifthIcon2 is null");
  2265. return this;
  2266. }
  2267. public Criteria andFifthicon2IsNotNull() {
  2268. addCriterion("fifthIcon2 is not null");
  2269. return this;
  2270. }
  2271. public Criteria andFifthicon2EqualTo(String value) {
  2272. addCriterion("fifthIcon2 =", value, "fifthicon2");
  2273. return this;
  2274. }
  2275. public Criteria andFifthicon2NotEqualTo(String value) {
  2276. addCriterion("fifthIcon2 <>", value, "fifthicon2");
  2277. return this;
  2278. }
  2279. public Criteria andFifthicon2GreaterThan(String value) {
  2280. addCriterion("fifthIcon2 >", value, "fifthicon2");
  2281. return this;
  2282. }
  2283. public Criteria andFifthicon2GreaterThanOrEqualTo(String value) {
  2284. addCriterion("fifthIcon2 >=", value, "fifthicon2");
  2285. return this;
  2286. }
  2287. public Criteria andFifthicon2LessThan(String value) {
  2288. addCriterion("fifthIcon2 <", value, "fifthicon2");
  2289. return this;
  2290. }
  2291. public Criteria andFifthicon2LessThanOrEqualTo(String value) {
  2292. addCriterion("fifthIcon2 <=", value, "fifthicon2");
  2293. return this;
  2294. }
  2295. public Criteria andFifthicon2Like(String value) {
  2296. addCriterion("fifthIcon2 like", value, "fifthicon2");
  2297. return this;
  2298. }
  2299. public Criteria andFifthicon2NotLike(String value) {
  2300. addCriterion("fifthIcon2 not like", value, "fifthicon2");
  2301. return this;
  2302. }
  2303. public Criteria andFifthicon2In(List<String> values) {
  2304. addCriterion("fifthIcon2 in", values, "fifthicon2");
  2305. return this;
  2306. }
  2307. public Criteria andFifthicon2NotIn(List<String> values) {
  2308. addCriterion("fifthIcon2 not in", values, "fifthicon2");
  2309. return this;
  2310. }
  2311. public Criteria andFifthicon2Between(String value1, String value2) {
  2312. addCriterion("fifthIcon2 between", value1, value2, "fifthicon2");
  2313. return this;
  2314. }
  2315. public Criteria andFifthicon2NotBetween(String value1, String value2) {
  2316. addCriterion("fifthIcon2 not between", value1, value2, "fifthicon2");
  2317. return this;
  2318. }
  2319. }
  2320. }