123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874 |
- package com.huimv.sj.dataobject;
- import java.util.ArrayList;
- import java.util.Date;
- import java.util.HashMap;
- import java.util.List;
- import java.util.Map;
- public class SjWeatherDataExample {
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database table sj_weatherdata
- *
- * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
- */
- protected String orderByClause;
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database table sj_weatherdata
- *
- * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
- */
- protected List<Criteria> oredCriteria;
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database table sj_weatherdata
- *
- * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
- */
- protected int start = -1;
- /**
- * This field was generated by Apache iBATIS ibator.
- * This field corresponds to the database table sj_weatherdata
- *
- * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
- */
- protected int limit = -1;
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_weatherdata
- *
- * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
- */
- public SjWeatherDataExample() {
- oredCriteria = new ArrayList<Criteria>();
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_weatherdata
- *
- * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
- */
- protected SjWeatherDataExample(SjWeatherDataExample example) {
- this.orderByClause = example.orderByClause;
- this.oredCriteria = example.oredCriteria;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_weatherdata
- *
- * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
- */
- public void setOrderByClause(String orderByClause) {
- this.orderByClause = orderByClause;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_weatherdata
- *
- * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
- */
- public String getOrderByClause() {
- return orderByClause;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_weatherdata
- *
- * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
- */
- public List<Criteria> getOredCriteria() {
- return oredCriteria;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_weatherdata
- *
- * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
- */
- public void or(Criteria criteria) {
- oredCriteria.add(criteria);
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_weatherdata
- *
- * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
- */
- public Criteria createCriteria() {
- Criteria criteria = createCriteriaInternal();
- if (oredCriteria.size() == 0) {
- oredCriteria.add(criteria);
- }
- return criteria;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_weatherdata
- *
- * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
- */
- protected Criteria createCriteriaInternal() {
- Criteria criteria = new Criteria();
- return criteria;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_weatherdata
- *
- * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
- */
- public void clear() {
- oredCriteria.clear();
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_weatherdata
- *
- * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
- */
- public void setStart(int start) {
- this.start=start;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_weatherdata
- *
- * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
- */
- public int getStart() {
- return start;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_weatherdata
- *
- * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
- */
- public void setLimit(int limit) {
- this.limit=limit;
- }
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_weatherdata
- *
- * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
- */
- public int getLimit() {
- return limit;
- }
- /**
- * This class was generated by Apache iBATIS ibator.
- * This class corresponds to the database table sj_weatherdata
- *
- * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015
- */
- public static class Criteria {
- protected List<String> criteriaWithoutValue;
- protected List<Map<String, Object>> criteriaWithSingleValue;
- protected List<Map<String, Object>> criteriaWithListValue;
- protected List<Map<String, Object>> criteriaWithBetweenValue;
- protected Criteria() {
- super();
- criteriaWithoutValue = new ArrayList<String>();
- criteriaWithSingleValue = new ArrayList<Map<String, Object>>();
- criteriaWithListValue = new ArrayList<Map<String, Object>>();
- criteriaWithBetweenValue = new ArrayList<Map<String, Object>>();
- }
- public boolean isValid() {
- return criteriaWithoutValue.size() > 0
- || criteriaWithSingleValue.size() > 0
- || criteriaWithListValue.size() > 0
- || criteriaWithBetweenValue.size() > 0;
- }
- public List<String> getCriteriaWithoutValue() {
- return criteriaWithoutValue;
- }
- public List<Map<String, Object>> getCriteriaWithSingleValue() {
- return criteriaWithSingleValue;
- }
- public List<Map<String, Object>> getCriteriaWithListValue() {
- return criteriaWithListValue;
- }
- public List<Map<String, Object>> getCriteriaWithBetweenValue() {
- return criteriaWithBetweenValue;
- }
- protected void addCriterion(String condition) {
- if (condition == null) {
- throw new RuntimeException("Value for condition cannot be null");
- }
- criteriaWithoutValue.add(condition);
- }
- protected void addCriterion(String condition, Object value, String property) {
- if (value == null) {
- throw new RuntimeException("Value for " + property + " cannot be null");
- }
- Map<String, Object> map = new HashMap<String, Object>();
- map.put("condition", condition);
- map.put("value", value);
- criteriaWithSingleValue.add(map);
- }
- protected void addCriterion(String condition, List<? extends Object> values, String property) {
- if (values == null || values.size() == 0) {
- throw new RuntimeException("Value list for " + property + " cannot be null or empty");
- }
- Map<String, Object> map = new HashMap<String, Object>();
- map.put("condition", condition);
- map.put("values", values);
- criteriaWithListValue.add(map);
- }
- protected void addCriterion(String condition, Object value1, Object value2, String property) {
- if (value1 == null || value2 == null) {
- throw new RuntimeException("Between values for " + property + " cannot be null");
- }
- List<Object> list = new ArrayList<Object>();
- list.add(value1);
- list.add(value2);
- Map<String, Object> map = new HashMap<String, Object>();
- map.put("condition", condition);
- map.put("values", list);
- criteriaWithBetweenValue.add(map);
- }
- public Criteria andIdIsNull() {
- addCriterion("ID is null");
- return this;
- }
- public Criteria andIdIsNotNull() {
- addCriterion("ID is not null");
- return this;
- }
- public Criteria andIdEqualTo(Integer value) {
- addCriterion("ID =", value, "id");
- return this;
- }
- public Criteria andIdNotEqualTo(Integer value) {
- addCriterion("ID <>", value, "id");
- return this;
- }
- public Criteria andIdGreaterThan(Integer value) {
- addCriterion("ID >", value, "id");
- return this;
- }
- public Criteria andIdGreaterThanOrEqualTo(Integer value) {
- addCriterion("ID >=", value, "id");
- return this;
- }
- public Criteria andIdLessThan(Integer value) {
- addCriterion("ID <", value, "id");
- return this;
- }
- public Criteria andIdLessThanOrEqualTo(Integer value) {
- addCriterion("ID <=", value, "id");
- return this;
- }
- public Criteria andIdIn(List<Integer> values) {
- addCriterion("ID in", values, "id");
- return this;
- }
- public Criteria andIdNotIn(List<Integer> values) {
- addCriterion("ID not in", values, "id");
- return this;
- }
- public Criteria andIdBetween(Integer value1, Integer value2) {
- addCriterion("ID between", value1, value2, "id");
- return this;
- }
- public Criteria andIdNotBetween(Integer value1, Integer value2) {
- addCriterion("ID not between", value1, value2, "id");
- return this;
- }
- public Criteria andYhidIsNull() {
- addCriterion("YHID is null");
- return this;
- }
- public Criteria andYhidIsNotNull() {
- addCriterion("YHID is not null");
- return this;
- }
- public Criteria andYhidEqualTo(Integer value) {
- addCriterion("YHID =", value, "yhid");
- return this;
- }
- public Criteria andYhidNotEqualTo(Integer value) {
- addCriterion("YHID <>", value, "yhid");
- return this;
- }
- public Criteria andYhidGreaterThan(Integer value) {
- addCriterion("YHID >", value, "yhid");
- return this;
- }
- public Criteria andYhidGreaterThanOrEqualTo(Integer value) {
- addCriterion("YHID >=", value, "yhid");
- return this;
- }
- public Criteria andYhidLessThan(Integer value) {
- addCriterion("YHID <", value, "yhid");
- return this;
- }
- public Criteria andYhidLessThanOrEqualTo(Integer value) {
- addCriterion("YHID <=", value, "yhid");
- return this;
- }
- public Criteria andYhidIn(List<Integer> values) {
- addCriterion("YHID in", values, "yhid");
- return this;
- }
- public Criteria andYhidNotIn(List<Integer> values) {
- addCriterion("YHID not in", values, "yhid");
- return this;
- }
- public Criteria andYhidBetween(Integer value1, Integer value2) {
- addCriterion("YHID between", value1, value2, "yhid");
- return this;
- }
- public Criteria andYhidNotBetween(Integer value1, Integer value2) {
- addCriterion("YHID not between", value1, value2, "yhid");
- return this;
- }
- public Criteria andIpIsNull() {
- addCriterion("IP is null");
- return this;
- }
- public Criteria andIpIsNotNull() {
- addCriterion("IP is not null");
- return this;
- }
- public Criteria andIpEqualTo(String value) {
- addCriterion("IP =", value, "ip");
- return this;
- }
- public Criteria andIpNotEqualTo(String value) {
- addCriterion("IP <>", value, "ip");
- return this;
- }
- public Criteria andIpGreaterThan(String value) {
- addCriterion("IP >", value, "ip");
- return this;
- }
- public Criteria andIpGreaterThanOrEqualTo(String value) {
- addCriterion("IP >=", value, "ip");
- return this;
- }
- public Criteria andIpLessThan(String value) {
- addCriterion("IP <", value, "ip");
- return this;
- }
- public Criteria andIpLessThanOrEqualTo(String value) {
- addCriterion("IP <=", value, "ip");
- return this;
- }
- public Criteria andIpLike(String value) {
- addCriterion("IP like", value, "ip");
- return this;
- }
- public Criteria andIpNotLike(String value) {
- addCriterion("IP not like", value, "ip");
- return this;
- }
- public Criteria andIpIn(List<String> values) {
- addCriterion("IP in", values, "ip");
- return this;
- }
- public Criteria andIpNotIn(List<String> values) {
- addCriterion("IP not in", values, "ip");
- return this;
- }
- public Criteria andIpBetween(String value1, String value2) {
- addCriterion("IP between", value1, value2, "ip");
- return this;
- }
- public Criteria andIpNotBetween(String value1, String value2) {
- addCriterion("IP not between", value1, value2, "ip");
- return this;
- }
- public Criteria andSavetimeIsNull() {
- addCriterion("savetime is null");
- return this;
- }
- public Criteria andSavetimeIsNotNull() {
- addCriterion("savetime is not null");
- return this;
- }
- public Criteria andSavetimeEqualTo(Date value) {
- addCriterion("savetime =", value, "savetime");
- return this;
- }
- public Criteria andSavetimeNotEqualTo(Date value) {
- addCriterion("savetime <>", value, "savetime");
- return this;
- }
- public Criteria andSavetimeGreaterThan(Date value) {
- addCriterion("savetime >", value, "savetime");
- return this;
- }
- public Criteria andSavetimeGreaterThanOrEqualTo(Date value) {
- addCriterion("savetime >=", value, "savetime");
- return this;
- }
- public Criteria andSavetimeLessThan(Date value) {
- addCriterion("savetime <", value, "savetime");
- return this;
- }
- public Criteria andSavetimeLessThanOrEqualTo(Date value) {
- addCriterion("savetime <=", value, "savetime");
- return this;
- }
- public Criteria andSavetimeIn(List<Date> values) {
- addCriterion("savetime in", values, "savetime");
- return this;
- }
- public Criteria andSavetimeNotIn(List<Date> values) {
- addCriterion("savetime not in", values, "savetime");
- return this;
- }
- public Criteria andSavetimeBetween(Date value1, Date value2) {
- addCriterion("savetime between", value1, value2, "savetime");
- return this;
- }
- public Criteria andSavetimeNotBetween(Date value1, Date value2) {
- addCriterion("savetime not between", value1, value2, "savetime");
- return this;
- }
- public Criteria andProvcityIsNull() {
- addCriterion("provCity is null");
- return this;
- }
- public Criteria andProvcityIsNotNull() {
- addCriterion("provCity is not null");
- return this;
- }
- public Criteria andProvcityEqualTo(String value) {
- addCriterion("provCity =", value, "provcity");
- return this;
- }
- public Criteria andProvcityNotEqualTo(String value) {
- addCriterion("provCity <>", value, "provcity");
- return this;
- }
- public Criteria andProvcityGreaterThan(String value) {
- addCriterion("provCity >", value, "provcity");
- return this;
- }
- public Criteria andProvcityGreaterThanOrEqualTo(String value) {
- addCriterion("provCity >=", value, "provcity");
- return this;
- }
- public Criteria andProvcityLessThan(String value) {
- addCriterion("provCity <", value, "provcity");
- return this;
- }
- public Criteria andProvcityLessThanOrEqualTo(String value) {
- addCriterion("provCity <=", value, "provcity");
- return this;
- }
- public Criteria andProvcityLike(String value) {
- addCriterion("provCity like", value, "provcity");
- return this;
- }
- public Criteria andProvcityNotLike(String value) {
- addCriterion("provCity not like", value, "provcity");
- return this;
- }
- public Criteria andProvcityIn(List<String> values) {
- addCriterion("provCity in", values, "provcity");
- return this;
- }
- public Criteria andProvcityNotIn(List<String> values) {
- addCriterion("provCity not in", values, "provcity");
- return this;
- }
- public Criteria andProvcityBetween(String value1, String value2) {
- addCriterion("provCity between", value1, value2, "provcity");
- return this;
- }
- public Criteria andProvcityNotBetween(String value1, String value2) {
- addCriterion("provCity not between", value1, value2, "provcity");
- return this;
- }
- public Criteria andCitynameIsNull() {
- addCriterion("cityName is null");
- return this;
- }
- public Criteria andCitynameIsNotNull() {
- addCriterion("cityName is not null");
- return this;
- }
- public Criteria andCitynameEqualTo(String value) {
- addCriterion("cityName =", value, "cityname");
- return this;
- }
- public Criteria andCitynameNotEqualTo(String value) {
- addCriterion("cityName <>", value, "cityname");
- return this;
- }
- public Criteria andCitynameGreaterThan(String value) {
- addCriterion("cityName >", value, "cityname");
- return this;
- }
- public Criteria andCitynameGreaterThanOrEqualTo(String value) {
- addCriterion("cityName >=", value, "cityname");
- return this;
- }
- public Criteria andCitynameLessThan(String value) {
- addCriterion("cityName <", value, "cityname");
- return this;
- }
- public Criteria andCitynameLessThanOrEqualTo(String value) {
- addCriterion("cityName <=", value, "cityname");
- return this;
- }
- public Criteria andCitynameLike(String value) {
- addCriterion("cityName like", value, "cityname");
- return this;
- }
- public Criteria andCitynameNotLike(String value) {
- addCriterion("cityName not like", value, "cityname");
- return this;
- }
- public Criteria andCitynameIn(List<String> values) {
- addCriterion("cityName in", values, "cityname");
- return this;
- }
- public Criteria andCitynameNotIn(List<String> values) {
- addCriterion("cityName not in", values, "cityname");
- return this;
- }
- public Criteria andCitynameBetween(String value1, String value2) {
- addCriterion("cityName between", value1, value2, "cityname");
- return this;
- }
- public Criteria andCitynameNotBetween(String value1, String value2) {
- addCriterion("cityName not between", value1, value2, "cityname");
- return this;
- }
- public Criteria andCitycodeIsNull() {
- addCriterion("cityCode is null");
- return this;
- }
- public Criteria andCitycodeIsNotNull() {
- addCriterion("cityCode is not null");
- return this;
- }
- public Criteria andCitycodeEqualTo(Integer value) {
- addCriterion("cityCode =", value, "citycode");
- return this;
- }
- public Criteria andCitycodeNotEqualTo(Integer value) {
- addCriterion("cityCode <>", value, "citycode");
- return this;
- }
- public Criteria andCitycodeGreaterThan(Integer value) {
- addCriterion("cityCode >", value, "citycode");
- return this;
- }
- public Criteria andCitycodeGreaterThanOrEqualTo(Integer value) {
- addCriterion("cityCode >=", value, "citycode");
- return this;
- }
- public Criteria andCitycodeLessThan(Integer value) {
- addCriterion("cityCode <", value, "citycode");
- return this;
- }
- public Criteria andCitycodeLessThanOrEqualTo(Integer value) {
- addCriterion("cityCode <=", value, "citycode");
- return this;
- }
- public Criteria andCitycodeIn(List<Integer> values) {
- addCriterion("cityCode in", values, "citycode");
- return this;
- }
- public Criteria andCitycodeNotIn(List<Integer> values) {
- addCriterion("cityCode not in", values, "citycode");
- return this;
- }
- public Criteria andCitycodeBetween(Integer value1, Integer value2) {
- addCriterion("cityCode between", value1, value2, "citycode");
- return this;
- }
- public Criteria andCitycodeNotBetween(Integer value1, Integer value2) {
- addCriterion("cityCode not between", value1, value2, "citycode");
- return this;
- }
- public Criteria andFbtimeIsNull() {
- addCriterion("fbTime is null");
- return this;
- }
- public Criteria andFbtimeIsNotNull() {
- addCriterion("fbTime is not null");
- return this;
- }
- public Criteria andFbtimeEqualTo(Date value) {
- addCriterion("fbTime =", value, "fbtime");
- return this;
- }
- public Criteria andFbtimeNotEqualTo(Date value) {
- addCriterion("fbTime <>", value, "fbtime");
- return this;
- }
- public Criteria andFbtimeGreaterThan(Date value) {
- addCriterion("fbTime >", value, "fbtime");
- return this;
- }
- public Criteria andFbtimeGreaterThanOrEqualTo(Date value) {
- addCriterion("fbTime >=", value, "fbtime");
- return this;
- }
- public Criteria andFbtimeLessThan(Date value) {
- addCriterion("fbTime <", value, "fbtime");
- return this;
- }
- public Criteria andFbtimeLessThanOrEqualTo(Date value) {
- addCriterion("fbTime <=", value, "fbtime");
- return this;
- }
- public Criteria andFbtimeIn(List<Date> values) {
- addCriterion("fbTime in", values, "fbtime");
- return this;
- }
- public Criteria andFbtimeNotIn(List<Date> values) {
- addCriterion("fbTime not in", values, "fbtime");
- return this;
- }
- public Criteria andFbtimeBetween(Date value1, Date value2) {
- addCriterion("fbTime between", value1, value2, "fbtime");
- return this;
- }
- public Criteria andFbtimeNotBetween(Date value1, Date value2) {
- addCriterion("fbTime not between", value1, value2, "fbtime");
- return this;
- }
- public Criteria andCurrtempIsNull() {
- addCriterion("currTemp is null");
- return this;
- }
- public Criteria andCurrtempIsNotNull() {
- addCriterion("currTemp is not null");
- return this;
- }
- public Criteria andCurrtempEqualTo(String value) {
- addCriterion("currTemp =", value, "currtemp");
- return this;
- }
- public Criteria andCurrtempNotEqualTo(String value) {
- addCriterion("currTemp <>", value, "currtemp");
- return this;
- }
- public Criteria andCurrtempGreaterThan(String value) {
- addCriterion("currTemp >", value, "currtemp");
- return this;
- }
- public Criteria andCurrtempGreaterThanOrEqualTo(String value) {
- addCriterion("currTemp >=", value, "currtemp");
- return this;
- }
- public Criteria andCurrtempLessThan(String value) {
- addCriterion("currTemp <", value, "currtemp");
- return this;
- }
- public Criteria andCurrtempLessThanOrEqualTo(String value) {
- addCriterion("currTemp <=", value, "currtemp");
- return this;
- }
- public Criteria andCurrtempLike(String value) {
- addCriterion("currTemp like", value, "currtemp");
- return this;
- }
- public Criteria andCurrtempNotLike(String value) {
- addCriterion("currTemp not like", value, "currtemp");
- return this;
- }
- public Criteria andCurrtempIn(List<String> values) {
- addCriterion("currTemp in", values, "currtemp");
- return this;
- }
- public Criteria andCurrtempNotIn(List<String> values) {
- addCriterion("currTemp not in", values, "currtemp");
- return this;
- }
- public Criteria andCurrtempBetween(String value1, String value2) {
- addCriterion("currTemp between", value1, value2, "currtemp");
- return this;
- }
- public Criteria andCurrtempNotBetween(String value1, String value2) {
- addCriterion("currTemp not between", value1, value2, "currtemp");
- return this;
- }
- public Criteria andCurrwindIsNull() {
- addCriterion("currWind is null");
- return this;
- }
- public Criteria andCurrwindIsNotNull() {
- addCriterion("currWind is not null");
- return this;
- }
- public Criteria andCurrwindEqualTo(String value) {
- addCriterion("currWind =", value, "currwind");
- return this;
- }
- public Criteria andCurrwindNotEqualTo(String value) {
- addCriterion("currWind <>", value, "currwind");
- return this;
- }
- public Criteria andCurrwindGreaterThan(String value) {
- addCriterion("currWind >", value, "currwind");
- return this;
- }
- public Criteria andCurrwindGreaterThanOrEqualTo(String value) {
- addCriterion("currWind >=", value, "currwind");
- return this;
- }
- public Criteria andCurrwindLessThan(String value) {
- addCriterion("currWind <", value, "currwind");
- return this;
- }
- public Criteria andCurrwindLessThanOrEqualTo(String value) {
- addCriterion("currWind <=", value, "currwind");
- return this;
- }
- public Criteria andCurrwindLike(String value) {
- addCriterion("currWind like", value, "currwind");
- return this;
- }
- public Criteria andCurrwindNotLike(String value) {
- addCriterion("currWind not like", value, "currwind");
- return this;
- }
- public Criteria andCurrwindIn(List<String> values) {
- addCriterion("currWind in", values, "currwind");
- return this;
- }
- public Criteria andCurrwindNotIn(List<String> values) {
- addCriterion("currWind not in", values, "currwind");
- return this;
- }
- public Criteria andCurrwindBetween(String value1, String value2) {
- addCriterion("currWind between", value1, value2, "currwind");
- return this;
- }
- public Criteria andCurrwindNotBetween(String value1, String value2) {
- addCriterion("currWind not between", value1, value2, "currwind");
- return this;
- }
- public Criteria andCurrwetIsNull() {
- addCriterion("currWet is null");
- return this;
- }
- public Criteria andCurrwetIsNotNull() {
- addCriterion("currWet is not null");
- return this;
- }
- public Criteria andCurrwetEqualTo(String value) {
- addCriterion("currWet =", value, "currwet");
- return this;
- }
- public Criteria andCurrwetNotEqualTo(String value) {
- addCriterion("currWet <>", value, "currwet");
- return this;
- }
- public Criteria andCurrwetGreaterThan(String value) {
- addCriterion("currWet >", value, "currwet");
- return this;
- }
- public Criteria andCurrwetGreaterThanOrEqualTo(String value) {
- addCriterion("currWet >=", value, "currwet");
- return this;
- }
- public Criteria andCurrwetLessThan(String value) {
- addCriterion("currWet <", value, "currwet");
- return this;
- }
- public Criteria andCurrwetLessThanOrEqualTo(String value) {
- addCriterion("currWet <=", value, "currwet");
- return this;
- }
- public Criteria andCurrwetLike(String value) {
- addCriterion("currWet like", value, "currwet");
- return this;
- }
- public Criteria andCurrwetNotLike(String value) {
- addCriterion("currWet not like", value, "currwet");
- return this;
- }
- public Criteria andCurrwetIn(List<String> values) {
- addCriterion("currWet in", values, "currwet");
- return this;
- }
- public Criteria andCurrwetNotIn(List<String> values) {
- addCriterion("currWet not in", values, "currwet");
- return this;
- }
- public Criteria andCurrwetBetween(String value1, String value2) {
- addCriterion("currWet between", value1, value2, "currwet");
- return this;
- }
- public Criteria andCurrwetNotBetween(String value1, String value2) {
- addCriterion("currWet not between", value1, value2, "currwet");
- return this;
- }
- public Criteria andCurrairIsNull() {
- addCriterion("currAir is null");
- return this;
- }
- public Criteria andCurrairIsNotNull() {
- addCriterion("currAir is not null");
- return this;
- }
- public Criteria andCurrairEqualTo(String value) {
- addCriterion("currAir =", value, "currair");
- return this;
- }
- public Criteria andCurrairNotEqualTo(String value) {
- addCriterion("currAir <>", value, "currair");
- return this;
- }
- public Criteria andCurrairGreaterThan(String value) {
- addCriterion("currAir >", value, "currair");
- return this;
- }
- public Criteria andCurrairGreaterThanOrEqualTo(String value) {
- addCriterion("currAir >=", value, "currair");
- return this;
- }
- public Criteria andCurrairLessThan(String value) {
- addCriterion("currAir <", value, "currair");
- return this;
- }
- public Criteria andCurrairLessThanOrEqualTo(String value) {
- addCriterion("currAir <=", value, "currair");
- return this;
- }
- public Criteria andCurrairLike(String value) {
- addCriterion("currAir like", value, "currair");
- return this;
- }
- public Criteria andCurrairNotLike(String value) {
- addCriterion("currAir not like", value, "currair");
- return this;
- }
- public Criteria andCurrairIn(List<String> values) {
- addCriterion("currAir in", values, "currair");
- return this;
- }
- public Criteria andCurrairNotIn(List<String> values) {
- addCriterion("currAir not in", values, "currair");
- return this;
- }
- public Criteria andCurrairBetween(String value1, String value2) {
- addCriterion("currAir between", value1, value2, "currair");
- return this;
- }
- public Criteria andCurrairNotBetween(String value1, String value2) {
- addCriterion("currAir not between", value1, value2, "currair");
- return this;
- }
- public Criteria andCurrzwxIsNull() {
- addCriterion("currZwx is null");
- return this;
- }
- public Criteria andCurrzwxIsNotNull() {
- addCriterion("currZwx is not null");
- return this;
- }
- public Criteria andCurrzwxEqualTo(String value) {
- addCriterion("currZwx =", value, "currzwx");
- return this;
- }
- public Criteria andCurrzwxNotEqualTo(String value) {
- addCriterion("currZwx <>", value, "currzwx");
- return this;
- }
- public Criteria andCurrzwxGreaterThan(String value) {
- addCriterion("currZwx >", value, "currzwx");
- return this;
- }
- public Criteria andCurrzwxGreaterThanOrEqualTo(String value) {
- addCriterion("currZwx >=", value, "currzwx");
- return this;
- }
- public Criteria andCurrzwxLessThan(String value) {
- addCriterion("currZwx <", value, "currzwx");
- return this;
- }
- public Criteria andCurrzwxLessThanOrEqualTo(String value) {
- addCriterion("currZwx <=", value, "currzwx");
- return this;
- }
- public Criteria andCurrzwxLike(String value) {
- addCriterion("currZwx like", value, "currzwx");
- return this;
- }
- public Criteria andCurrzwxNotLike(String value) {
- addCriterion("currZwx not like", value, "currzwx");
- return this;
- }
- public Criteria andCurrzwxIn(List<String> values) {
- addCriterion("currZwx in", values, "currzwx");
- return this;
- }
- public Criteria andCurrzwxNotIn(List<String> values) {
- addCriterion("currZwx not in", values, "currzwx");
- return this;
- }
- public Criteria andCurrzwxBetween(String value1, String value2) {
- addCriterion("currZwx between", value1, value2, "currzwx");
- return this;
- }
- public Criteria andCurrzwxNotBetween(String value1, String value2) {
- addCriterion("currZwx not between", value1, value2, "currzwx");
- return this;
- }
- public Criteria andFirstdateIsNull() {
- addCriterion("firstDate is null");
- return this;
- }
- public Criteria andFirstdateIsNotNull() {
- addCriterion("firstDate is not null");
- return this;
- }
- public Criteria andFirstdateEqualTo(String value) {
- addCriterion("firstDate =", value, "firstdate");
- return this;
- }
- public Criteria andFirstdateNotEqualTo(String value) {
- addCriterion("firstDate <>", value, "firstdate");
- return this;
- }
- public Criteria andFirstdateGreaterThan(String value) {
- addCriterion("firstDate >", value, "firstdate");
- return this;
- }
- public Criteria andFirstdateGreaterThanOrEqualTo(String value) {
- addCriterion("firstDate >=", value, "firstdate");
- return this;
- }
- public Criteria andFirstdateLessThan(String value) {
- addCriterion("firstDate <", value, "firstdate");
- return this;
- }
- public Criteria andFirstdateLessThanOrEqualTo(String value) {
- addCriterion("firstDate <=", value, "firstdate");
- return this;
- }
- public Criteria andFirstdateLike(String value) {
- addCriterion("firstDate like", value, "firstdate");
- return this;
- }
- public Criteria andFirstdateNotLike(String value) {
- addCriterion("firstDate not like", value, "firstdate");
- return this;
- }
- public Criteria andFirstdateIn(List<String> values) {
- addCriterion("firstDate in", values, "firstdate");
- return this;
- }
- public Criteria andFirstdateNotIn(List<String> values) {
- addCriterion("firstDate not in", values, "firstdate");
- return this;
- }
- public Criteria andFirstdateBetween(String value1, String value2) {
- addCriterion("firstDate between", value1, value2, "firstdate");
- return this;
- }
- public Criteria andFirstdateNotBetween(String value1, String value2) {
- addCriterion("firstDate not between", value1, value2, "firstdate");
- return this;
- }
- public Criteria andFirsttempIsNull() {
- addCriterion("firstTemp is null");
- return this;
- }
- public Criteria andFirsttempIsNotNull() {
- addCriterion("firstTemp is not null");
- return this;
- }
- public Criteria andFirsttempEqualTo(String value) {
- addCriterion("firstTemp =", value, "firsttemp");
- return this;
- }
- public Criteria andFirsttempNotEqualTo(String value) {
- addCriterion("firstTemp <>", value, "firsttemp");
- return this;
- }
- public Criteria andFirsttempGreaterThan(String value) {
- addCriterion("firstTemp >", value, "firsttemp");
- return this;
- }
- public Criteria andFirsttempGreaterThanOrEqualTo(String value) {
- addCriterion("firstTemp >=", value, "firsttemp");
- return this;
- }
- public Criteria andFirsttempLessThan(String value) {
- addCriterion("firstTemp <", value, "firsttemp");
- return this;
- }
- public Criteria andFirsttempLessThanOrEqualTo(String value) {
- addCriterion("firstTemp <=", value, "firsttemp");
- return this;
- }
- public Criteria andFirsttempLike(String value) {
- addCriterion("firstTemp like", value, "firsttemp");
- return this;
- }
- public Criteria andFirsttempNotLike(String value) {
- addCriterion("firstTemp not like", value, "firsttemp");
- return this;
- }
- public Criteria andFirsttempIn(List<String> values) {
- addCriterion("firstTemp in", values, "firsttemp");
- return this;
- }
- public Criteria andFirsttempNotIn(List<String> values) {
- addCriterion("firstTemp not in", values, "firsttemp");
- return this;
- }
- public Criteria andFirsttempBetween(String value1, String value2) {
- addCriterion("firstTemp between", value1, value2, "firsttemp");
- return this;
- }
- public Criteria andFirsttempNotBetween(String value1, String value2) {
- addCriterion("firstTemp not between", value1, value2, "firsttemp");
- return this;
- }
- public Criteria andFirstwindIsNull() {
- addCriterion("firstWind is null");
- return this;
- }
- public Criteria andFirstwindIsNotNull() {
- addCriterion("firstWind is not null");
- return this;
- }
- public Criteria andFirstwindEqualTo(String value) {
- addCriterion("firstWind =", value, "firstwind");
- return this;
- }
- public Criteria andFirstwindNotEqualTo(String value) {
- addCriterion("firstWind <>", value, "firstwind");
- return this;
- }
- public Criteria andFirstwindGreaterThan(String value) {
- addCriterion("firstWind >", value, "firstwind");
- return this;
- }
- public Criteria andFirstwindGreaterThanOrEqualTo(String value) {
- addCriterion("firstWind >=", value, "firstwind");
- return this;
- }
- public Criteria andFirstwindLessThan(String value) {
- addCriterion("firstWind <", value, "firstwind");
- return this;
- }
- public Criteria andFirstwindLessThanOrEqualTo(String value) {
- addCriterion("firstWind <=", value, "firstwind");
- return this;
- }
- public Criteria andFirstwindLike(String value) {
- addCriterion("firstWind like", value, "firstwind");
- return this;
- }
- public Criteria andFirstwindNotLike(String value) {
- addCriterion("firstWind not like", value, "firstwind");
- return this;
- }
- public Criteria andFirstwindIn(List<String> values) {
- addCriterion("firstWind in", values, "firstwind");
- return this;
- }
- public Criteria andFirstwindNotIn(List<String> values) {
- addCriterion("firstWind not in", values, "firstwind");
- return this;
- }
- public Criteria andFirstwindBetween(String value1, String value2) {
- addCriterion("firstWind between", value1, value2, "firstwind");
- return this;
- }
- public Criteria andFirstwindNotBetween(String value1, String value2) {
- addCriterion("firstWind not between", value1, value2, "firstwind");
- return this;
- }
- public Criteria andFirsticon1IsNull() {
- addCriterion("firstIcon1 is null");
- return this;
- }
- public Criteria andFirsticon1IsNotNull() {
- addCriterion("firstIcon1 is not null");
- return this;
- }
- public Criteria andFirsticon1EqualTo(String value) {
- addCriterion("firstIcon1 =", value, "firsticon1");
- return this;
- }
- public Criteria andFirsticon1NotEqualTo(String value) {
- addCriterion("firstIcon1 <>", value, "firsticon1");
- return this;
- }
- public Criteria andFirsticon1GreaterThan(String value) {
- addCriterion("firstIcon1 >", value, "firsticon1");
- return this;
- }
- public Criteria andFirsticon1GreaterThanOrEqualTo(String value) {
- addCriterion("firstIcon1 >=", value, "firsticon1");
- return this;
- }
- public Criteria andFirsticon1LessThan(String value) {
- addCriterion("firstIcon1 <", value, "firsticon1");
- return this;
- }
- public Criteria andFirsticon1LessThanOrEqualTo(String value) {
- addCriterion("firstIcon1 <=", value, "firsticon1");
- return this;
- }
- public Criteria andFirsticon1Like(String value) {
- addCriterion("firstIcon1 like", value, "firsticon1");
- return this;
- }
- public Criteria andFirsticon1NotLike(String value) {
- addCriterion("firstIcon1 not like", value, "firsticon1");
- return this;
- }
- public Criteria andFirsticon1In(List<String> values) {
- addCriterion("firstIcon1 in", values, "firsticon1");
- return this;
- }
- public Criteria andFirsticon1NotIn(List<String> values) {
- addCriterion("firstIcon1 not in", values, "firsticon1");
- return this;
- }
- public Criteria andFirsticon1Between(String value1, String value2) {
- addCriterion("firstIcon1 between", value1, value2, "firsticon1");
- return this;
- }
- public Criteria andFirsticon1NotBetween(String value1, String value2) {
- addCriterion("firstIcon1 not between", value1, value2, "firsticon1");
- return this;
- }
- public Criteria andFirsticon2IsNull() {
- addCriterion("firstIcon2 is null");
- return this;
- }
- public Criteria andFirsticon2IsNotNull() {
- addCriterion("firstIcon2 is not null");
- return this;
- }
- public Criteria andFirsticon2EqualTo(String value) {
- addCriterion("firstIcon2 =", value, "firsticon2");
- return this;
- }
- public Criteria andFirsticon2NotEqualTo(String value) {
- addCriterion("firstIcon2 <>", value, "firsticon2");
- return this;
- }
- public Criteria andFirsticon2GreaterThan(String value) {
- addCriterion("firstIcon2 >", value, "firsticon2");
- return this;
- }
- public Criteria andFirsticon2GreaterThanOrEqualTo(String value) {
- addCriterion("firstIcon2 >=", value, "firsticon2");
- return this;
- }
- public Criteria andFirsticon2LessThan(String value) {
- addCriterion("firstIcon2 <", value, "firsticon2");
- return this;
- }
- public Criteria andFirsticon2LessThanOrEqualTo(String value) {
- addCriterion("firstIcon2 <=", value, "firsticon2");
- return this;
- }
- public Criteria andFirsticon2Like(String value) {
- addCriterion("firstIcon2 like", value, "firsticon2");
- return this;
- }
- public Criteria andFirsticon2NotLike(String value) {
- addCriterion("firstIcon2 not like", value, "firsticon2");
- return this;
- }
- public Criteria andFirsticon2In(List<String> values) {
- addCriterion("firstIcon2 in", values, "firsticon2");
- return this;
- }
- public Criteria andFirsticon2NotIn(List<String> values) {
- addCriterion("firstIcon2 not in", values, "firsticon2");
- return this;
- }
- public Criteria andFirsticon2Between(String value1, String value2) {
- addCriterion("firstIcon2 between", value1, value2, "firsticon2");
- return this;
- }
- public Criteria andFirsticon2NotBetween(String value1, String value2) {
- addCriterion("firstIcon2 not between", value1, value2, "firsticon2");
- return this;
- }
- public Criteria andSecondateIsNull() {
- addCriterion("seconDate is null");
- return this;
- }
- public Criteria andSecondateIsNotNull() {
- addCriterion("seconDate is not null");
- return this;
- }
- public Criteria andSecondateEqualTo(String value) {
- addCriterion("seconDate =", value, "secondate");
- return this;
- }
- public Criteria andSecondateNotEqualTo(String value) {
- addCriterion("seconDate <>", value, "secondate");
- return this;
- }
- public Criteria andSecondateGreaterThan(String value) {
- addCriterion("seconDate >", value, "secondate");
- return this;
- }
- public Criteria andSecondateGreaterThanOrEqualTo(String value) {
- addCriterion("seconDate >=", value, "secondate");
- return this;
- }
- public Criteria andSecondateLessThan(String value) {
- addCriterion("seconDate <", value, "secondate");
- return this;
- }
- public Criteria andSecondateLessThanOrEqualTo(String value) {
- addCriterion("seconDate <=", value, "secondate");
- return this;
- }
- public Criteria andSecondateLike(String value) {
- addCriterion("seconDate like", value, "secondate");
- return this;
- }
- public Criteria andSecondateNotLike(String value) {
- addCriterion("seconDate not like", value, "secondate");
- return this;
- }
- public Criteria andSecondateIn(List<String> values) {
- addCriterion("seconDate in", values, "secondate");
- return this;
- }
- public Criteria andSecondateNotIn(List<String> values) {
- addCriterion("seconDate not in", values, "secondate");
- return this;
- }
- public Criteria andSecondateBetween(String value1, String value2) {
- addCriterion("seconDate between", value1, value2, "secondate");
- return this;
- }
- public Criteria andSecondateNotBetween(String value1, String value2) {
- addCriterion("seconDate not between", value1, value2, "secondate");
- return this;
- }
- public Criteria andSecontempIsNull() {
- addCriterion("seconTemp is null");
- return this;
- }
- public Criteria andSecontempIsNotNull() {
- addCriterion("seconTemp is not null");
- return this;
- }
- public Criteria andSecontempEqualTo(String value) {
- addCriterion("seconTemp =", value, "secontemp");
- return this;
- }
- public Criteria andSecontempNotEqualTo(String value) {
- addCriterion("seconTemp <>", value, "secontemp");
- return this;
- }
- public Criteria andSecontempGreaterThan(String value) {
- addCriterion("seconTemp >", value, "secontemp");
- return this;
- }
- public Criteria andSecontempGreaterThanOrEqualTo(String value) {
- addCriterion("seconTemp >=", value, "secontemp");
- return this;
- }
- public Criteria andSecontempLessThan(String value) {
- addCriterion("seconTemp <", value, "secontemp");
- return this;
- }
- public Criteria andSecontempLessThanOrEqualTo(String value) {
- addCriterion("seconTemp <=", value, "secontemp");
- return this;
- }
- public Criteria andSecontempLike(String value) {
- addCriterion("seconTemp like", value, "secontemp");
- return this;
- }
- public Criteria andSecontempNotLike(String value) {
- addCriterion("seconTemp not like", value, "secontemp");
- return this;
- }
- public Criteria andSecontempIn(List<String> values) {
- addCriterion("seconTemp in", values, "secontemp");
- return this;
- }
- public Criteria andSecontempNotIn(List<String> values) {
- addCriterion("seconTemp not in", values, "secontemp");
- return this;
- }
- public Criteria andSecontempBetween(String value1, String value2) {
- addCriterion("seconTemp between", value1, value2, "secontemp");
- return this;
- }
- public Criteria andSecontempNotBetween(String value1, String value2) {
- addCriterion("seconTemp not between", value1, value2, "secontemp");
- return this;
- }
- public Criteria andSeconwindIsNull() {
- addCriterion("seconWind is null");
- return this;
- }
- public Criteria andSeconwindIsNotNull() {
- addCriterion("seconWind is not null");
- return this;
- }
- public Criteria andSeconwindEqualTo(String value) {
- addCriterion("seconWind =", value, "seconwind");
- return this;
- }
- public Criteria andSeconwindNotEqualTo(String value) {
- addCriterion("seconWind <>", value, "seconwind");
- return this;
- }
- public Criteria andSeconwindGreaterThan(String value) {
- addCriterion("seconWind >", value, "seconwind");
- return this;
- }
- public Criteria andSeconwindGreaterThanOrEqualTo(String value) {
- addCriterion("seconWind >=", value, "seconwind");
- return this;
- }
- public Criteria andSeconwindLessThan(String value) {
- addCriterion("seconWind <", value, "seconwind");
- return this;
- }
- public Criteria andSeconwindLessThanOrEqualTo(String value) {
- addCriterion("seconWind <=", value, "seconwind");
- return this;
- }
- public Criteria andSeconwindLike(String value) {
- addCriterion("seconWind like", value, "seconwind");
- return this;
- }
- public Criteria andSeconwindNotLike(String value) {
- addCriterion("seconWind not like", value, "seconwind");
- return this;
- }
- public Criteria andSeconwindIn(List<String> values) {
- addCriterion("seconWind in", values, "seconwind");
- return this;
- }
- public Criteria andSeconwindNotIn(List<String> values) {
- addCriterion("seconWind not in", values, "seconwind");
- return this;
- }
- public Criteria andSeconwindBetween(String value1, String value2) {
- addCriterion("seconWind between", value1, value2, "seconwind");
- return this;
- }
- public Criteria andSeconwindNotBetween(String value1, String value2) {
- addCriterion("seconWind not between", value1, value2, "seconwind");
- return this;
- }
- public Criteria andSeconicon1IsNull() {
- addCriterion("seconIcon1 is null");
- return this;
- }
- public Criteria andSeconicon1IsNotNull() {
- addCriterion("seconIcon1 is not null");
- return this;
- }
- public Criteria andSeconicon1EqualTo(String value) {
- addCriterion("seconIcon1 =", value, "seconicon1");
- return this;
- }
- public Criteria andSeconicon1NotEqualTo(String value) {
- addCriterion("seconIcon1 <>", value, "seconicon1");
- return this;
- }
- public Criteria andSeconicon1GreaterThan(String value) {
- addCriterion("seconIcon1 >", value, "seconicon1");
- return this;
- }
- public Criteria andSeconicon1GreaterThanOrEqualTo(String value) {
- addCriterion("seconIcon1 >=", value, "seconicon1");
- return this;
- }
- public Criteria andSeconicon1LessThan(String value) {
- addCriterion("seconIcon1 <", value, "seconicon1");
- return this;
- }
- public Criteria andSeconicon1LessThanOrEqualTo(String value) {
- addCriterion("seconIcon1 <=", value, "seconicon1");
- return this;
- }
- public Criteria andSeconicon1Like(String value) {
- addCriterion("seconIcon1 like", value, "seconicon1");
- return this;
- }
- public Criteria andSeconicon1NotLike(String value) {
- addCriterion("seconIcon1 not like", value, "seconicon1");
- return this;
- }
- public Criteria andSeconicon1In(List<String> values) {
- addCriterion("seconIcon1 in", values, "seconicon1");
- return this;
- }
- public Criteria andSeconicon1NotIn(List<String> values) {
- addCriterion("seconIcon1 not in", values, "seconicon1");
- return this;
- }
- public Criteria andSeconicon1Between(String value1, String value2) {
- addCriterion("seconIcon1 between", value1, value2, "seconicon1");
- return this;
- }
- public Criteria andSeconicon1NotBetween(String value1, String value2) {
- addCriterion("seconIcon1 not between", value1, value2, "seconicon1");
- return this;
- }
- public Criteria andSeconicon2IsNull() {
- addCriterion("seconIcon2 is null");
- return this;
- }
- public Criteria andSeconicon2IsNotNull() {
- addCriterion("seconIcon2 is not null");
- return this;
- }
- public Criteria andSeconicon2EqualTo(String value) {
- addCriterion("seconIcon2 =", value, "seconicon2");
- return this;
- }
- public Criteria andSeconicon2NotEqualTo(String value) {
- addCriterion("seconIcon2 <>", value, "seconicon2");
- return this;
- }
- public Criteria andSeconicon2GreaterThan(String value) {
- addCriterion("seconIcon2 >", value, "seconicon2");
- return this;
- }
- public Criteria andSeconicon2GreaterThanOrEqualTo(String value) {
- addCriterion("seconIcon2 >=", value, "seconicon2");
- return this;
- }
- public Criteria andSeconicon2LessThan(String value) {
- addCriterion("seconIcon2 <", value, "seconicon2");
- return this;
- }
- public Criteria andSeconicon2LessThanOrEqualTo(String value) {
- addCriterion("seconIcon2 <=", value, "seconicon2");
- return this;
- }
- public Criteria andSeconicon2Like(String value) {
- addCriterion("seconIcon2 like", value, "seconicon2");
- return this;
- }
- public Criteria andSeconicon2NotLike(String value) {
- addCriterion("seconIcon2 not like", value, "seconicon2");
- return this;
- }
- public Criteria andSeconicon2In(List<String> values) {
- addCriterion("seconIcon2 in", values, "seconicon2");
- return this;
- }
- public Criteria andSeconicon2NotIn(List<String> values) {
- addCriterion("seconIcon2 not in", values, "seconicon2");
- return this;
- }
- public Criteria andSeconicon2Between(String value1, String value2) {
- addCriterion("seconIcon2 between", value1, value2, "seconicon2");
- return this;
- }
- public Criteria andSeconicon2NotBetween(String value1, String value2) {
- addCriterion("seconIcon2 not between", value1, value2, "seconicon2");
- return this;
- }
- public Criteria andThirddateIsNull() {
- addCriterion("thirdDate is null");
- return this;
- }
- public Criteria andThirddateIsNotNull() {
- addCriterion("thirdDate is not null");
- return this;
- }
- public Criteria andThirddateEqualTo(String value) {
- addCriterion("thirdDate =", value, "thirddate");
- return this;
- }
- public Criteria andThirddateNotEqualTo(String value) {
- addCriterion("thirdDate <>", value, "thirddate");
- return this;
- }
- public Criteria andThirddateGreaterThan(String value) {
- addCriterion("thirdDate >", value, "thirddate");
- return this;
- }
- public Criteria andThirddateGreaterThanOrEqualTo(String value) {
- addCriterion("thirdDate >=", value, "thirddate");
- return this;
- }
- public Criteria andThirddateLessThan(String value) {
- addCriterion("thirdDate <", value, "thirddate");
- return this;
- }
- public Criteria andThirddateLessThanOrEqualTo(String value) {
- addCriterion("thirdDate <=", value, "thirddate");
- return this;
- }
- public Criteria andThirddateLike(String value) {
- addCriterion("thirdDate like", value, "thirddate");
- return this;
- }
- public Criteria andThirddateNotLike(String value) {
- addCriterion("thirdDate not like", value, "thirddate");
- return this;
- }
- public Criteria andThirddateIn(List<String> values) {
- addCriterion("thirdDate in", values, "thirddate");
- return this;
- }
- public Criteria andThirddateNotIn(List<String> values) {
- addCriterion("thirdDate not in", values, "thirddate");
- return this;
- }
- public Criteria andThirddateBetween(String value1, String value2) {
- addCriterion("thirdDate between", value1, value2, "thirddate");
- return this;
- }
- public Criteria andThirddateNotBetween(String value1, String value2) {
- addCriterion("thirdDate not between", value1, value2, "thirddate");
- return this;
- }
- public Criteria andThirdtempIsNull() {
- addCriterion("thirdTemp is null");
- return this;
- }
- public Criteria andThirdtempIsNotNull() {
- addCriterion("thirdTemp is not null");
- return this;
- }
- public Criteria andThirdtempEqualTo(String value) {
- addCriterion("thirdTemp =", value, "thirdtemp");
- return this;
- }
- public Criteria andThirdtempNotEqualTo(String value) {
- addCriterion("thirdTemp <>", value, "thirdtemp");
- return this;
- }
- public Criteria andThirdtempGreaterThan(String value) {
- addCriterion("thirdTemp >", value, "thirdtemp");
- return this;
- }
- public Criteria andThirdtempGreaterThanOrEqualTo(String value) {
- addCriterion("thirdTemp >=", value, "thirdtemp");
- return this;
- }
- public Criteria andThirdtempLessThan(String value) {
- addCriterion("thirdTemp <", value, "thirdtemp");
- return this;
- }
- public Criteria andThirdtempLessThanOrEqualTo(String value) {
- addCriterion("thirdTemp <=", value, "thirdtemp");
- return this;
- }
- public Criteria andThirdtempLike(String value) {
- addCriterion("thirdTemp like", value, "thirdtemp");
- return this;
- }
- public Criteria andThirdtempNotLike(String value) {
- addCriterion("thirdTemp not like", value, "thirdtemp");
- return this;
- }
- public Criteria andThirdtempIn(List<String> values) {
- addCriterion("thirdTemp in", values, "thirdtemp");
- return this;
- }
- public Criteria andThirdtempNotIn(List<String> values) {
- addCriterion("thirdTemp not in", values, "thirdtemp");
- return this;
- }
- public Criteria andThirdtempBetween(String value1, String value2) {
- addCriterion("thirdTemp between", value1, value2, "thirdtemp");
- return this;
- }
- public Criteria andThirdtempNotBetween(String value1, String value2) {
- addCriterion("thirdTemp not between", value1, value2, "thirdtemp");
- return this;
- }
- public Criteria andThirdwindIsNull() {
- addCriterion("thirdWind is null");
- return this;
- }
- public Criteria andThirdwindIsNotNull() {
- addCriterion("thirdWind is not null");
- return this;
- }
- public Criteria andThirdwindEqualTo(String value) {
- addCriterion("thirdWind =", value, "thirdwind");
- return this;
- }
- public Criteria andThirdwindNotEqualTo(String value) {
- addCriterion("thirdWind <>", value, "thirdwind");
- return this;
- }
- public Criteria andThirdwindGreaterThan(String value) {
- addCriterion("thirdWind >", value, "thirdwind");
- return this;
- }
- public Criteria andThirdwindGreaterThanOrEqualTo(String value) {
- addCriterion("thirdWind >=", value, "thirdwind");
- return this;
- }
- public Criteria andThirdwindLessThan(String value) {
- addCriterion("thirdWind <", value, "thirdwind");
- return this;
- }
- public Criteria andThirdwindLessThanOrEqualTo(String value) {
- addCriterion("thirdWind <=", value, "thirdwind");
- return this;
- }
- public Criteria andThirdwindLike(String value) {
- addCriterion("thirdWind like", value, "thirdwind");
- return this;
- }
- public Criteria andThirdwindNotLike(String value) {
- addCriterion("thirdWind not like", value, "thirdwind");
- return this;
- }
- public Criteria andThirdwindIn(List<String> values) {
- addCriterion("thirdWind in", values, "thirdwind");
- return this;
- }
- public Criteria andThirdwindNotIn(List<String> values) {
- addCriterion("thirdWind not in", values, "thirdwind");
- return this;
- }
- public Criteria andThirdwindBetween(String value1, String value2) {
- addCriterion("thirdWind between", value1, value2, "thirdwind");
- return this;
- }
- public Criteria andThirdwindNotBetween(String value1, String value2) {
- addCriterion("thirdWind not between", value1, value2, "thirdwind");
- return this;
- }
- public Criteria andThirdicon1IsNull() {
- addCriterion("thirdIcon1 is null");
- return this;
- }
- public Criteria andThirdicon1IsNotNull() {
- addCriterion("thirdIcon1 is not null");
- return this;
- }
- public Criteria andThirdicon1EqualTo(String value) {
- addCriterion("thirdIcon1 =", value, "thirdicon1");
- return this;
- }
- public Criteria andThirdicon1NotEqualTo(String value) {
- addCriterion("thirdIcon1 <>", value, "thirdicon1");
- return this;
- }
- public Criteria andThirdicon1GreaterThan(String value) {
- addCriterion("thirdIcon1 >", value, "thirdicon1");
- return this;
- }
- public Criteria andThirdicon1GreaterThanOrEqualTo(String value) {
- addCriterion("thirdIcon1 >=", value, "thirdicon1");
- return this;
- }
- public Criteria andThirdicon1LessThan(String value) {
- addCriterion("thirdIcon1 <", value, "thirdicon1");
- return this;
- }
- public Criteria andThirdicon1LessThanOrEqualTo(String value) {
- addCriterion("thirdIcon1 <=", value, "thirdicon1");
- return this;
- }
- public Criteria andThirdicon1Like(String value) {
- addCriterion("thirdIcon1 like", value, "thirdicon1");
- return this;
- }
- public Criteria andThirdicon1NotLike(String value) {
- addCriterion("thirdIcon1 not like", value, "thirdicon1");
- return this;
- }
- public Criteria andThirdicon1In(List<String> values) {
- addCriterion("thirdIcon1 in", values, "thirdicon1");
- return this;
- }
- public Criteria andThirdicon1NotIn(List<String> values) {
- addCriterion("thirdIcon1 not in", values, "thirdicon1");
- return this;
- }
- public Criteria andThirdicon1Between(String value1, String value2) {
- addCriterion("thirdIcon1 between", value1, value2, "thirdicon1");
- return this;
- }
- public Criteria andThirdicon1NotBetween(String value1, String value2) {
- addCriterion("thirdIcon1 not between", value1, value2, "thirdicon1");
- return this;
- }
- public Criteria andThirdicon2IsNull() {
- addCriterion("thirdIcon2 is null");
- return this;
- }
- public Criteria andThirdicon2IsNotNull() {
- addCriterion("thirdIcon2 is not null");
- return this;
- }
- public Criteria andThirdicon2EqualTo(String value) {
- addCriterion("thirdIcon2 =", value, "thirdicon2");
- return this;
- }
- public Criteria andThirdicon2NotEqualTo(String value) {
- addCriterion("thirdIcon2 <>", value, "thirdicon2");
- return this;
- }
- public Criteria andThirdicon2GreaterThan(String value) {
- addCriterion("thirdIcon2 >", value, "thirdicon2");
- return this;
- }
- public Criteria andThirdicon2GreaterThanOrEqualTo(String value) {
- addCriterion("thirdIcon2 >=", value, "thirdicon2");
- return this;
- }
- public Criteria andThirdicon2LessThan(String value) {
- addCriterion("thirdIcon2 <", value, "thirdicon2");
- return this;
- }
- public Criteria andThirdicon2LessThanOrEqualTo(String value) {
- addCriterion("thirdIcon2 <=", value, "thirdicon2");
- return this;
- }
- public Criteria andThirdicon2Like(String value) {
- addCriterion("thirdIcon2 like", value, "thirdicon2");
- return this;
- }
- public Criteria andThirdicon2NotLike(String value) {
- addCriterion("thirdIcon2 not like", value, "thirdicon2");
- return this;
- }
- public Criteria andThirdicon2In(List<String> values) {
- addCriterion("thirdIcon2 in", values, "thirdicon2");
- return this;
- }
- public Criteria andThirdicon2NotIn(List<String> values) {
- addCriterion("thirdIcon2 not in", values, "thirdicon2");
- return this;
- }
- public Criteria andThirdicon2Between(String value1, String value2) {
- addCriterion("thirdIcon2 between", value1, value2, "thirdicon2");
- return this;
- }
- public Criteria andThirdicon2NotBetween(String value1, String value2) {
- addCriterion("thirdIcon2 not between", value1, value2, "thirdicon2");
- return this;
- }
- public Criteria andFourthdateIsNull() {
- addCriterion("fourthDate is null");
- return this;
- }
- public Criteria andFourthdateIsNotNull() {
- addCriterion("fourthDate is not null");
- return this;
- }
- public Criteria andFourthdateEqualTo(String value) {
- addCriterion("fourthDate =", value, "fourthdate");
- return this;
- }
- public Criteria andFourthdateNotEqualTo(String value) {
- addCriterion("fourthDate <>", value, "fourthdate");
- return this;
- }
- public Criteria andFourthdateGreaterThan(String value) {
- addCriterion("fourthDate >", value, "fourthdate");
- return this;
- }
- public Criteria andFourthdateGreaterThanOrEqualTo(String value) {
- addCriterion("fourthDate >=", value, "fourthdate");
- return this;
- }
- public Criteria andFourthdateLessThan(String value) {
- addCriterion("fourthDate <", value, "fourthdate");
- return this;
- }
- public Criteria andFourthdateLessThanOrEqualTo(String value) {
- addCriterion("fourthDate <=", value, "fourthdate");
- return this;
- }
- public Criteria andFourthdateLike(String value) {
- addCriterion("fourthDate like", value, "fourthdate");
- return this;
- }
- public Criteria andFourthdateNotLike(String value) {
- addCriterion("fourthDate not like", value, "fourthdate");
- return this;
- }
- public Criteria andFourthdateIn(List<String> values) {
- addCriterion("fourthDate in", values, "fourthdate");
- return this;
- }
- public Criteria andFourthdateNotIn(List<String> values) {
- addCriterion("fourthDate not in", values, "fourthdate");
- return this;
- }
- public Criteria andFourthdateBetween(String value1, String value2) {
- addCriterion("fourthDate between", value1, value2, "fourthdate");
- return this;
- }
- public Criteria andFourthdateNotBetween(String value1, String value2) {
- addCriterion("fourthDate not between", value1, value2, "fourthdate");
- return this;
- }
- public Criteria andFourthtempIsNull() {
- addCriterion("fourthTemp is null");
- return this;
- }
- public Criteria andFourthtempIsNotNull() {
- addCriterion("fourthTemp is not null");
- return this;
- }
- public Criteria andFourthtempEqualTo(String value) {
- addCriterion("fourthTemp =", value, "fourthtemp");
- return this;
- }
- public Criteria andFourthtempNotEqualTo(String value) {
- addCriterion("fourthTemp <>", value, "fourthtemp");
- return this;
- }
- public Criteria andFourthtempGreaterThan(String value) {
- addCriterion("fourthTemp >", value, "fourthtemp");
- return this;
- }
- public Criteria andFourthtempGreaterThanOrEqualTo(String value) {
- addCriterion("fourthTemp >=", value, "fourthtemp");
- return this;
- }
- public Criteria andFourthtempLessThan(String value) {
- addCriterion("fourthTemp <", value, "fourthtemp");
- return this;
- }
- public Criteria andFourthtempLessThanOrEqualTo(String value) {
- addCriterion("fourthTemp <=", value, "fourthtemp");
- return this;
- }
- public Criteria andFourthtempLike(String value) {
- addCriterion("fourthTemp like", value, "fourthtemp");
- return this;
- }
- public Criteria andFourthtempNotLike(String value) {
- addCriterion("fourthTemp not like", value, "fourthtemp");
- return this;
- }
- public Criteria andFourthtempIn(List<String> values) {
- addCriterion("fourthTemp in", values, "fourthtemp");
- return this;
- }
- public Criteria andFourthtempNotIn(List<String> values) {
- addCriterion("fourthTemp not in", values, "fourthtemp");
- return this;
- }
- public Criteria andFourthtempBetween(String value1, String value2) {
- addCriterion("fourthTemp between", value1, value2, "fourthtemp");
- return this;
- }
- public Criteria andFourthtempNotBetween(String value1, String value2) {
- addCriterion("fourthTemp not between", value1, value2, "fourthtemp");
- return this;
- }
- public Criteria andFourthwindIsNull() {
- addCriterion("fourthWind is null");
- return this;
- }
- public Criteria andFourthwindIsNotNull() {
- addCriterion("fourthWind is not null");
- return this;
- }
- public Criteria andFourthwindEqualTo(String value) {
- addCriterion("fourthWind =", value, "fourthwind");
- return this;
- }
- public Criteria andFourthwindNotEqualTo(String value) {
- addCriterion("fourthWind <>", value, "fourthwind");
- return this;
- }
- public Criteria andFourthwindGreaterThan(String value) {
- addCriterion("fourthWind >", value, "fourthwind");
- return this;
- }
- public Criteria andFourthwindGreaterThanOrEqualTo(String value) {
- addCriterion("fourthWind >=", value, "fourthwind");
- return this;
- }
- public Criteria andFourthwindLessThan(String value) {
- addCriterion("fourthWind <", value, "fourthwind");
- return this;
- }
- public Criteria andFourthwindLessThanOrEqualTo(String value) {
- addCriterion("fourthWind <=", value, "fourthwind");
- return this;
- }
- public Criteria andFourthwindLike(String value) {
- addCriterion("fourthWind like", value, "fourthwind");
- return this;
- }
- public Criteria andFourthwindNotLike(String value) {
- addCriterion("fourthWind not like", value, "fourthwind");
- return this;
- }
- public Criteria andFourthwindIn(List<String> values) {
- addCriterion("fourthWind in", values, "fourthwind");
- return this;
- }
- public Criteria andFourthwindNotIn(List<String> values) {
- addCriterion("fourthWind not in", values, "fourthwind");
- return this;
- }
- public Criteria andFourthwindBetween(String value1, String value2) {
- addCriterion("fourthWind between", value1, value2, "fourthwind");
- return this;
- }
- public Criteria andFourthwindNotBetween(String value1, String value2) {
- addCriterion("fourthWind not between", value1, value2, "fourthwind");
- return this;
- }
- public Criteria andFourthicon1IsNull() {
- addCriterion("fourthIcon1 is null");
- return this;
- }
- public Criteria andFourthicon1IsNotNull() {
- addCriterion("fourthIcon1 is not null");
- return this;
- }
- public Criteria andFourthicon1EqualTo(String value) {
- addCriterion("fourthIcon1 =", value, "fourthicon1");
- return this;
- }
- public Criteria andFourthicon1NotEqualTo(String value) {
- addCriterion("fourthIcon1 <>", value, "fourthicon1");
- return this;
- }
- public Criteria andFourthicon1GreaterThan(String value) {
- addCriterion("fourthIcon1 >", value, "fourthicon1");
- return this;
- }
- public Criteria andFourthicon1GreaterThanOrEqualTo(String value) {
- addCriterion("fourthIcon1 >=", value, "fourthicon1");
- return this;
- }
- public Criteria andFourthicon1LessThan(String value) {
- addCriterion("fourthIcon1 <", value, "fourthicon1");
- return this;
- }
- public Criteria andFourthicon1LessThanOrEqualTo(String value) {
- addCriterion("fourthIcon1 <=", value, "fourthicon1");
- return this;
- }
- public Criteria andFourthicon1Like(String value) {
- addCriterion("fourthIcon1 like", value, "fourthicon1");
- return this;
- }
- public Criteria andFourthicon1NotLike(String value) {
- addCriterion("fourthIcon1 not like", value, "fourthicon1");
- return this;
- }
- public Criteria andFourthicon1In(List<String> values) {
- addCriterion("fourthIcon1 in", values, "fourthicon1");
- return this;
- }
- public Criteria andFourthicon1NotIn(List<String> values) {
- addCriterion("fourthIcon1 not in", values, "fourthicon1");
- return this;
- }
- public Criteria andFourthicon1Between(String value1, String value2) {
- addCriterion("fourthIcon1 between", value1, value2, "fourthicon1");
- return this;
- }
- public Criteria andFourthicon1NotBetween(String value1, String value2) {
- addCriterion("fourthIcon1 not between", value1, value2, "fourthicon1");
- return this;
- }
- public Criteria andFourthicon2IsNull() {
- addCriterion("fourthIcon2 is null");
- return this;
- }
- public Criteria andFourthicon2IsNotNull() {
- addCriterion("fourthIcon2 is not null");
- return this;
- }
- public Criteria andFourthicon2EqualTo(String value) {
- addCriterion("fourthIcon2 =", value, "fourthicon2");
- return this;
- }
- public Criteria andFourthicon2NotEqualTo(String value) {
- addCriterion("fourthIcon2 <>", value, "fourthicon2");
- return this;
- }
- public Criteria andFourthicon2GreaterThan(String value) {
- addCriterion("fourthIcon2 >", value, "fourthicon2");
- return this;
- }
- public Criteria andFourthicon2GreaterThanOrEqualTo(String value) {
- addCriterion("fourthIcon2 >=", value, "fourthicon2");
- return this;
- }
- public Criteria andFourthicon2LessThan(String value) {
- addCriterion("fourthIcon2 <", value, "fourthicon2");
- return this;
- }
- public Criteria andFourthicon2LessThanOrEqualTo(String value) {
- addCriterion("fourthIcon2 <=", value, "fourthicon2");
- return this;
- }
- public Criteria andFourthicon2Like(String value) {
- addCriterion("fourthIcon2 like", value, "fourthicon2");
- return this;
- }
- public Criteria andFourthicon2NotLike(String value) {
- addCriterion("fourthIcon2 not like", value, "fourthicon2");
- return this;
- }
- public Criteria andFourthicon2In(List<String> values) {
- addCriterion("fourthIcon2 in", values, "fourthicon2");
- return this;
- }
- public Criteria andFourthicon2NotIn(List<String> values) {
- addCriterion("fourthIcon2 not in", values, "fourthicon2");
- return this;
- }
- public Criteria andFourthicon2Between(String value1, String value2) {
- addCriterion("fourthIcon2 between", value1, value2, "fourthicon2");
- return this;
- }
- public Criteria andFourthicon2NotBetween(String value1, String value2) {
- addCriterion("fourthIcon2 not between", value1, value2, "fourthicon2");
- return this;
- }
- public Criteria andFifthdateIsNull() {
- addCriterion("fifthDate is null");
- return this;
- }
- public Criteria andFifthdateIsNotNull() {
- addCriterion("fifthDate is not null");
- return this;
- }
- public Criteria andFifthdateEqualTo(String value) {
- addCriterion("fifthDate =", value, "fifthdate");
- return this;
- }
- public Criteria andFifthdateNotEqualTo(String value) {
- addCriterion("fifthDate <>", value, "fifthdate");
- return this;
- }
- public Criteria andFifthdateGreaterThan(String value) {
- addCriterion("fifthDate >", value, "fifthdate");
- return this;
- }
- public Criteria andFifthdateGreaterThanOrEqualTo(String value) {
- addCriterion("fifthDate >=", value, "fifthdate");
- return this;
- }
- public Criteria andFifthdateLessThan(String value) {
- addCriterion("fifthDate <", value, "fifthdate");
- return this;
- }
- public Criteria andFifthdateLessThanOrEqualTo(String value) {
- addCriterion("fifthDate <=", value, "fifthdate");
- return this;
- }
- public Criteria andFifthdateLike(String value) {
- addCriterion("fifthDate like", value, "fifthdate");
- return this;
- }
- public Criteria andFifthdateNotLike(String value) {
- addCriterion("fifthDate not like", value, "fifthdate");
- return this;
- }
- public Criteria andFifthdateIn(List<String> values) {
- addCriterion("fifthDate in", values, "fifthdate");
- return this;
- }
- public Criteria andFifthdateNotIn(List<String> values) {
- addCriterion("fifthDate not in", values, "fifthdate");
- return this;
- }
- public Criteria andFifthdateBetween(String value1, String value2) {
- addCriterion("fifthDate between", value1, value2, "fifthdate");
- return this;
- }
- public Criteria andFifthdateNotBetween(String value1, String value2) {
- addCriterion("fifthDate not between", value1, value2, "fifthdate");
- return this;
- }
- public Criteria andFifthtempIsNull() {
- addCriterion("fifthTemp is null");
- return this;
- }
- public Criteria andFifthtempIsNotNull() {
- addCriterion("fifthTemp is not null");
- return this;
- }
- public Criteria andFifthtempEqualTo(String value) {
- addCriterion("fifthTemp =", value, "fifthtemp");
- return this;
- }
- public Criteria andFifthtempNotEqualTo(String value) {
- addCriterion("fifthTemp <>", value, "fifthtemp");
- return this;
- }
- public Criteria andFifthtempGreaterThan(String value) {
- addCriterion("fifthTemp >", value, "fifthtemp");
- return this;
- }
- public Criteria andFifthtempGreaterThanOrEqualTo(String value) {
- addCriterion("fifthTemp >=", value, "fifthtemp");
- return this;
- }
- public Criteria andFifthtempLessThan(String value) {
- addCriterion("fifthTemp <", value, "fifthtemp");
- return this;
- }
- public Criteria andFifthtempLessThanOrEqualTo(String value) {
- addCriterion("fifthTemp <=", value, "fifthtemp");
- return this;
- }
- public Criteria andFifthtempLike(String value) {
- addCriterion("fifthTemp like", value, "fifthtemp");
- return this;
- }
- public Criteria andFifthtempNotLike(String value) {
- addCriterion("fifthTemp not like", value, "fifthtemp");
- return this;
- }
- public Criteria andFifthtempIn(List<String> values) {
- addCriterion("fifthTemp in", values, "fifthtemp");
- return this;
- }
- public Criteria andFifthtempNotIn(List<String> values) {
- addCriterion("fifthTemp not in", values, "fifthtemp");
- return this;
- }
- public Criteria andFifthtempBetween(String value1, String value2) {
- addCriterion("fifthTemp between", value1, value2, "fifthtemp");
- return this;
- }
- public Criteria andFifthtempNotBetween(String value1, String value2) {
- addCriterion("fifthTemp not between", value1, value2, "fifthtemp");
- return this;
- }
- public Criteria andFifthwindIsNull() {
- addCriterion("fifthWind is null");
- return this;
- }
- public Criteria andFifthwindIsNotNull() {
- addCriterion("fifthWind is not null");
- return this;
- }
- public Criteria andFifthwindEqualTo(String value) {
- addCriterion("fifthWind =", value, "fifthwind");
- return this;
- }
- public Criteria andFifthwindNotEqualTo(String value) {
- addCriterion("fifthWind <>", value, "fifthwind");
- return this;
- }
- public Criteria andFifthwindGreaterThan(String value) {
- addCriterion("fifthWind >", value, "fifthwind");
- return this;
- }
- public Criteria andFifthwindGreaterThanOrEqualTo(String value) {
- addCriterion("fifthWind >=", value, "fifthwind");
- return this;
- }
- public Criteria andFifthwindLessThan(String value) {
- addCriterion("fifthWind <", value, "fifthwind");
- return this;
- }
- public Criteria andFifthwindLessThanOrEqualTo(String value) {
- addCriterion("fifthWind <=", value, "fifthwind");
- return this;
- }
- public Criteria andFifthwindLike(String value) {
- addCriterion("fifthWind like", value, "fifthwind");
- return this;
- }
- public Criteria andFifthwindNotLike(String value) {
- addCriterion("fifthWind not like", value, "fifthwind");
- return this;
- }
- public Criteria andFifthwindIn(List<String> values) {
- addCriterion("fifthWind in", values, "fifthwind");
- return this;
- }
- public Criteria andFifthwindNotIn(List<String> values) {
- addCriterion("fifthWind not in", values, "fifthwind");
- return this;
- }
- public Criteria andFifthwindBetween(String value1, String value2) {
- addCriterion("fifthWind between", value1, value2, "fifthwind");
- return this;
- }
- public Criteria andFifthwindNotBetween(String value1, String value2) {
- addCriterion("fifthWind not between", value1, value2, "fifthwind");
- return this;
- }
- public Criteria andFifthicon1IsNull() {
- addCriterion("fifthIcon1 is null");
- return this;
- }
- public Criteria andFifthicon1IsNotNull() {
- addCriterion("fifthIcon1 is not null");
- return this;
- }
- public Criteria andFifthicon1EqualTo(String value) {
- addCriterion("fifthIcon1 =", value, "fifthicon1");
- return this;
- }
- public Criteria andFifthicon1NotEqualTo(String value) {
- addCriterion("fifthIcon1 <>", value, "fifthicon1");
- return this;
- }
- public Criteria andFifthicon1GreaterThan(String value) {
- addCriterion("fifthIcon1 >", value, "fifthicon1");
- return this;
- }
- public Criteria andFifthicon1GreaterThanOrEqualTo(String value) {
- addCriterion("fifthIcon1 >=", value, "fifthicon1");
- return this;
- }
- public Criteria andFifthicon1LessThan(String value) {
- addCriterion("fifthIcon1 <", value, "fifthicon1");
- return this;
- }
- public Criteria andFifthicon1LessThanOrEqualTo(String value) {
- addCriterion("fifthIcon1 <=", value, "fifthicon1");
- return this;
- }
- public Criteria andFifthicon1Like(String value) {
- addCriterion("fifthIcon1 like", value, "fifthicon1");
- return this;
- }
- public Criteria andFifthicon1NotLike(String value) {
- addCriterion("fifthIcon1 not like", value, "fifthicon1");
- return this;
- }
- public Criteria andFifthicon1In(List<String> values) {
- addCriterion("fifthIcon1 in", values, "fifthicon1");
- return this;
- }
- public Criteria andFifthicon1NotIn(List<String> values) {
- addCriterion("fifthIcon1 not in", values, "fifthicon1");
- return this;
- }
- public Criteria andFifthicon1Between(String value1, String value2) {
- addCriterion("fifthIcon1 between", value1, value2, "fifthicon1");
- return this;
- }
- public Criteria andFifthicon1NotBetween(String value1, String value2) {
- addCriterion("fifthIcon1 not between", value1, value2, "fifthicon1");
- return this;
- }
- public Criteria andFifthicon2IsNull() {
- addCriterion("fifthIcon2 is null");
- return this;
- }
- public Criteria andFifthicon2IsNotNull() {
- addCriterion("fifthIcon2 is not null");
- return this;
- }
- public Criteria andFifthicon2EqualTo(String value) {
- addCriterion("fifthIcon2 =", value, "fifthicon2");
- return this;
- }
- public Criteria andFifthicon2NotEqualTo(String value) {
- addCriterion("fifthIcon2 <>", value, "fifthicon2");
- return this;
- }
- public Criteria andFifthicon2GreaterThan(String value) {
- addCriterion("fifthIcon2 >", value, "fifthicon2");
- return this;
- }
- public Criteria andFifthicon2GreaterThanOrEqualTo(String value) {
- addCriterion("fifthIcon2 >=", value, "fifthicon2");
- return this;
- }
- public Criteria andFifthicon2LessThan(String value) {
- addCriterion("fifthIcon2 <", value, "fifthicon2");
- return this;
- }
- public Criteria andFifthicon2LessThanOrEqualTo(String value) {
- addCriterion("fifthIcon2 <=", value, "fifthicon2");
- return this;
- }
- public Criteria andFifthicon2Like(String value) {
- addCriterion("fifthIcon2 like", value, "fifthicon2");
- return this;
- }
- public Criteria andFifthicon2NotLike(String value) {
- addCriterion("fifthIcon2 not like", value, "fifthicon2");
- return this;
- }
- public Criteria andFifthicon2In(List<String> values) {
- addCriterion("fifthIcon2 in", values, "fifthicon2");
- return this;
- }
- public Criteria andFifthicon2NotIn(List<String> values) {
- addCriterion("fifthIcon2 not in", values, "fifthicon2");
- return this;
- }
- public Criteria andFifthicon2Between(String value1, String value2) {
- addCriterion("fifthIcon2 between", value1, value2, "fifthicon2");
- return this;
- }
- public Criteria andFifthicon2NotBetween(String value1, String value2) {
- addCriterion("fifthIcon2 not between", value1, value2, "fifthicon2");
- return this;
- }
- }
- }
|