DemandCollectionExample.java 185 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463
  1. package com.goafanti.common.model;
  2. import java.math.BigDecimal;
  3. import java.util.ArrayList;
  4. import java.util.Date;
  5. import java.util.List;
  6. public class DemandCollectionExample {
  7. /**
  8. * This field was generated by MyBatis Generator. This field corresponds to the database table demand_collection
  9. * @mbg.generated Thu Jul 09 14:27:49 CST 2020
  10. */
  11. protected String orderByClause;
  12. /**
  13. * This field was generated by MyBatis Generator. This field corresponds to the database table demand_collection
  14. * @mbg.generated Thu Jul 09 14:27:49 CST 2020
  15. */
  16. protected boolean distinct;
  17. /**
  18. * This field was generated by MyBatis Generator. This field corresponds to the database table demand_collection
  19. * @mbg.generated Thu Jul 09 14:27:49 CST 2020
  20. */
  21. protected List<Criteria> oredCriteria;
  22. /**
  23. * This method was generated by MyBatis Generator. This method corresponds to the database table demand_collection
  24. * @mbg.generated Thu Jul 09 14:27:49 CST 2020
  25. */
  26. public DemandCollectionExample() {
  27. oredCriteria = new ArrayList<Criteria>();
  28. }
  29. /**
  30. * This method was generated by MyBatis Generator. This method corresponds to the database table demand_collection
  31. * @mbg.generated Thu Jul 09 14:27:49 CST 2020
  32. */
  33. public void setOrderByClause(String orderByClause) {
  34. this.orderByClause = orderByClause;
  35. }
  36. /**
  37. * This method was generated by MyBatis Generator. This method corresponds to the database table demand_collection
  38. * @mbg.generated Thu Jul 09 14:27:49 CST 2020
  39. */
  40. public String getOrderByClause() {
  41. return orderByClause;
  42. }
  43. /**
  44. * This method was generated by MyBatis Generator. This method corresponds to the database table demand_collection
  45. * @mbg.generated Thu Jul 09 14:27:49 CST 2020
  46. */
  47. public void setDistinct(boolean distinct) {
  48. this.distinct = distinct;
  49. }
  50. /**
  51. * This method was generated by MyBatis Generator. This method corresponds to the database table demand_collection
  52. * @mbg.generated Thu Jul 09 14:27:49 CST 2020
  53. */
  54. public boolean isDistinct() {
  55. return distinct;
  56. }
  57. /**
  58. * This method was generated by MyBatis Generator. This method corresponds to the database table demand_collection
  59. * @mbg.generated Thu Jul 09 14:27:49 CST 2020
  60. */
  61. public List<Criteria> getOredCriteria() {
  62. return oredCriteria;
  63. }
  64. /**
  65. * This method was generated by MyBatis Generator. This method corresponds to the database table demand_collection
  66. * @mbg.generated Thu Jul 09 14:27:49 CST 2020
  67. */
  68. public void or(Criteria criteria) {
  69. oredCriteria.add(criteria);
  70. }
  71. /**
  72. * This method was generated by MyBatis Generator. This method corresponds to the database table demand_collection
  73. * @mbg.generated Thu Jul 09 14:27:49 CST 2020
  74. */
  75. public Criteria or() {
  76. Criteria criteria = createCriteriaInternal();
  77. oredCriteria.add(criteria);
  78. return criteria;
  79. }
  80. /**
  81. * This method was generated by MyBatis Generator. This method corresponds to the database table demand_collection
  82. * @mbg.generated Thu Jul 09 14:27:49 CST 2020
  83. */
  84. public Criteria createCriteria() {
  85. Criteria criteria = createCriteriaInternal();
  86. if (oredCriteria.size() == 0) {
  87. oredCriteria.add(criteria);
  88. }
  89. return criteria;
  90. }
  91. /**
  92. * This method was generated by MyBatis Generator. This method corresponds to the database table demand_collection
  93. * @mbg.generated Thu Jul 09 14:27:49 CST 2020
  94. */
  95. protected Criteria createCriteriaInternal() {
  96. Criteria criteria = new Criteria();
  97. return criteria;
  98. }
  99. /**
  100. * This method was generated by MyBatis Generator. This method corresponds to the database table demand_collection
  101. * @mbg.generated Thu Jul 09 14:27:49 CST 2020
  102. */
  103. public void clear() {
  104. oredCriteria.clear();
  105. orderByClause = null;
  106. distinct = false;
  107. }
  108. /**
  109. * This class was generated by MyBatis Generator. This class corresponds to the database table demand_collection
  110. * @mbg.generated Thu Jul 09 14:27:49 CST 2020
  111. */
  112. protected abstract static class GeneratedCriteria {
  113. protected List<Criterion> criteria;
  114. protected GeneratedCriteria() {
  115. super();
  116. criteria = new ArrayList<Criterion>();
  117. }
  118. public boolean isValid() {
  119. return criteria.size() > 0;
  120. }
  121. public List<Criterion> getAllCriteria() {
  122. return criteria;
  123. }
  124. public List<Criterion> getCriteria() {
  125. return criteria;
  126. }
  127. protected void addCriterion(String condition) {
  128. if (condition == null) {
  129. throw new RuntimeException("Value for condition cannot be null");
  130. }
  131. criteria.add(new Criterion(condition));
  132. }
  133. protected void addCriterion(String condition, Object value, String property) {
  134. if (value == null) {
  135. throw new RuntimeException("Value for " + property + " cannot be null");
  136. }
  137. criteria.add(new Criterion(condition, value));
  138. }
  139. protected void addCriterion(String condition, Object value1, Object value2, String property) {
  140. if (value1 == null || value2 == null) {
  141. throw new RuntimeException("Between values for " + property + " cannot be null");
  142. }
  143. criteria.add(new Criterion(condition, value1, value2));
  144. }
  145. public Criteria andIdIsNull() {
  146. addCriterion("id is null");
  147. return (Criteria) this;
  148. }
  149. public Criteria andIdIsNotNull() {
  150. addCriterion("id is not null");
  151. return (Criteria) this;
  152. }
  153. public Criteria andIdEqualTo(Integer value) {
  154. addCriterion("id =", value, "id");
  155. return (Criteria) this;
  156. }
  157. public Criteria andIdNotEqualTo(Integer value) {
  158. addCriterion("id <>", value, "id");
  159. return (Criteria) this;
  160. }
  161. public Criteria andIdGreaterThan(Integer value) {
  162. addCriterion("id >", value, "id");
  163. return (Criteria) this;
  164. }
  165. public Criteria andIdGreaterThanOrEqualTo(Integer value) {
  166. addCriterion("id >=", value, "id");
  167. return (Criteria) this;
  168. }
  169. public Criteria andIdLessThan(Integer value) {
  170. addCriterion("id <", value, "id");
  171. return (Criteria) this;
  172. }
  173. public Criteria andIdLessThanOrEqualTo(Integer value) {
  174. addCriterion("id <=", value, "id");
  175. return (Criteria) this;
  176. }
  177. public Criteria andIdIn(List<Integer> values) {
  178. addCriterion("id in", values, "id");
  179. return (Criteria) this;
  180. }
  181. public Criteria andIdNotIn(List<Integer> values) {
  182. addCriterion("id not in", values, "id");
  183. return (Criteria) this;
  184. }
  185. public Criteria andIdBetween(Integer value1, Integer value2) {
  186. addCriterion("id between", value1, value2, "id");
  187. return (Criteria) this;
  188. }
  189. public Criteria andIdNotBetween(Integer value1, Integer value2) {
  190. addCriterion("id not between", value1, value2, "id");
  191. return (Criteria) this;
  192. }
  193. public Criteria andDwmcIsNull() {
  194. addCriterion("dwmc is null");
  195. return (Criteria) this;
  196. }
  197. public Criteria andDwmcIsNotNull() {
  198. addCriterion("dwmc is not null");
  199. return (Criteria) this;
  200. }
  201. public Criteria andDwmcEqualTo(String value) {
  202. addCriterion("dwmc =", value, "dwmc");
  203. return (Criteria) this;
  204. }
  205. public Criteria andDwmcNotEqualTo(String value) {
  206. addCriterion("dwmc <>", value, "dwmc");
  207. return (Criteria) this;
  208. }
  209. public Criteria andDwmcGreaterThan(String value) {
  210. addCriterion("dwmc >", value, "dwmc");
  211. return (Criteria) this;
  212. }
  213. public Criteria andDwmcGreaterThanOrEqualTo(String value) {
  214. addCriterion("dwmc >=", value, "dwmc");
  215. return (Criteria) this;
  216. }
  217. public Criteria andDwmcLessThan(String value) {
  218. addCriterion("dwmc <", value, "dwmc");
  219. return (Criteria) this;
  220. }
  221. public Criteria andDwmcLessThanOrEqualTo(String value) {
  222. addCriterion("dwmc <=", value, "dwmc");
  223. return (Criteria) this;
  224. }
  225. public Criteria andDwmcLike(String value) {
  226. addCriterion("dwmc like", value, "dwmc");
  227. return (Criteria) this;
  228. }
  229. public Criteria andDwmcNotLike(String value) {
  230. addCriterion("dwmc not like", value, "dwmc");
  231. return (Criteria) this;
  232. }
  233. public Criteria andDwmcIn(List<String> values) {
  234. addCriterion("dwmc in", values, "dwmc");
  235. return (Criteria) this;
  236. }
  237. public Criteria andDwmcNotIn(List<String> values) {
  238. addCriterion("dwmc not in", values, "dwmc");
  239. return (Criteria) this;
  240. }
  241. public Criteria andDwmcBetween(String value1, String value2) {
  242. addCriterion("dwmc between", value1, value2, "dwmc");
  243. return (Criteria) this;
  244. }
  245. public Criteria andDwmcNotBetween(String value1, String value2) {
  246. addCriterion("dwmc not between", value1, value2, "dwmc");
  247. return (Criteria) this;
  248. }
  249. public Criteria andDwxzIsNull() {
  250. addCriterion("dwxz is null");
  251. return (Criteria) this;
  252. }
  253. public Criteria andDwxzIsNotNull() {
  254. addCriterion("dwxz is not null");
  255. return (Criteria) this;
  256. }
  257. public Criteria andDwxzEqualTo(Integer value) {
  258. addCriterion("dwxz =", value, "dwxz");
  259. return (Criteria) this;
  260. }
  261. public Criteria andDwxzNotEqualTo(Integer value) {
  262. addCriterion("dwxz <>", value, "dwxz");
  263. return (Criteria) this;
  264. }
  265. public Criteria andDwxzGreaterThan(Integer value) {
  266. addCriterion("dwxz >", value, "dwxz");
  267. return (Criteria) this;
  268. }
  269. public Criteria andDwxzGreaterThanOrEqualTo(Integer value) {
  270. addCriterion("dwxz >=", value, "dwxz");
  271. return (Criteria) this;
  272. }
  273. public Criteria andDwxzLessThan(Integer value) {
  274. addCriterion("dwxz <", value, "dwxz");
  275. return (Criteria) this;
  276. }
  277. public Criteria andDwxzLessThanOrEqualTo(Integer value) {
  278. addCriterion("dwxz <=", value, "dwxz");
  279. return (Criteria) this;
  280. }
  281. public Criteria andDwxzIn(List<Integer> values) {
  282. addCriterion("dwxz in", values, "dwxz");
  283. return (Criteria) this;
  284. }
  285. public Criteria andDwxzNotIn(List<Integer> values) {
  286. addCriterion("dwxz not in", values, "dwxz");
  287. return (Criteria) this;
  288. }
  289. public Criteria andDwxzBetween(Integer value1, Integer value2) {
  290. addCriterion("dwxz between", value1, value2, "dwxz");
  291. return (Criteria) this;
  292. }
  293. public Criteria andDwxzNotBetween(Integer value1, Integer value2) {
  294. addCriterion("dwxz not between", value1, value2, "dwxz");
  295. return (Criteria) this;
  296. }
  297. public Criteria andDwxzValueIsNull() {
  298. addCriterion("dwxz_value is null");
  299. return (Criteria) this;
  300. }
  301. public Criteria andDwxzValueIsNotNull() {
  302. addCriterion("dwxz_value is not null");
  303. return (Criteria) this;
  304. }
  305. public Criteria andDwxzValueEqualTo(String value) {
  306. addCriterion("dwxz_value =", value, "dwxzValue");
  307. return (Criteria) this;
  308. }
  309. public Criteria andDwxzValueNotEqualTo(String value) {
  310. addCriterion("dwxz_value <>", value, "dwxzValue");
  311. return (Criteria) this;
  312. }
  313. public Criteria andDwxzValueGreaterThan(String value) {
  314. addCriterion("dwxz_value >", value, "dwxzValue");
  315. return (Criteria) this;
  316. }
  317. public Criteria andDwxzValueGreaterThanOrEqualTo(String value) {
  318. addCriterion("dwxz_value >=", value, "dwxzValue");
  319. return (Criteria) this;
  320. }
  321. public Criteria andDwxzValueLessThan(String value) {
  322. addCriterion("dwxz_value <", value, "dwxzValue");
  323. return (Criteria) this;
  324. }
  325. public Criteria andDwxzValueLessThanOrEqualTo(String value) {
  326. addCriterion("dwxz_value <=", value, "dwxzValue");
  327. return (Criteria) this;
  328. }
  329. public Criteria andDwxzValueLike(String value) {
  330. addCriterion("dwxz_value like", value, "dwxzValue");
  331. return (Criteria) this;
  332. }
  333. public Criteria andDwxzValueNotLike(String value) {
  334. addCriterion("dwxz_value not like", value, "dwxzValue");
  335. return (Criteria) this;
  336. }
  337. public Criteria andDwxzValueIn(List<String> values) {
  338. addCriterion("dwxz_value in", values, "dwxzValue");
  339. return (Criteria) this;
  340. }
  341. public Criteria andDwxzValueNotIn(List<String> values) {
  342. addCriterion("dwxz_value not in", values, "dwxzValue");
  343. return (Criteria) this;
  344. }
  345. public Criteria andDwxzValueBetween(String value1, String value2) {
  346. addCriterion("dwxz_value between", value1, value2, "dwxzValue");
  347. return (Criteria) this;
  348. }
  349. public Criteria andDwxzValueNotBetween(String value1, String value2) {
  350. addCriterion("dwxz_value not between", value1, value2, "dwxzValue");
  351. return (Criteria) this;
  352. }
  353. public Criteria andHtlyIsNull() {
  354. addCriterion("htly is null");
  355. return (Criteria) this;
  356. }
  357. public Criteria andHtlyIsNotNull() {
  358. addCriterion("htly is not null");
  359. return (Criteria) this;
  360. }
  361. public Criteria andHtlyEqualTo(String value) {
  362. addCriterion("htly =", value, "htly");
  363. return (Criteria) this;
  364. }
  365. public Criteria andHtlyNotEqualTo(String value) {
  366. addCriterion("htly <>", value, "htly");
  367. return (Criteria) this;
  368. }
  369. public Criteria andHtlyGreaterThan(String value) {
  370. addCriterion("htly >", value, "htly");
  371. return (Criteria) this;
  372. }
  373. public Criteria andHtlyGreaterThanOrEqualTo(String value) {
  374. addCriterion("htly >=", value, "htly");
  375. return (Criteria) this;
  376. }
  377. public Criteria andHtlyLessThan(String value) {
  378. addCriterion("htly <", value, "htly");
  379. return (Criteria) this;
  380. }
  381. public Criteria andHtlyLessThanOrEqualTo(String value) {
  382. addCriterion("htly <=", value, "htly");
  383. return (Criteria) this;
  384. }
  385. public Criteria andHtlyLike(String value) {
  386. addCriterion("htly like", value, "htly");
  387. return (Criteria) this;
  388. }
  389. public Criteria andHtlyNotLike(String value) {
  390. addCriterion("htly not like", value, "htly");
  391. return (Criteria) this;
  392. }
  393. public Criteria andHtlyIn(List<String> values) {
  394. addCriterion("htly in", values, "htly");
  395. return (Criteria) this;
  396. }
  397. public Criteria andHtlyNotIn(List<String> values) {
  398. addCriterion("htly not in", values, "htly");
  399. return (Criteria) this;
  400. }
  401. public Criteria andHtlyBetween(String value1, String value2) {
  402. addCriterion("htly between", value1, value2, "htly");
  403. return (Criteria) this;
  404. }
  405. public Criteria andHtlyNotBetween(String value1, String value2) {
  406. addCriterion("htly not between", value1, value2, "htly");
  407. return (Criteria) this;
  408. }
  409. public Criteria andSsszpIsNull() {
  410. addCriterion("ssszp is null");
  411. return (Criteria) this;
  412. }
  413. public Criteria andSsszpIsNotNull() {
  414. addCriterion("ssszp is not null");
  415. return (Criteria) this;
  416. }
  417. public Criteria andSsszpEqualTo(Integer value) {
  418. addCriterion("ssszp =", value, "ssszp");
  419. return (Criteria) this;
  420. }
  421. public Criteria andSsszpNotEqualTo(Integer value) {
  422. addCriterion("ssszp <>", value, "ssszp");
  423. return (Criteria) this;
  424. }
  425. public Criteria andSsszpGreaterThan(Integer value) {
  426. addCriterion("ssszp >", value, "ssszp");
  427. return (Criteria) this;
  428. }
  429. public Criteria andSsszpGreaterThanOrEqualTo(Integer value) {
  430. addCriterion("ssszp >=", value, "ssszp");
  431. return (Criteria) this;
  432. }
  433. public Criteria andSsszpLessThan(Integer value) {
  434. addCriterion("ssszp <", value, "ssszp");
  435. return (Criteria) this;
  436. }
  437. public Criteria andSsszpLessThanOrEqualTo(Integer value) {
  438. addCriterion("ssszp <=", value, "ssszp");
  439. return (Criteria) this;
  440. }
  441. public Criteria andSsszpIn(List<Integer> values) {
  442. addCriterion("ssszp in", values, "ssszp");
  443. return (Criteria) this;
  444. }
  445. public Criteria andSsszpNotIn(List<Integer> values) {
  446. addCriterion("ssszp not in", values, "ssszp");
  447. return (Criteria) this;
  448. }
  449. public Criteria andSsszpBetween(Integer value1, Integer value2) {
  450. addCriterion("ssszp between", value1, value2, "ssszp");
  451. return (Criteria) this;
  452. }
  453. public Criteria andSsszpNotBetween(Integer value1, Integer value2) {
  454. addCriterion("ssszp not between", value1, value2, "ssszp");
  455. return (Criteria) this;
  456. }
  457. public Criteria andSsszcIsNull() {
  458. addCriterion("ssszc is null");
  459. return (Criteria) this;
  460. }
  461. public Criteria andSsszcIsNotNull() {
  462. addCriterion("ssszc is not null");
  463. return (Criteria) this;
  464. }
  465. public Criteria andSsszcEqualTo(Integer value) {
  466. addCriterion("ssszc =", value, "ssszc");
  467. return (Criteria) this;
  468. }
  469. public Criteria andSsszcNotEqualTo(Integer value) {
  470. addCriterion("ssszc <>", value, "ssszc");
  471. return (Criteria) this;
  472. }
  473. public Criteria andSsszcGreaterThan(Integer value) {
  474. addCriterion("ssszc >", value, "ssszc");
  475. return (Criteria) this;
  476. }
  477. public Criteria andSsszcGreaterThanOrEqualTo(Integer value) {
  478. addCriterion("ssszc >=", value, "ssszc");
  479. return (Criteria) this;
  480. }
  481. public Criteria andSsszcLessThan(Integer value) {
  482. addCriterion("ssszc <", value, "ssszc");
  483. return (Criteria) this;
  484. }
  485. public Criteria andSsszcLessThanOrEqualTo(Integer value) {
  486. addCriterion("ssszc <=", value, "ssszc");
  487. return (Criteria) this;
  488. }
  489. public Criteria andSsszcIn(List<Integer> values) {
  490. addCriterion("ssszc in", values, "ssszc");
  491. return (Criteria) this;
  492. }
  493. public Criteria andSsszcNotIn(List<Integer> values) {
  494. addCriterion("ssszc not in", values, "ssszc");
  495. return (Criteria) this;
  496. }
  497. public Criteria andSsszcBetween(Integer value1, Integer value2) {
  498. addCriterion("ssszc between", value1, value2, "ssszc");
  499. return (Criteria) this;
  500. }
  501. public Criteria andSsszcNotBetween(Integer value1, Integer value2) {
  502. addCriterion("ssszc not between", value1, value2, "ssszc");
  503. return (Criteria) this;
  504. }
  505. public Criteria andSsyqIsNull() {
  506. addCriterion("ssyq is null");
  507. return (Criteria) this;
  508. }
  509. public Criteria andSsyqIsNotNull() {
  510. addCriterion("ssyq is not null");
  511. return (Criteria) this;
  512. }
  513. public Criteria andSsyqEqualTo(String value) {
  514. addCriterion("ssyq =", value, "ssyq");
  515. return (Criteria) this;
  516. }
  517. public Criteria andSsyqNotEqualTo(String value) {
  518. addCriterion("ssyq <>", value, "ssyq");
  519. return (Criteria) this;
  520. }
  521. public Criteria andSsyqGreaterThan(String value) {
  522. addCriterion("ssyq >", value, "ssyq");
  523. return (Criteria) this;
  524. }
  525. public Criteria andSsyqGreaterThanOrEqualTo(String value) {
  526. addCriterion("ssyq >=", value, "ssyq");
  527. return (Criteria) this;
  528. }
  529. public Criteria andSsyqLessThan(String value) {
  530. addCriterion("ssyq <", value, "ssyq");
  531. return (Criteria) this;
  532. }
  533. public Criteria andSsyqLessThanOrEqualTo(String value) {
  534. addCriterion("ssyq <=", value, "ssyq");
  535. return (Criteria) this;
  536. }
  537. public Criteria andSsyqLike(String value) {
  538. addCriterion("ssyq like", value, "ssyq");
  539. return (Criteria) this;
  540. }
  541. public Criteria andSsyqNotLike(String value) {
  542. addCriterion("ssyq not like", value, "ssyq");
  543. return (Criteria) this;
  544. }
  545. public Criteria andSsyqIn(List<String> values) {
  546. addCriterion("ssyq in", values, "ssyq");
  547. return (Criteria) this;
  548. }
  549. public Criteria andSsyqNotIn(List<String> values) {
  550. addCriterion("ssyq not in", values, "ssyq");
  551. return (Criteria) this;
  552. }
  553. public Criteria andSsyqBetween(String value1, String value2) {
  554. addCriterion("ssyq between", value1, value2, "ssyq");
  555. return (Criteria) this;
  556. }
  557. public Criteria andSsyqNotBetween(String value1, String value2) {
  558. addCriterion("ssyq not between", value1, value2, "ssyq");
  559. return (Criteria) this;
  560. }
  561. public Criteria andYysjjysptIsNull() {
  562. addCriterion("yysjjyspt is null");
  563. return (Criteria) this;
  564. }
  565. public Criteria andYysjjysptIsNotNull() {
  566. addCriterion("yysjjyspt is not null");
  567. return (Criteria) this;
  568. }
  569. public Criteria andYysjjysptEqualTo(String value) {
  570. addCriterion("yysjjyspt =", value, "yysjjyspt");
  571. return (Criteria) this;
  572. }
  573. public Criteria andYysjjysptNotEqualTo(String value) {
  574. addCriterion("yysjjyspt <>", value, "yysjjyspt");
  575. return (Criteria) this;
  576. }
  577. public Criteria andYysjjysptGreaterThan(String value) {
  578. addCriterion("yysjjyspt >", value, "yysjjyspt");
  579. return (Criteria) this;
  580. }
  581. public Criteria andYysjjysptGreaterThanOrEqualTo(String value) {
  582. addCriterion("yysjjyspt >=", value, "yysjjyspt");
  583. return (Criteria) this;
  584. }
  585. public Criteria andYysjjysptLessThan(String value) {
  586. addCriterion("yysjjyspt <", value, "yysjjyspt");
  587. return (Criteria) this;
  588. }
  589. public Criteria andYysjjysptLessThanOrEqualTo(String value) {
  590. addCriterion("yysjjyspt <=", value, "yysjjyspt");
  591. return (Criteria) this;
  592. }
  593. public Criteria andYysjjysptLike(String value) {
  594. addCriterion("yysjjyspt like", value, "yysjjyspt");
  595. return (Criteria) this;
  596. }
  597. public Criteria andYysjjysptNotLike(String value) {
  598. addCriterion("yysjjyspt not like", value, "yysjjyspt");
  599. return (Criteria) this;
  600. }
  601. public Criteria andYysjjysptIn(List<String> values) {
  602. addCriterion("yysjjyspt in", values, "yysjjyspt");
  603. return (Criteria) this;
  604. }
  605. public Criteria andYysjjysptNotIn(List<String> values) {
  606. addCriterion("yysjjyspt not in", values, "yysjjyspt");
  607. return (Criteria) this;
  608. }
  609. public Criteria andYysjjysptBetween(String value1, String value2) {
  610. addCriterion("yysjjyspt between", value1, value2, "yysjjyspt");
  611. return (Criteria) this;
  612. }
  613. public Criteria andYysjjysptNotBetween(String value1, String value2) {
  614. addCriterion("yysjjyspt not between", value1, value2, "yysjjyspt");
  615. return (Criteria) this;
  616. }
  617. public Criteria andFrdbIsNull() {
  618. addCriterion("frdb is null");
  619. return (Criteria) this;
  620. }
  621. public Criteria andFrdbIsNotNull() {
  622. addCriterion("frdb is not null");
  623. return (Criteria) this;
  624. }
  625. public Criteria andFrdbEqualTo(String value) {
  626. addCriterion("frdb =", value, "frdb");
  627. return (Criteria) this;
  628. }
  629. public Criteria andFrdbNotEqualTo(String value) {
  630. addCriterion("frdb <>", value, "frdb");
  631. return (Criteria) this;
  632. }
  633. public Criteria andFrdbGreaterThan(String value) {
  634. addCriterion("frdb >", value, "frdb");
  635. return (Criteria) this;
  636. }
  637. public Criteria andFrdbGreaterThanOrEqualTo(String value) {
  638. addCriterion("frdb >=", value, "frdb");
  639. return (Criteria) this;
  640. }
  641. public Criteria andFrdbLessThan(String value) {
  642. addCriterion("frdb <", value, "frdb");
  643. return (Criteria) this;
  644. }
  645. public Criteria andFrdbLessThanOrEqualTo(String value) {
  646. addCriterion("frdb <=", value, "frdb");
  647. return (Criteria) this;
  648. }
  649. public Criteria andFrdbLike(String value) {
  650. addCriterion("frdb like", value, "frdb");
  651. return (Criteria) this;
  652. }
  653. public Criteria andFrdbNotLike(String value) {
  654. addCriterion("frdb not like", value, "frdb");
  655. return (Criteria) this;
  656. }
  657. public Criteria andFrdbIn(List<String> values) {
  658. addCriterion("frdb in", values, "frdb");
  659. return (Criteria) this;
  660. }
  661. public Criteria andFrdbNotIn(List<String> values) {
  662. addCriterion("frdb not in", values, "frdb");
  663. return (Criteria) this;
  664. }
  665. public Criteria andFrdbBetween(String value1, String value2) {
  666. addCriterion("frdb between", value1, value2, "frdb");
  667. return (Criteria) this;
  668. }
  669. public Criteria andFrdbNotBetween(String value1, String value2) {
  670. addCriterion("frdb not between", value1, value2, "frdb");
  671. return (Criteria) this;
  672. }
  673. public Criteria andTyshxydmIsNull() {
  674. addCriterion("tyshxydm is null");
  675. return (Criteria) this;
  676. }
  677. public Criteria andTyshxydmIsNotNull() {
  678. addCriterion("tyshxydm is not null");
  679. return (Criteria) this;
  680. }
  681. public Criteria andTyshxydmEqualTo(String value) {
  682. addCriterion("tyshxydm =", value, "tyshxydm");
  683. return (Criteria) this;
  684. }
  685. public Criteria andTyshxydmNotEqualTo(String value) {
  686. addCriterion("tyshxydm <>", value, "tyshxydm");
  687. return (Criteria) this;
  688. }
  689. public Criteria andTyshxydmGreaterThan(String value) {
  690. addCriterion("tyshxydm >", value, "tyshxydm");
  691. return (Criteria) this;
  692. }
  693. public Criteria andTyshxydmGreaterThanOrEqualTo(String value) {
  694. addCriterion("tyshxydm >=", value, "tyshxydm");
  695. return (Criteria) this;
  696. }
  697. public Criteria andTyshxydmLessThan(String value) {
  698. addCriterion("tyshxydm <", value, "tyshxydm");
  699. return (Criteria) this;
  700. }
  701. public Criteria andTyshxydmLessThanOrEqualTo(String value) {
  702. addCriterion("tyshxydm <=", value, "tyshxydm");
  703. return (Criteria) this;
  704. }
  705. public Criteria andTyshxydmLike(String value) {
  706. addCriterion("tyshxydm like", value, "tyshxydm");
  707. return (Criteria) this;
  708. }
  709. public Criteria andTyshxydmNotLike(String value) {
  710. addCriterion("tyshxydm not like", value, "tyshxydm");
  711. return (Criteria) this;
  712. }
  713. public Criteria andTyshxydmIn(List<String> values) {
  714. addCriterion("tyshxydm in", values, "tyshxydm");
  715. return (Criteria) this;
  716. }
  717. public Criteria andTyshxydmNotIn(List<String> values) {
  718. addCriterion("tyshxydm not in", values, "tyshxydm");
  719. return (Criteria) this;
  720. }
  721. public Criteria andTyshxydmBetween(String value1, String value2) {
  722. addCriterion("tyshxydm between", value1, value2, "tyshxydm");
  723. return (Criteria) this;
  724. }
  725. public Criteria andTyshxydmNotBetween(String value1, String value2) {
  726. addCriterion("tyshxydm not between", value1, value2, "tyshxydm");
  727. return (Criteria) this;
  728. }
  729. public Criteria andJjgmIsNull() {
  730. addCriterion("jjgm is null");
  731. return (Criteria) this;
  732. }
  733. public Criteria andJjgmIsNotNull() {
  734. addCriterion("jjgm is not null");
  735. return (Criteria) this;
  736. }
  737. public Criteria andJjgmEqualTo(String value) {
  738. addCriterion("jjgm =", value, "jjgm");
  739. return (Criteria) this;
  740. }
  741. public Criteria andJjgmNotEqualTo(String value) {
  742. addCriterion("jjgm <>", value, "jjgm");
  743. return (Criteria) this;
  744. }
  745. public Criteria andJjgmGreaterThan(String value) {
  746. addCriterion("jjgm >", value, "jjgm");
  747. return (Criteria) this;
  748. }
  749. public Criteria andJjgmGreaterThanOrEqualTo(String value) {
  750. addCriterion("jjgm >=", value, "jjgm");
  751. return (Criteria) this;
  752. }
  753. public Criteria andJjgmLessThan(String value) {
  754. addCriterion("jjgm <", value, "jjgm");
  755. return (Criteria) this;
  756. }
  757. public Criteria andJjgmLessThanOrEqualTo(String value) {
  758. addCriterion("jjgm <=", value, "jjgm");
  759. return (Criteria) this;
  760. }
  761. public Criteria andJjgmLike(String value) {
  762. addCriterion("jjgm like", value, "jjgm");
  763. return (Criteria) this;
  764. }
  765. public Criteria andJjgmNotLike(String value) {
  766. addCriterion("jjgm not like", value, "jjgm");
  767. return (Criteria) this;
  768. }
  769. public Criteria andJjgmIn(List<String> values) {
  770. addCriterion("jjgm in", values, "jjgm");
  771. return (Criteria) this;
  772. }
  773. public Criteria andJjgmNotIn(List<String> values) {
  774. addCriterion("jjgm not in", values, "jjgm");
  775. return (Criteria) this;
  776. }
  777. public Criteria andJjgmBetween(String value1, String value2) {
  778. addCriterion("jjgm between", value1, value2, "jjgm");
  779. return (Criteria) this;
  780. }
  781. public Criteria andJjgmNotBetween(String value1, String value2) {
  782. addCriterion("jjgm not between", value1, value2, "jjgm");
  783. return (Criteria) this;
  784. }
  785. public Criteria andRygmIsNull() {
  786. addCriterion("rygm is null");
  787. return (Criteria) this;
  788. }
  789. public Criteria andRygmIsNotNull() {
  790. addCriterion("rygm is not null");
  791. return (Criteria) this;
  792. }
  793. public Criteria andRygmEqualTo(String value) {
  794. addCriterion("rygm =", value, "rygm");
  795. return (Criteria) this;
  796. }
  797. public Criteria andRygmNotEqualTo(String value) {
  798. addCriterion("rygm <>", value, "rygm");
  799. return (Criteria) this;
  800. }
  801. public Criteria andRygmGreaterThan(String value) {
  802. addCriterion("rygm >", value, "rygm");
  803. return (Criteria) this;
  804. }
  805. public Criteria andRygmGreaterThanOrEqualTo(String value) {
  806. addCriterion("rygm >=", value, "rygm");
  807. return (Criteria) this;
  808. }
  809. public Criteria andRygmLessThan(String value) {
  810. addCriterion("rygm <", value, "rygm");
  811. return (Criteria) this;
  812. }
  813. public Criteria andRygmLessThanOrEqualTo(String value) {
  814. addCriterion("rygm <=", value, "rygm");
  815. return (Criteria) this;
  816. }
  817. public Criteria andRygmLike(String value) {
  818. addCriterion("rygm like", value, "rygm");
  819. return (Criteria) this;
  820. }
  821. public Criteria andRygmNotLike(String value) {
  822. addCriterion("rygm not like", value, "rygm");
  823. return (Criteria) this;
  824. }
  825. public Criteria andRygmIn(List<String> values) {
  826. addCriterion("rygm in", values, "rygm");
  827. return (Criteria) this;
  828. }
  829. public Criteria andRygmNotIn(List<String> values) {
  830. addCriterion("rygm not in", values, "rygm");
  831. return (Criteria) this;
  832. }
  833. public Criteria andRygmBetween(String value1, String value2) {
  834. addCriterion("rygm between", value1, value2, "rygm");
  835. return (Criteria) this;
  836. }
  837. public Criteria andRygmNotBetween(String value1, String value2) {
  838. addCriterion("rygm not between", value1, value2, "rygm");
  839. return (Criteria) this;
  840. }
  841. public Criteria andClsjIsNull() {
  842. addCriterion("clsj is null");
  843. return (Criteria) this;
  844. }
  845. public Criteria andClsjIsNotNull() {
  846. addCriterion("clsj is not null");
  847. return (Criteria) this;
  848. }
  849. public Criteria andClsjEqualTo(String value) {
  850. addCriterion("clsj =", value, "clsj");
  851. return (Criteria) this;
  852. }
  853. public Criteria andClsjNotEqualTo(String value) {
  854. addCriterion("clsj <>", value, "clsj");
  855. return (Criteria) this;
  856. }
  857. public Criteria andClsjGreaterThan(String value) {
  858. addCriterion("clsj >", value, "clsj");
  859. return (Criteria) this;
  860. }
  861. public Criteria andClsjGreaterThanOrEqualTo(String value) {
  862. addCriterion("clsj >=", value, "clsj");
  863. return (Criteria) this;
  864. }
  865. public Criteria andClsjLessThan(String value) {
  866. addCriterion("clsj <", value, "clsj");
  867. return (Criteria) this;
  868. }
  869. public Criteria andClsjLessThanOrEqualTo(String value) {
  870. addCriterion("clsj <=", value, "clsj");
  871. return (Criteria) this;
  872. }
  873. public Criteria andClsjLike(String value) {
  874. addCriterion("clsj like", value, "clsj");
  875. return (Criteria) this;
  876. }
  877. public Criteria andClsjNotLike(String value) {
  878. addCriterion("clsj not like", value, "clsj");
  879. return (Criteria) this;
  880. }
  881. public Criteria andClsjIn(List<String> values) {
  882. addCriterion("clsj in", values, "clsj");
  883. return (Criteria) this;
  884. }
  885. public Criteria andClsjNotIn(List<String> values) {
  886. addCriterion("clsj not in", values, "clsj");
  887. return (Criteria) this;
  888. }
  889. public Criteria andClsjBetween(String value1, String value2) {
  890. addCriterion("clsj between", value1, value2, "clsj");
  891. return (Criteria) this;
  892. }
  893. public Criteria andClsjNotBetween(String value1, String value2) {
  894. addCriterion("clsj not between", value1, value2, "clsj");
  895. return (Criteria) this;
  896. }
  897. public Criteria andZczbIsNull() {
  898. addCriterion("zczb is null");
  899. return (Criteria) this;
  900. }
  901. public Criteria andZczbIsNotNull() {
  902. addCriterion("zczb is not null");
  903. return (Criteria) this;
  904. }
  905. public Criteria andZczbEqualTo(String value) {
  906. addCriterion("zczb =", value, "zczb");
  907. return (Criteria) this;
  908. }
  909. public Criteria andZczbNotEqualTo(String value) {
  910. addCriterion("zczb <>", value, "zczb");
  911. return (Criteria) this;
  912. }
  913. public Criteria andZczbGreaterThan(String value) {
  914. addCriterion("zczb >", value, "zczb");
  915. return (Criteria) this;
  916. }
  917. public Criteria andZczbGreaterThanOrEqualTo(String value) {
  918. addCriterion("zczb >=", value, "zczb");
  919. return (Criteria) this;
  920. }
  921. public Criteria andZczbLessThan(String value) {
  922. addCriterion("zczb <", value, "zczb");
  923. return (Criteria) this;
  924. }
  925. public Criteria andZczbLessThanOrEqualTo(String value) {
  926. addCriterion("zczb <=", value, "zczb");
  927. return (Criteria) this;
  928. }
  929. public Criteria andZczbLike(String value) {
  930. addCriterion("zczb like", value, "zczb");
  931. return (Criteria) this;
  932. }
  933. public Criteria andZczbNotLike(String value) {
  934. addCriterion("zczb not like", value, "zczb");
  935. return (Criteria) this;
  936. }
  937. public Criteria andZczbIn(List<String> values) {
  938. addCriterion("zczb in", values, "zczb");
  939. return (Criteria) this;
  940. }
  941. public Criteria andZczbNotIn(List<String> values) {
  942. addCriterion("zczb not in", values, "zczb");
  943. return (Criteria) this;
  944. }
  945. public Criteria andZczbBetween(String value1, String value2) {
  946. addCriterion("zczb between", value1, value2, "zczb");
  947. return (Criteria) this;
  948. }
  949. public Criteria andZczbNotBetween(String value1, String value2) {
  950. addCriterion("zczb not between", value1, value2, "zczb");
  951. return (Criteria) this;
  952. }
  953. public Criteria andTxdzIsNull() {
  954. addCriterion("txdz is null");
  955. return (Criteria) this;
  956. }
  957. public Criteria andTxdzIsNotNull() {
  958. addCriterion("txdz is not null");
  959. return (Criteria) this;
  960. }
  961. public Criteria andTxdzEqualTo(String value) {
  962. addCriterion("txdz =", value, "txdz");
  963. return (Criteria) this;
  964. }
  965. public Criteria andTxdzNotEqualTo(String value) {
  966. addCriterion("txdz <>", value, "txdz");
  967. return (Criteria) this;
  968. }
  969. public Criteria andTxdzGreaterThan(String value) {
  970. addCriterion("txdz >", value, "txdz");
  971. return (Criteria) this;
  972. }
  973. public Criteria andTxdzGreaterThanOrEqualTo(String value) {
  974. addCriterion("txdz >=", value, "txdz");
  975. return (Criteria) this;
  976. }
  977. public Criteria andTxdzLessThan(String value) {
  978. addCriterion("txdz <", value, "txdz");
  979. return (Criteria) this;
  980. }
  981. public Criteria andTxdzLessThanOrEqualTo(String value) {
  982. addCriterion("txdz <=", value, "txdz");
  983. return (Criteria) this;
  984. }
  985. public Criteria andTxdzLike(String value) {
  986. addCriterion("txdz like", value, "txdz");
  987. return (Criteria) this;
  988. }
  989. public Criteria andTxdzNotLike(String value) {
  990. addCriterion("txdz not like", value, "txdz");
  991. return (Criteria) this;
  992. }
  993. public Criteria andTxdzIn(List<String> values) {
  994. addCriterion("txdz in", values, "txdz");
  995. return (Criteria) this;
  996. }
  997. public Criteria andTxdzNotIn(List<String> values) {
  998. addCriterion("txdz not in", values, "txdz");
  999. return (Criteria) this;
  1000. }
  1001. public Criteria andTxdzBetween(String value1, String value2) {
  1002. addCriterion("txdz between", value1, value2, "txdz");
  1003. return (Criteria) this;
  1004. }
  1005. public Criteria andTxdzNotBetween(String value1, String value2) {
  1006. addCriterion("txdz not between", value1, value2, "txdz");
  1007. return (Criteria) this;
  1008. }
  1009. public Criteria andYbIsNull() {
  1010. addCriterion("yb is null");
  1011. return (Criteria) this;
  1012. }
  1013. public Criteria andYbIsNotNull() {
  1014. addCriterion("yb is not null");
  1015. return (Criteria) this;
  1016. }
  1017. public Criteria andYbEqualTo(String value) {
  1018. addCriterion("yb =", value, "yb");
  1019. return (Criteria) this;
  1020. }
  1021. public Criteria andYbNotEqualTo(String value) {
  1022. addCriterion("yb <>", value, "yb");
  1023. return (Criteria) this;
  1024. }
  1025. public Criteria andYbGreaterThan(String value) {
  1026. addCriterion("yb >", value, "yb");
  1027. return (Criteria) this;
  1028. }
  1029. public Criteria andYbGreaterThanOrEqualTo(String value) {
  1030. addCriterion("yb >=", value, "yb");
  1031. return (Criteria) this;
  1032. }
  1033. public Criteria andYbLessThan(String value) {
  1034. addCriterion("yb <", value, "yb");
  1035. return (Criteria) this;
  1036. }
  1037. public Criteria andYbLessThanOrEqualTo(String value) {
  1038. addCriterion("yb <=", value, "yb");
  1039. return (Criteria) this;
  1040. }
  1041. public Criteria andYbLike(String value) {
  1042. addCriterion("yb like", value, "yb");
  1043. return (Criteria) this;
  1044. }
  1045. public Criteria andYbNotLike(String value) {
  1046. addCriterion("yb not like", value, "yb");
  1047. return (Criteria) this;
  1048. }
  1049. public Criteria andYbIn(List<String> values) {
  1050. addCriterion("yb in", values, "yb");
  1051. return (Criteria) this;
  1052. }
  1053. public Criteria andYbNotIn(List<String> values) {
  1054. addCriterion("yb not in", values, "yb");
  1055. return (Criteria) this;
  1056. }
  1057. public Criteria andYbBetween(String value1, String value2) {
  1058. addCriterion("yb between", value1, value2, "yb");
  1059. return (Criteria) this;
  1060. }
  1061. public Criteria andYbNotBetween(String value1, String value2) {
  1062. addCriterion("yb not between", value1, value2, "yb");
  1063. return (Criteria) this;
  1064. }
  1065. public Criteria andLxrIsNull() {
  1066. addCriterion("lxr is null");
  1067. return (Criteria) this;
  1068. }
  1069. public Criteria andLxrIsNotNull() {
  1070. addCriterion("lxr is not null");
  1071. return (Criteria) this;
  1072. }
  1073. public Criteria andLxrEqualTo(String value) {
  1074. addCriterion("lxr =", value, "lxr");
  1075. return (Criteria) this;
  1076. }
  1077. public Criteria andLxrNotEqualTo(String value) {
  1078. addCriterion("lxr <>", value, "lxr");
  1079. return (Criteria) this;
  1080. }
  1081. public Criteria andLxrGreaterThan(String value) {
  1082. addCriterion("lxr >", value, "lxr");
  1083. return (Criteria) this;
  1084. }
  1085. public Criteria andLxrGreaterThanOrEqualTo(String value) {
  1086. addCriterion("lxr >=", value, "lxr");
  1087. return (Criteria) this;
  1088. }
  1089. public Criteria andLxrLessThan(String value) {
  1090. addCriterion("lxr <", value, "lxr");
  1091. return (Criteria) this;
  1092. }
  1093. public Criteria andLxrLessThanOrEqualTo(String value) {
  1094. addCriterion("lxr <=", value, "lxr");
  1095. return (Criteria) this;
  1096. }
  1097. public Criteria andLxrLike(String value) {
  1098. addCriterion("lxr like", value, "lxr");
  1099. return (Criteria) this;
  1100. }
  1101. public Criteria andLxrNotLike(String value) {
  1102. addCriterion("lxr not like", value, "lxr");
  1103. return (Criteria) this;
  1104. }
  1105. public Criteria andLxrIn(List<String> values) {
  1106. addCriterion("lxr in", values, "lxr");
  1107. return (Criteria) this;
  1108. }
  1109. public Criteria andLxrNotIn(List<String> values) {
  1110. addCriterion("lxr not in", values, "lxr");
  1111. return (Criteria) this;
  1112. }
  1113. public Criteria andLxrBetween(String value1, String value2) {
  1114. addCriterion("lxr between", value1, value2, "lxr");
  1115. return (Criteria) this;
  1116. }
  1117. public Criteria andLxrNotBetween(String value1, String value2) {
  1118. addCriterion("lxr not between", value1, value2, "lxr");
  1119. return (Criteria) this;
  1120. }
  1121. public Criteria andLxdhIsNull() {
  1122. addCriterion("lxdh is null");
  1123. return (Criteria) this;
  1124. }
  1125. public Criteria andLxdhIsNotNull() {
  1126. addCriterion("lxdh is not null");
  1127. return (Criteria) this;
  1128. }
  1129. public Criteria andLxdhEqualTo(String value) {
  1130. addCriterion("lxdh =", value, "lxdh");
  1131. return (Criteria) this;
  1132. }
  1133. public Criteria andLxdhNotEqualTo(String value) {
  1134. addCriterion("lxdh <>", value, "lxdh");
  1135. return (Criteria) this;
  1136. }
  1137. public Criteria andLxdhGreaterThan(String value) {
  1138. addCriterion("lxdh >", value, "lxdh");
  1139. return (Criteria) this;
  1140. }
  1141. public Criteria andLxdhGreaterThanOrEqualTo(String value) {
  1142. addCriterion("lxdh >=", value, "lxdh");
  1143. return (Criteria) this;
  1144. }
  1145. public Criteria andLxdhLessThan(String value) {
  1146. addCriterion("lxdh <", value, "lxdh");
  1147. return (Criteria) this;
  1148. }
  1149. public Criteria andLxdhLessThanOrEqualTo(String value) {
  1150. addCriterion("lxdh <=", value, "lxdh");
  1151. return (Criteria) this;
  1152. }
  1153. public Criteria andLxdhLike(String value) {
  1154. addCriterion("lxdh like", value, "lxdh");
  1155. return (Criteria) this;
  1156. }
  1157. public Criteria andLxdhNotLike(String value) {
  1158. addCriterion("lxdh not like", value, "lxdh");
  1159. return (Criteria) this;
  1160. }
  1161. public Criteria andLxdhIn(List<String> values) {
  1162. addCriterion("lxdh in", values, "lxdh");
  1163. return (Criteria) this;
  1164. }
  1165. public Criteria andLxdhNotIn(List<String> values) {
  1166. addCriterion("lxdh not in", values, "lxdh");
  1167. return (Criteria) this;
  1168. }
  1169. public Criteria andLxdhBetween(String value1, String value2) {
  1170. addCriterion("lxdh between", value1, value2, "lxdh");
  1171. return (Criteria) this;
  1172. }
  1173. public Criteria andLxdhNotBetween(String value1, String value2) {
  1174. addCriterion("lxdh not between", value1, value2, "lxdh");
  1175. return (Criteria) this;
  1176. }
  1177. public Criteria andEmailIsNull() {
  1178. addCriterion("email is null");
  1179. return (Criteria) this;
  1180. }
  1181. public Criteria andEmailIsNotNull() {
  1182. addCriterion("email is not null");
  1183. return (Criteria) this;
  1184. }
  1185. public Criteria andEmailEqualTo(String value) {
  1186. addCriterion("email =", value, "email");
  1187. return (Criteria) this;
  1188. }
  1189. public Criteria andEmailNotEqualTo(String value) {
  1190. addCriterion("email <>", value, "email");
  1191. return (Criteria) this;
  1192. }
  1193. public Criteria andEmailGreaterThan(String value) {
  1194. addCriterion("email >", value, "email");
  1195. return (Criteria) this;
  1196. }
  1197. public Criteria andEmailGreaterThanOrEqualTo(String value) {
  1198. addCriterion("email >=", value, "email");
  1199. return (Criteria) this;
  1200. }
  1201. public Criteria andEmailLessThan(String value) {
  1202. addCriterion("email <", value, "email");
  1203. return (Criteria) this;
  1204. }
  1205. public Criteria andEmailLessThanOrEqualTo(String value) {
  1206. addCriterion("email <=", value, "email");
  1207. return (Criteria) this;
  1208. }
  1209. public Criteria andEmailLike(String value) {
  1210. addCriterion("email like", value, "email");
  1211. return (Criteria) this;
  1212. }
  1213. public Criteria andEmailNotLike(String value) {
  1214. addCriterion("email not like", value, "email");
  1215. return (Criteria) this;
  1216. }
  1217. public Criteria andEmailIn(List<String> values) {
  1218. addCriterion("email in", values, "email");
  1219. return (Criteria) this;
  1220. }
  1221. public Criteria andEmailNotIn(List<String> values) {
  1222. addCriterion("email not in", values, "email");
  1223. return (Criteria) this;
  1224. }
  1225. public Criteria andEmailBetween(String value1, String value2) {
  1226. addCriterion("email between", value1, value2, "email");
  1227. return (Criteria) this;
  1228. }
  1229. public Criteria andEmailNotBetween(String value1, String value2) {
  1230. addCriterion("email not between", value1, value2, "email");
  1231. return (Criteria) this;
  1232. }
  1233. public Criteria andZyywjhxcpIsNull() {
  1234. addCriterion("zyywjhxcp is null");
  1235. return (Criteria) this;
  1236. }
  1237. public Criteria andZyywjhxcpIsNotNull() {
  1238. addCriterion("zyywjhxcp is not null");
  1239. return (Criteria) this;
  1240. }
  1241. public Criteria andZyywjhxcpEqualTo(String value) {
  1242. addCriterion("zyywjhxcp =", value, "zyywjhxcp");
  1243. return (Criteria) this;
  1244. }
  1245. public Criteria andZyywjhxcpNotEqualTo(String value) {
  1246. addCriterion("zyywjhxcp <>", value, "zyywjhxcp");
  1247. return (Criteria) this;
  1248. }
  1249. public Criteria andZyywjhxcpGreaterThan(String value) {
  1250. addCriterion("zyywjhxcp >", value, "zyywjhxcp");
  1251. return (Criteria) this;
  1252. }
  1253. public Criteria andZyywjhxcpGreaterThanOrEqualTo(String value) {
  1254. addCriterion("zyywjhxcp >=", value, "zyywjhxcp");
  1255. return (Criteria) this;
  1256. }
  1257. public Criteria andZyywjhxcpLessThan(String value) {
  1258. addCriterion("zyywjhxcp <", value, "zyywjhxcp");
  1259. return (Criteria) this;
  1260. }
  1261. public Criteria andZyywjhxcpLessThanOrEqualTo(String value) {
  1262. addCriterion("zyywjhxcp <=", value, "zyywjhxcp");
  1263. return (Criteria) this;
  1264. }
  1265. public Criteria andZyywjhxcpLike(String value) {
  1266. addCriterion("zyywjhxcp like", value, "zyywjhxcp");
  1267. return (Criteria) this;
  1268. }
  1269. public Criteria andZyywjhxcpNotLike(String value) {
  1270. addCriterion("zyywjhxcp not like", value, "zyywjhxcp");
  1271. return (Criteria) this;
  1272. }
  1273. public Criteria andZyywjhxcpIn(List<String> values) {
  1274. addCriterion("zyywjhxcp in", values, "zyywjhxcp");
  1275. return (Criteria) this;
  1276. }
  1277. public Criteria andZyywjhxcpNotIn(List<String> values) {
  1278. addCriterion("zyywjhxcp not in", values, "zyywjhxcp");
  1279. return (Criteria) this;
  1280. }
  1281. public Criteria andZyywjhxcpBetween(String value1, String value2) {
  1282. addCriterion("zyywjhxcp between", value1, value2, "zyywjhxcp");
  1283. return (Criteria) this;
  1284. }
  1285. public Criteria andZyywjhxcpNotBetween(String value1, String value2) {
  1286. addCriterion("zyywjhxcp not between", value1, value2, "zyywjhxcp");
  1287. return (Criteria) this;
  1288. }
  1289. public Criteria andNdxmzyywsr18IsNull() {
  1290. addCriterion("ndxmzyywsr18 is null");
  1291. return (Criteria) this;
  1292. }
  1293. public Criteria andNdxmzyywsr18IsNotNull() {
  1294. addCriterion("ndxmzyywsr18 is not null");
  1295. return (Criteria) this;
  1296. }
  1297. public Criteria andNdxmzyywsr18EqualTo(BigDecimal value) {
  1298. addCriterion("ndxmzyywsr18 =", value, "ndxmzyywsr18");
  1299. return (Criteria) this;
  1300. }
  1301. public Criteria andNdxmzyywsr18NotEqualTo(BigDecimal value) {
  1302. addCriterion("ndxmzyywsr18 <>", value, "ndxmzyywsr18");
  1303. return (Criteria) this;
  1304. }
  1305. public Criteria andNdxmzyywsr18GreaterThan(BigDecimal value) {
  1306. addCriterion("ndxmzyywsr18 >", value, "ndxmzyywsr18");
  1307. return (Criteria) this;
  1308. }
  1309. public Criteria andNdxmzyywsr18GreaterThanOrEqualTo(BigDecimal value) {
  1310. addCriterion("ndxmzyywsr18 >=", value, "ndxmzyywsr18");
  1311. return (Criteria) this;
  1312. }
  1313. public Criteria andNdxmzyywsr18LessThan(BigDecimal value) {
  1314. addCriterion("ndxmzyywsr18 <", value, "ndxmzyywsr18");
  1315. return (Criteria) this;
  1316. }
  1317. public Criteria andNdxmzyywsr18LessThanOrEqualTo(BigDecimal value) {
  1318. addCriterion("ndxmzyywsr18 <=", value, "ndxmzyywsr18");
  1319. return (Criteria) this;
  1320. }
  1321. public Criteria andNdxmzyywsr18In(List<BigDecimal> values) {
  1322. addCriterion("ndxmzyywsr18 in", values, "ndxmzyywsr18");
  1323. return (Criteria) this;
  1324. }
  1325. public Criteria andNdxmzyywsr18NotIn(List<BigDecimal> values) {
  1326. addCriterion("ndxmzyywsr18 not in", values, "ndxmzyywsr18");
  1327. return (Criteria) this;
  1328. }
  1329. public Criteria andNdxmzyywsr18Between(BigDecimal value1, BigDecimal value2) {
  1330. addCriterion("ndxmzyywsr18 between", value1, value2, "ndxmzyywsr18");
  1331. return (Criteria) this;
  1332. }
  1333. public Criteria andNdxmzyywsr18NotBetween(BigDecimal value1, BigDecimal value2) {
  1334. addCriterion("ndxmzyywsr18 not between", value1, value2, "ndxmzyywsr18");
  1335. return (Criteria) this;
  1336. }
  1337. public Criteria andNdxmjlr18IsNull() {
  1338. addCriterion("ndxmjlr18 is null");
  1339. return (Criteria) this;
  1340. }
  1341. public Criteria andNdxmjlr18IsNotNull() {
  1342. addCriterion("ndxmjlr18 is not null");
  1343. return (Criteria) this;
  1344. }
  1345. public Criteria andNdxmjlr18EqualTo(BigDecimal value) {
  1346. addCriterion("ndxmjlr18 =", value, "ndxmjlr18");
  1347. return (Criteria) this;
  1348. }
  1349. public Criteria andNdxmjlr18NotEqualTo(BigDecimal value) {
  1350. addCriterion("ndxmjlr18 <>", value, "ndxmjlr18");
  1351. return (Criteria) this;
  1352. }
  1353. public Criteria andNdxmjlr18GreaterThan(BigDecimal value) {
  1354. addCriterion("ndxmjlr18 >", value, "ndxmjlr18");
  1355. return (Criteria) this;
  1356. }
  1357. public Criteria andNdxmjlr18GreaterThanOrEqualTo(BigDecimal value) {
  1358. addCriterion("ndxmjlr18 >=", value, "ndxmjlr18");
  1359. return (Criteria) this;
  1360. }
  1361. public Criteria andNdxmjlr18LessThan(BigDecimal value) {
  1362. addCriterion("ndxmjlr18 <", value, "ndxmjlr18");
  1363. return (Criteria) this;
  1364. }
  1365. public Criteria andNdxmjlr18LessThanOrEqualTo(BigDecimal value) {
  1366. addCriterion("ndxmjlr18 <=", value, "ndxmjlr18");
  1367. return (Criteria) this;
  1368. }
  1369. public Criteria andNdxmjlr18In(List<BigDecimal> values) {
  1370. addCriterion("ndxmjlr18 in", values, "ndxmjlr18");
  1371. return (Criteria) this;
  1372. }
  1373. public Criteria andNdxmjlr18NotIn(List<BigDecimal> values) {
  1374. addCriterion("ndxmjlr18 not in", values, "ndxmjlr18");
  1375. return (Criteria) this;
  1376. }
  1377. public Criteria andNdxmjlr18Between(BigDecimal value1, BigDecimal value2) {
  1378. addCriterion("ndxmjlr18 between", value1, value2, "ndxmjlr18");
  1379. return (Criteria) this;
  1380. }
  1381. public Criteria andNdxmjlr18NotBetween(BigDecimal value1, BigDecimal value2) {
  1382. addCriterion("ndxmjlr18 not between", value1, value2, "ndxmjlr18");
  1383. return (Criteria) this;
  1384. }
  1385. public Criteria andNdxmzyywsr19IsNull() {
  1386. addCriterion("ndxmzyywsr19 is null");
  1387. return (Criteria) this;
  1388. }
  1389. public Criteria andNdxmzyywsr19IsNotNull() {
  1390. addCriterion("ndxmzyywsr19 is not null");
  1391. return (Criteria) this;
  1392. }
  1393. public Criteria andNdxmzyywsr19EqualTo(BigDecimal value) {
  1394. addCriterion("ndxmzyywsr19 =", value, "ndxmzyywsr19");
  1395. return (Criteria) this;
  1396. }
  1397. public Criteria andNdxmzyywsr19NotEqualTo(BigDecimal value) {
  1398. addCriterion("ndxmzyywsr19 <>", value, "ndxmzyywsr19");
  1399. return (Criteria) this;
  1400. }
  1401. public Criteria andNdxmzyywsr19GreaterThan(BigDecimal value) {
  1402. addCriterion("ndxmzyywsr19 >", value, "ndxmzyywsr19");
  1403. return (Criteria) this;
  1404. }
  1405. public Criteria andNdxmzyywsr19GreaterThanOrEqualTo(BigDecimal value) {
  1406. addCriterion("ndxmzyywsr19 >=", value, "ndxmzyywsr19");
  1407. return (Criteria) this;
  1408. }
  1409. public Criteria andNdxmzyywsr19LessThan(BigDecimal value) {
  1410. addCriterion("ndxmzyywsr19 <", value, "ndxmzyywsr19");
  1411. return (Criteria) this;
  1412. }
  1413. public Criteria andNdxmzyywsr19LessThanOrEqualTo(BigDecimal value) {
  1414. addCriterion("ndxmzyywsr19 <=", value, "ndxmzyywsr19");
  1415. return (Criteria) this;
  1416. }
  1417. public Criteria andNdxmzyywsr19In(List<BigDecimal> values) {
  1418. addCriterion("ndxmzyywsr19 in", values, "ndxmzyywsr19");
  1419. return (Criteria) this;
  1420. }
  1421. public Criteria andNdxmzyywsr19NotIn(List<BigDecimal> values) {
  1422. addCriterion("ndxmzyywsr19 not in", values, "ndxmzyywsr19");
  1423. return (Criteria) this;
  1424. }
  1425. public Criteria andNdxmzyywsr19Between(BigDecimal value1, BigDecimal value2) {
  1426. addCriterion("ndxmzyywsr19 between", value1, value2, "ndxmzyywsr19");
  1427. return (Criteria) this;
  1428. }
  1429. public Criteria andNdxmzyywsr19NotBetween(BigDecimal value1, BigDecimal value2) {
  1430. addCriterion("ndxmzyywsr19 not between", value1, value2, "ndxmzyywsr19");
  1431. return (Criteria) this;
  1432. }
  1433. public Criteria andNdxmjlr19IsNull() {
  1434. addCriterion("ndxmjlr19 is null");
  1435. return (Criteria) this;
  1436. }
  1437. public Criteria andNdxmjlr19IsNotNull() {
  1438. addCriterion("ndxmjlr19 is not null");
  1439. return (Criteria) this;
  1440. }
  1441. public Criteria andNdxmjlr19EqualTo(BigDecimal value) {
  1442. addCriterion("ndxmjlr19 =", value, "ndxmjlr19");
  1443. return (Criteria) this;
  1444. }
  1445. public Criteria andNdxmjlr19NotEqualTo(BigDecimal value) {
  1446. addCriterion("ndxmjlr19 <>", value, "ndxmjlr19");
  1447. return (Criteria) this;
  1448. }
  1449. public Criteria andNdxmjlr19GreaterThan(BigDecimal value) {
  1450. addCriterion("ndxmjlr19 >", value, "ndxmjlr19");
  1451. return (Criteria) this;
  1452. }
  1453. public Criteria andNdxmjlr19GreaterThanOrEqualTo(BigDecimal value) {
  1454. addCriterion("ndxmjlr19 >=", value, "ndxmjlr19");
  1455. return (Criteria) this;
  1456. }
  1457. public Criteria andNdxmjlr19LessThan(BigDecimal value) {
  1458. addCriterion("ndxmjlr19 <", value, "ndxmjlr19");
  1459. return (Criteria) this;
  1460. }
  1461. public Criteria andNdxmjlr19LessThanOrEqualTo(BigDecimal value) {
  1462. addCriterion("ndxmjlr19 <=", value, "ndxmjlr19");
  1463. return (Criteria) this;
  1464. }
  1465. public Criteria andNdxmjlr19In(List<BigDecimal> values) {
  1466. addCriterion("ndxmjlr19 in", values, "ndxmjlr19");
  1467. return (Criteria) this;
  1468. }
  1469. public Criteria andNdxmjlr19NotIn(List<BigDecimal> values) {
  1470. addCriterion("ndxmjlr19 not in", values, "ndxmjlr19");
  1471. return (Criteria) this;
  1472. }
  1473. public Criteria andNdxmjlr19Between(BigDecimal value1, BigDecimal value2) {
  1474. addCriterion("ndxmjlr19 between", value1, value2, "ndxmjlr19");
  1475. return (Criteria) this;
  1476. }
  1477. public Criteria andNdxmjlr19NotBetween(BigDecimal value1, BigDecimal value2) {
  1478. addCriterion("ndxmjlr19 not between", value1, value2, "ndxmjlr19");
  1479. return (Criteria) this;
  1480. }
  1481. public Criteria andNdyftrIsNull() {
  1482. addCriterion("ndyftr is null");
  1483. return (Criteria) this;
  1484. }
  1485. public Criteria andNdyftrIsNotNull() {
  1486. addCriterion("ndyftr is not null");
  1487. return (Criteria) this;
  1488. }
  1489. public Criteria andNdyftrEqualTo(Integer value) {
  1490. addCriterion("ndyftr =", value, "ndyftr");
  1491. return (Criteria) this;
  1492. }
  1493. public Criteria andNdyftrNotEqualTo(Integer value) {
  1494. addCriterion("ndyftr <>", value, "ndyftr");
  1495. return (Criteria) this;
  1496. }
  1497. public Criteria andNdyftrGreaterThan(Integer value) {
  1498. addCriterion("ndyftr >", value, "ndyftr");
  1499. return (Criteria) this;
  1500. }
  1501. public Criteria andNdyftrGreaterThanOrEqualTo(Integer value) {
  1502. addCriterion("ndyftr >=", value, "ndyftr");
  1503. return (Criteria) this;
  1504. }
  1505. public Criteria andNdyftrLessThan(Integer value) {
  1506. addCriterion("ndyftr <", value, "ndyftr");
  1507. return (Criteria) this;
  1508. }
  1509. public Criteria andNdyftrLessThanOrEqualTo(Integer value) {
  1510. addCriterion("ndyftr <=", value, "ndyftr");
  1511. return (Criteria) this;
  1512. }
  1513. public Criteria andNdyftrIn(List<Integer> values) {
  1514. addCriterion("ndyftr in", values, "ndyftr");
  1515. return (Criteria) this;
  1516. }
  1517. public Criteria andNdyftrNotIn(List<Integer> values) {
  1518. addCriterion("ndyftr not in", values, "ndyftr");
  1519. return (Criteria) this;
  1520. }
  1521. public Criteria andNdyftrBetween(Integer value1, Integer value2) {
  1522. addCriterion("ndyftr between", value1, value2, "ndyftr");
  1523. return (Criteria) this;
  1524. }
  1525. public Criteria andNdyftrNotBetween(Integer value1, Integer value2) {
  1526. addCriterion("ndyftr not between", value1, value2, "ndyftr");
  1527. return (Criteria) this;
  1528. }
  1529. public Criteria andNdyftrzyysrblIsNull() {
  1530. addCriterion("ndyftrzyysrbl is null");
  1531. return (Criteria) this;
  1532. }
  1533. public Criteria andNdyftrzyysrblIsNotNull() {
  1534. addCriterion("ndyftrzyysrbl is not null");
  1535. return (Criteria) this;
  1536. }
  1537. public Criteria andNdyftrzyysrblEqualTo(Integer value) {
  1538. addCriterion("ndyftrzyysrbl =", value, "ndyftrzyysrbl");
  1539. return (Criteria) this;
  1540. }
  1541. public Criteria andNdyftrzyysrblNotEqualTo(Integer value) {
  1542. addCriterion("ndyftrzyysrbl <>", value, "ndyftrzyysrbl");
  1543. return (Criteria) this;
  1544. }
  1545. public Criteria andNdyftrzyysrblGreaterThan(Integer value) {
  1546. addCriterion("ndyftrzyysrbl >", value, "ndyftrzyysrbl");
  1547. return (Criteria) this;
  1548. }
  1549. public Criteria andNdyftrzyysrblGreaterThanOrEqualTo(Integer value) {
  1550. addCriterion("ndyftrzyysrbl >=", value, "ndyftrzyysrbl");
  1551. return (Criteria) this;
  1552. }
  1553. public Criteria andNdyftrzyysrblLessThan(Integer value) {
  1554. addCriterion("ndyftrzyysrbl <", value, "ndyftrzyysrbl");
  1555. return (Criteria) this;
  1556. }
  1557. public Criteria andNdyftrzyysrblLessThanOrEqualTo(Integer value) {
  1558. addCriterion("ndyftrzyysrbl <=", value, "ndyftrzyysrbl");
  1559. return (Criteria) this;
  1560. }
  1561. public Criteria andNdyftrzyysrblIn(List<Integer> values) {
  1562. addCriterion("ndyftrzyysrbl in", values, "ndyftrzyysrbl");
  1563. return (Criteria) this;
  1564. }
  1565. public Criteria andNdyftrzyysrblNotIn(List<Integer> values) {
  1566. addCriterion("ndyftrzyysrbl not in", values, "ndyftrzyysrbl");
  1567. return (Criteria) this;
  1568. }
  1569. public Criteria andNdyftrzyysrblBetween(Integer value1, Integer value2) {
  1570. addCriterion("ndyftrzyysrbl between", value1, value2, "ndyftrzyysrbl");
  1571. return (Criteria) this;
  1572. }
  1573. public Criteria andNdyftrzyysrblNotBetween(Integer value1, Integer value2) {
  1574. addCriterion("ndyftrzyysrbl not between", value1, value2, "ndyftrzyysrbl");
  1575. return (Criteria) this;
  1576. }
  1577. public Criteria andSfchyhdkIsNull() {
  1578. addCriterion("sfchyhdk is null");
  1579. return (Criteria) this;
  1580. }
  1581. public Criteria andSfchyhdkIsNotNull() {
  1582. addCriterion("sfchyhdk is not null");
  1583. return (Criteria) this;
  1584. }
  1585. public Criteria andSfchyhdkEqualTo(Integer value) {
  1586. addCriterion("sfchyhdk =", value, "sfchyhdk");
  1587. return (Criteria) this;
  1588. }
  1589. public Criteria andSfchyhdkNotEqualTo(Integer value) {
  1590. addCriterion("sfchyhdk <>", value, "sfchyhdk");
  1591. return (Criteria) this;
  1592. }
  1593. public Criteria andSfchyhdkGreaterThan(Integer value) {
  1594. addCriterion("sfchyhdk >", value, "sfchyhdk");
  1595. return (Criteria) this;
  1596. }
  1597. public Criteria andSfchyhdkGreaterThanOrEqualTo(Integer value) {
  1598. addCriterion("sfchyhdk >=", value, "sfchyhdk");
  1599. return (Criteria) this;
  1600. }
  1601. public Criteria andSfchyhdkLessThan(Integer value) {
  1602. addCriterion("sfchyhdk <", value, "sfchyhdk");
  1603. return (Criteria) this;
  1604. }
  1605. public Criteria andSfchyhdkLessThanOrEqualTo(Integer value) {
  1606. addCriterion("sfchyhdk <=", value, "sfchyhdk");
  1607. return (Criteria) this;
  1608. }
  1609. public Criteria andSfchyhdkIn(List<Integer> values) {
  1610. addCriterion("sfchyhdk in", values, "sfchyhdk");
  1611. return (Criteria) this;
  1612. }
  1613. public Criteria andSfchyhdkNotIn(List<Integer> values) {
  1614. addCriterion("sfchyhdk not in", values, "sfchyhdk");
  1615. return (Criteria) this;
  1616. }
  1617. public Criteria andSfchyhdkBetween(Integer value1, Integer value2) {
  1618. addCriterion("sfchyhdk between", value1, value2, "sfchyhdk");
  1619. return (Criteria) this;
  1620. }
  1621. public Criteria andSfchyhdkNotBetween(Integer value1, Integer value2) {
  1622. addCriterion("sfchyhdk not between", value1, value2, "sfchyhdk");
  1623. return (Criteria) this;
  1624. }
  1625. public Criteria andSfchyhdkValueIsNull() {
  1626. addCriterion("sfchyhdk_value is null");
  1627. return (Criteria) this;
  1628. }
  1629. public Criteria andSfchyhdkValueIsNotNull() {
  1630. addCriterion("sfchyhdk_value is not null");
  1631. return (Criteria) this;
  1632. }
  1633. public Criteria andSfchyhdkValueEqualTo(String value) {
  1634. addCriterion("sfchyhdk_value =", value, "sfchyhdkValue");
  1635. return (Criteria) this;
  1636. }
  1637. public Criteria andSfchyhdkValueNotEqualTo(String value) {
  1638. addCriterion("sfchyhdk_value <>", value, "sfchyhdkValue");
  1639. return (Criteria) this;
  1640. }
  1641. public Criteria andSfchyhdkValueGreaterThan(String value) {
  1642. addCriterion("sfchyhdk_value >", value, "sfchyhdkValue");
  1643. return (Criteria) this;
  1644. }
  1645. public Criteria andSfchyhdkValueGreaterThanOrEqualTo(String value) {
  1646. addCriterion("sfchyhdk_value >=", value, "sfchyhdkValue");
  1647. return (Criteria) this;
  1648. }
  1649. public Criteria andSfchyhdkValueLessThan(String value) {
  1650. addCriterion("sfchyhdk_value <", value, "sfchyhdkValue");
  1651. return (Criteria) this;
  1652. }
  1653. public Criteria andSfchyhdkValueLessThanOrEqualTo(String value) {
  1654. addCriterion("sfchyhdk_value <=", value, "sfchyhdkValue");
  1655. return (Criteria) this;
  1656. }
  1657. public Criteria andSfchyhdkValueLike(String value) {
  1658. addCriterion("sfchyhdk_value like", value, "sfchyhdkValue");
  1659. return (Criteria) this;
  1660. }
  1661. public Criteria andSfchyhdkValueNotLike(String value) {
  1662. addCriterion("sfchyhdk_value not like", value, "sfchyhdkValue");
  1663. return (Criteria) this;
  1664. }
  1665. public Criteria andSfchyhdkValueIn(List<String> values) {
  1666. addCriterion("sfchyhdk_value in", values, "sfchyhdkValue");
  1667. return (Criteria) this;
  1668. }
  1669. public Criteria andSfchyhdkValueNotIn(List<String> values) {
  1670. addCriterion("sfchyhdk_value not in", values, "sfchyhdkValue");
  1671. return (Criteria) this;
  1672. }
  1673. public Criteria andSfchyhdkValueBetween(String value1, String value2) {
  1674. addCriterion("sfchyhdk_value between", value1, value2, "sfchyhdkValue");
  1675. return (Criteria) this;
  1676. }
  1677. public Criteria andSfchyhdkValueNotBetween(String value1, String value2) {
  1678. addCriterion("sfchyhdk_value not between", value1, value2, "sfchyhdkValue");
  1679. return (Criteria) this;
  1680. }
  1681. public Criteria andSfwgxjsqyIsNull() {
  1682. addCriterion("sfwgxjsqy is null");
  1683. return (Criteria) this;
  1684. }
  1685. public Criteria andSfwgxjsqyIsNotNull() {
  1686. addCriterion("sfwgxjsqy is not null");
  1687. return (Criteria) this;
  1688. }
  1689. public Criteria andSfwgxjsqyEqualTo(Integer value) {
  1690. addCriterion("sfwgxjsqy =", value, "sfwgxjsqy");
  1691. return (Criteria) this;
  1692. }
  1693. public Criteria andSfwgxjsqyNotEqualTo(Integer value) {
  1694. addCriterion("sfwgxjsqy <>", value, "sfwgxjsqy");
  1695. return (Criteria) this;
  1696. }
  1697. public Criteria andSfwgxjsqyGreaterThan(Integer value) {
  1698. addCriterion("sfwgxjsqy >", value, "sfwgxjsqy");
  1699. return (Criteria) this;
  1700. }
  1701. public Criteria andSfwgxjsqyGreaterThanOrEqualTo(Integer value) {
  1702. addCriterion("sfwgxjsqy >=", value, "sfwgxjsqy");
  1703. return (Criteria) this;
  1704. }
  1705. public Criteria andSfwgxjsqyLessThan(Integer value) {
  1706. addCriterion("sfwgxjsqy <", value, "sfwgxjsqy");
  1707. return (Criteria) this;
  1708. }
  1709. public Criteria andSfwgxjsqyLessThanOrEqualTo(Integer value) {
  1710. addCriterion("sfwgxjsqy <=", value, "sfwgxjsqy");
  1711. return (Criteria) this;
  1712. }
  1713. public Criteria andSfwgxjsqyIn(List<Integer> values) {
  1714. addCriterion("sfwgxjsqy in", values, "sfwgxjsqy");
  1715. return (Criteria) this;
  1716. }
  1717. public Criteria andSfwgxjsqyNotIn(List<Integer> values) {
  1718. addCriterion("sfwgxjsqy not in", values, "sfwgxjsqy");
  1719. return (Criteria) this;
  1720. }
  1721. public Criteria andSfwgxjsqyBetween(Integer value1, Integer value2) {
  1722. addCriterion("sfwgxjsqy between", value1, value2, "sfwgxjsqy");
  1723. return (Criteria) this;
  1724. }
  1725. public Criteria andSfwgxjsqyNotBetween(Integer value1, Integer value2) {
  1726. addCriterion("sfwgxjsqy not between", value1, value2, "sfwgxjsqy");
  1727. return (Criteria) this;
  1728. }
  1729. public Criteria andSfwgxjsqyValueIsNull() {
  1730. addCriterion("sfwgxjsqy_value is null");
  1731. return (Criteria) this;
  1732. }
  1733. public Criteria andSfwgxjsqyValueIsNotNull() {
  1734. addCriterion("sfwgxjsqy_value is not null");
  1735. return (Criteria) this;
  1736. }
  1737. public Criteria andSfwgxjsqyValueEqualTo(String value) {
  1738. addCriterion("sfwgxjsqy_value =", value, "sfwgxjsqyValue");
  1739. return (Criteria) this;
  1740. }
  1741. public Criteria andSfwgxjsqyValueNotEqualTo(String value) {
  1742. addCriterion("sfwgxjsqy_value <>", value, "sfwgxjsqyValue");
  1743. return (Criteria) this;
  1744. }
  1745. public Criteria andSfwgxjsqyValueGreaterThan(String value) {
  1746. addCriterion("sfwgxjsqy_value >", value, "sfwgxjsqyValue");
  1747. return (Criteria) this;
  1748. }
  1749. public Criteria andSfwgxjsqyValueGreaterThanOrEqualTo(String value) {
  1750. addCriterion("sfwgxjsqy_value >=", value, "sfwgxjsqyValue");
  1751. return (Criteria) this;
  1752. }
  1753. public Criteria andSfwgxjsqyValueLessThan(String value) {
  1754. addCriterion("sfwgxjsqy_value <", value, "sfwgxjsqyValue");
  1755. return (Criteria) this;
  1756. }
  1757. public Criteria andSfwgxjsqyValueLessThanOrEqualTo(String value) {
  1758. addCriterion("sfwgxjsqy_value <=", value, "sfwgxjsqyValue");
  1759. return (Criteria) this;
  1760. }
  1761. public Criteria andSfwgxjsqyValueLike(String value) {
  1762. addCriterion("sfwgxjsqy_value like", value, "sfwgxjsqyValue");
  1763. return (Criteria) this;
  1764. }
  1765. public Criteria andSfwgxjsqyValueNotLike(String value) {
  1766. addCriterion("sfwgxjsqy_value not like", value, "sfwgxjsqyValue");
  1767. return (Criteria) this;
  1768. }
  1769. public Criteria andSfwgxjsqyValueIn(List<String> values) {
  1770. addCriterion("sfwgxjsqy_value in", values, "sfwgxjsqyValue");
  1771. return (Criteria) this;
  1772. }
  1773. public Criteria andSfwgxjsqyValueNotIn(List<String> values) {
  1774. addCriterion("sfwgxjsqy_value not in", values, "sfwgxjsqyValue");
  1775. return (Criteria) this;
  1776. }
  1777. public Criteria andSfwgxjsqyValueBetween(String value1, String value2) {
  1778. addCriterion("sfwgxjsqy_value between", value1, value2, "sfwgxjsqyValue");
  1779. return (Criteria) this;
  1780. }
  1781. public Criteria andSfwgxjsqyValueNotBetween(String value1, String value2) {
  1782. addCriterion("sfwgxjsqy_value not between", value1, value2, "sfwgxjsqyValue");
  1783. return (Criteria) this;
  1784. }
  1785. public Criteria andSfwkjxzxqyIsNull() {
  1786. addCriterion("sfwkjxzxqy is null");
  1787. return (Criteria) this;
  1788. }
  1789. public Criteria andSfwkjxzxqyIsNotNull() {
  1790. addCriterion("sfwkjxzxqy is not null");
  1791. return (Criteria) this;
  1792. }
  1793. public Criteria andSfwkjxzxqyEqualTo(Integer value) {
  1794. addCriterion("sfwkjxzxqy =", value, "sfwkjxzxqy");
  1795. return (Criteria) this;
  1796. }
  1797. public Criteria andSfwkjxzxqyNotEqualTo(Integer value) {
  1798. addCriterion("sfwkjxzxqy <>", value, "sfwkjxzxqy");
  1799. return (Criteria) this;
  1800. }
  1801. public Criteria andSfwkjxzxqyGreaterThan(Integer value) {
  1802. addCriterion("sfwkjxzxqy >", value, "sfwkjxzxqy");
  1803. return (Criteria) this;
  1804. }
  1805. public Criteria andSfwkjxzxqyGreaterThanOrEqualTo(Integer value) {
  1806. addCriterion("sfwkjxzxqy >=", value, "sfwkjxzxqy");
  1807. return (Criteria) this;
  1808. }
  1809. public Criteria andSfwkjxzxqyLessThan(Integer value) {
  1810. addCriterion("sfwkjxzxqy <", value, "sfwkjxzxqy");
  1811. return (Criteria) this;
  1812. }
  1813. public Criteria andSfwkjxzxqyLessThanOrEqualTo(Integer value) {
  1814. addCriterion("sfwkjxzxqy <=", value, "sfwkjxzxqy");
  1815. return (Criteria) this;
  1816. }
  1817. public Criteria andSfwkjxzxqyIn(List<Integer> values) {
  1818. addCriterion("sfwkjxzxqy in", values, "sfwkjxzxqy");
  1819. return (Criteria) this;
  1820. }
  1821. public Criteria andSfwkjxzxqyNotIn(List<Integer> values) {
  1822. addCriterion("sfwkjxzxqy not in", values, "sfwkjxzxqy");
  1823. return (Criteria) this;
  1824. }
  1825. public Criteria andSfwkjxzxqyBetween(Integer value1, Integer value2) {
  1826. addCriterion("sfwkjxzxqy between", value1, value2, "sfwkjxzxqy");
  1827. return (Criteria) this;
  1828. }
  1829. public Criteria andSfwkjxzxqyNotBetween(Integer value1, Integer value2) {
  1830. addCriterion("sfwkjxzxqy not between", value1, value2, "sfwkjxzxqy");
  1831. return (Criteria) this;
  1832. }
  1833. public Criteria andSfwkjxzxqyValueIsNull() {
  1834. addCriterion("sfwkjxzxqy_value is null");
  1835. return (Criteria) this;
  1836. }
  1837. public Criteria andSfwkjxzxqyValueIsNotNull() {
  1838. addCriterion("sfwkjxzxqy_value is not null");
  1839. return (Criteria) this;
  1840. }
  1841. public Criteria andSfwkjxzxqyValueEqualTo(String value) {
  1842. addCriterion("sfwkjxzxqy_value =", value, "sfwkjxzxqyValue");
  1843. return (Criteria) this;
  1844. }
  1845. public Criteria andSfwkjxzxqyValueNotEqualTo(String value) {
  1846. addCriterion("sfwkjxzxqy_value <>", value, "sfwkjxzxqyValue");
  1847. return (Criteria) this;
  1848. }
  1849. public Criteria andSfwkjxzxqyValueGreaterThan(String value) {
  1850. addCriterion("sfwkjxzxqy_value >", value, "sfwkjxzxqyValue");
  1851. return (Criteria) this;
  1852. }
  1853. public Criteria andSfwkjxzxqyValueGreaterThanOrEqualTo(String value) {
  1854. addCriterion("sfwkjxzxqy_value >=", value, "sfwkjxzxqyValue");
  1855. return (Criteria) this;
  1856. }
  1857. public Criteria andSfwkjxzxqyValueLessThan(String value) {
  1858. addCriterion("sfwkjxzxqy_value <", value, "sfwkjxzxqyValue");
  1859. return (Criteria) this;
  1860. }
  1861. public Criteria andSfwkjxzxqyValueLessThanOrEqualTo(String value) {
  1862. addCriterion("sfwkjxzxqy_value <=", value, "sfwkjxzxqyValue");
  1863. return (Criteria) this;
  1864. }
  1865. public Criteria andSfwkjxzxqyValueLike(String value) {
  1866. addCriterion("sfwkjxzxqy_value like", value, "sfwkjxzxqyValue");
  1867. return (Criteria) this;
  1868. }
  1869. public Criteria andSfwkjxzxqyValueNotLike(String value) {
  1870. addCriterion("sfwkjxzxqy_value not like", value, "sfwkjxzxqyValue");
  1871. return (Criteria) this;
  1872. }
  1873. public Criteria andSfwkjxzxqyValueIn(List<String> values) {
  1874. addCriterion("sfwkjxzxqy_value in", values, "sfwkjxzxqyValue");
  1875. return (Criteria) this;
  1876. }
  1877. public Criteria andSfwkjxzxqyValueNotIn(List<String> values) {
  1878. addCriterion("sfwkjxzxqy_value not in", values, "sfwkjxzxqyValue");
  1879. return (Criteria) this;
  1880. }
  1881. public Criteria andSfwkjxzxqyValueBetween(String value1, String value2) {
  1882. addCriterion("sfwkjxzxqy_value between", value1, value2, "sfwkjxzxqyValue");
  1883. return (Criteria) this;
  1884. }
  1885. public Criteria andSfwkjxzxqyValueNotBetween(String value1, String value2) {
  1886. addCriterion("sfwkjxzxqy_value not between", value1, value2, "sfwkjxzxqyValue");
  1887. return (Criteria) this;
  1888. }
  1889. public Criteria andZlslIsNull() {
  1890. addCriterion("zlsl is null");
  1891. return (Criteria) this;
  1892. }
  1893. public Criteria andZlslIsNotNull() {
  1894. addCriterion("zlsl is not null");
  1895. return (Criteria) this;
  1896. }
  1897. public Criteria andZlslEqualTo(Integer value) {
  1898. addCriterion("zlsl =", value, "zlsl");
  1899. return (Criteria) this;
  1900. }
  1901. public Criteria andZlslNotEqualTo(Integer value) {
  1902. addCriterion("zlsl <>", value, "zlsl");
  1903. return (Criteria) this;
  1904. }
  1905. public Criteria andZlslGreaterThan(Integer value) {
  1906. addCriterion("zlsl >", value, "zlsl");
  1907. return (Criteria) this;
  1908. }
  1909. public Criteria andZlslGreaterThanOrEqualTo(Integer value) {
  1910. addCriterion("zlsl >=", value, "zlsl");
  1911. return (Criteria) this;
  1912. }
  1913. public Criteria andZlslLessThan(Integer value) {
  1914. addCriterion("zlsl <", value, "zlsl");
  1915. return (Criteria) this;
  1916. }
  1917. public Criteria andZlslLessThanOrEqualTo(Integer value) {
  1918. addCriterion("zlsl <=", value, "zlsl");
  1919. return (Criteria) this;
  1920. }
  1921. public Criteria andZlslIn(List<Integer> values) {
  1922. addCriterion("zlsl in", values, "zlsl");
  1923. return (Criteria) this;
  1924. }
  1925. public Criteria andZlslNotIn(List<Integer> values) {
  1926. addCriterion("zlsl not in", values, "zlsl");
  1927. return (Criteria) this;
  1928. }
  1929. public Criteria andZlslBetween(Integer value1, Integer value2) {
  1930. addCriterion("zlsl between", value1, value2, "zlsl");
  1931. return (Criteria) this;
  1932. }
  1933. public Criteria andZlslNotBetween(Integer value1, Integer value2) {
  1934. addCriterion("zlsl not between", value1, value2, "zlsl");
  1935. return (Criteria) this;
  1936. }
  1937. public Criteria andZlslFmzlIsNull() {
  1938. addCriterion("zlsl_fmzl is null");
  1939. return (Criteria) this;
  1940. }
  1941. public Criteria andZlslFmzlIsNotNull() {
  1942. addCriterion("zlsl_fmzl is not null");
  1943. return (Criteria) this;
  1944. }
  1945. public Criteria andZlslFmzlEqualTo(Integer value) {
  1946. addCriterion("zlsl_fmzl =", value, "zlslFmzl");
  1947. return (Criteria) this;
  1948. }
  1949. public Criteria andZlslFmzlNotEqualTo(Integer value) {
  1950. addCriterion("zlsl_fmzl <>", value, "zlslFmzl");
  1951. return (Criteria) this;
  1952. }
  1953. public Criteria andZlslFmzlGreaterThan(Integer value) {
  1954. addCriterion("zlsl_fmzl >", value, "zlslFmzl");
  1955. return (Criteria) this;
  1956. }
  1957. public Criteria andZlslFmzlGreaterThanOrEqualTo(Integer value) {
  1958. addCriterion("zlsl_fmzl >=", value, "zlslFmzl");
  1959. return (Criteria) this;
  1960. }
  1961. public Criteria andZlslFmzlLessThan(Integer value) {
  1962. addCriterion("zlsl_fmzl <", value, "zlslFmzl");
  1963. return (Criteria) this;
  1964. }
  1965. public Criteria andZlslFmzlLessThanOrEqualTo(Integer value) {
  1966. addCriterion("zlsl_fmzl <=", value, "zlslFmzl");
  1967. return (Criteria) this;
  1968. }
  1969. public Criteria andZlslFmzlIn(List<Integer> values) {
  1970. addCriterion("zlsl_fmzl in", values, "zlslFmzl");
  1971. return (Criteria) this;
  1972. }
  1973. public Criteria andZlslFmzlNotIn(List<Integer> values) {
  1974. addCriterion("zlsl_fmzl not in", values, "zlslFmzl");
  1975. return (Criteria) this;
  1976. }
  1977. public Criteria andZlslFmzlBetween(Integer value1, Integer value2) {
  1978. addCriterion("zlsl_fmzl between", value1, value2, "zlslFmzl");
  1979. return (Criteria) this;
  1980. }
  1981. public Criteria andZlslFmzlNotBetween(Integer value1, Integer value2) {
  1982. addCriterion("zlsl_fmzl not between", value1, value2, "zlslFmzl");
  1983. return (Criteria) this;
  1984. }
  1985. public Criteria andZlslSyxxIsNull() {
  1986. addCriterion("zlsl_syxx is null");
  1987. return (Criteria) this;
  1988. }
  1989. public Criteria andZlslSyxxIsNotNull() {
  1990. addCriterion("zlsl_syxx is not null");
  1991. return (Criteria) this;
  1992. }
  1993. public Criteria andZlslSyxxEqualTo(Integer value) {
  1994. addCriterion("zlsl_syxx =", value, "zlslSyxx");
  1995. return (Criteria) this;
  1996. }
  1997. public Criteria andZlslSyxxNotEqualTo(Integer value) {
  1998. addCriterion("zlsl_syxx <>", value, "zlslSyxx");
  1999. return (Criteria) this;
  2000. }
  2001. public Criteria andZlslSyxxGreaterThan(Integer value) {
  2002. addCriterion("zlsl_syxx >", value, "zlslSyxx");
  2003. return (Criteria) this;
  2004. }
  2005. public Criteria andZlslSyxxGreaterThanOrEqualTo(Integer value) {
  2006. addCriterion("zlsl_syxx >=", value, "zlslSyxx");
  2007. return (Criteria) this;
  2008. }
  2009. public Criteria andZlslSyxxLessThan(Integer value) {
  2010. addCriterion("zlsl_syxx <", value, "zlslSyxx");
  2011. return (Criteria) this;
  2012. }
  2013. public Criteria andZlslSyxxLessThanOrEqualTo(Integer value) {
  2014. addCriterion("zlsl_syxx <=", value, "zlslSyxx");
  2015. return (Criteria) this;
  2016. }
  2017. public Criteria andZlslSyxxIn(List<Integer> values) {
  2018. addCriterion("zlsl_syxx in", values, "zlslSyxx");
  2019. return (Criteria) this;
  2020. }
  2021. public Criteria andZlslSyxxNotIn(List<Integer> values) {
  2022. addCriterion("zlsl_syxx not in", values, "zlslSyxx");
  2023. return (Criteria) this;
  2024. }
  2025. public Criteria andZlslSyxxBetween(Integer value1, Integer value2) {
  2026. addCriterion("zlsl_syxx between", value1, value2, "zlslSyxx");
  2027. return (Criteria) this;
  2028. }
  2029. public Criteria andZlslSyxxNotBetween(Integer value1, Integer value2) {
  2030. addCriterion("zlsl_syxx not between", value1, value2, "zlslSyxx");
  2031. return (Criteria) this;
  2032. }
  2033. public Criteria andSfchkjzxzjIsNull() {
  2034. addCriterion("sfchkjzxzj is null");
  2035. return (Criteria) this;
  2036. }
  2037. public Criteria andSfchkjzxzjIsNotNull() {
  2038. addCriterion("sfchkjzxzj is not null");
  2039. return (Criteria) this;
  2040. }
  2041. public Criteria andSfchkjzxzjEqualTo(Integer value) {
  2042. addCriterion("sfchkjzxzj =", value, "sfchkjzxzj");
  2043. return (Criteria) this;
  2044. }
  2045. public Criteria andSfchkjzxzjNotEqualTo(Integer value) {
  2046. addCriterion("sfchkjzxzj <>", value, "sfchkjzxzj");
  2047. return (Criteria) this;
  2048. }
  2049. public Criteria andSfchkjzxzjGreaterThan(Integer value) {
  2050. addCriterion("sfchkjzxzj >", value, "sfchkjzxzj");
  2051. return (Criteria) this;
  2052. }
  2053. public Criteria andSfchkjzxzjGreaterThanOrEqualTo(Integer value) {
  2054. addCriterion("sfchkjzxzj >=", value, "sfchkjzxzj");
  2055. return (Criteria) this;
  2056. }
  2057. public Criteria andSfchkjzxzjLessThan(Integer value) {
  2058. addCriterion("sfchkjzxzj <", value, "sfchkjzxzj");
  2059. return (Criteria) this;
  2060. }
  2061. public Criteria andSfchkjzxzjLessThanOrEqualTo(Integer value) {
  2062. addCriterion("sfchkjzxzj <=", value, "sfchkjzxzj");
  2063. return (Criteria) this;
  2064. }
  2065. public Criteria andSfchkjzxzjIn(List<Integer> values) {
  2066. addCriterion("sfchkjzxzj in", values, "sfchkjzxzj");
  2067. return (Criteria) this;
  2068. }
  2069. public Criteria andSfchkjzxzjNotIn(List<Integer> values) {
  2070. addCriterion("sfchkjzxzj not in", values, "sfchkjzxzj");
  2071. return (Criteria) this;
  2072. }
  2073. public Criteria andSfchkjzxzjBetween(Integer value1, Integer value2) {
  2074. addCriterion("sfchkjzxzj between", value1, value2, "sfchkjzxzj");
  2075. return (Criteria) this;
  2076. }
  2077. public Criteria andSfchkjzxzjNotBetween(Integer value1, Integer value2) {
  2078. addCriterion("sfchkjzxzj not between", value1, value2, "sfchkjzxzj");
  2079. return (Criteria) this;
  2080. }
  2081. public Criteria andSfycxyzIsNull() {
  2082. addCriterion("sfycxyz is null");
  2083. return (Criteria) this;
  2084. }
  2085. public Criteria andSfycxyzIsNotNull() {
  2086. addCriterion("sfycxyz is not null");
  2087. return (Criteria) this;
  2088. }
  2089. public Criteria andSfycxyzEqualTo(Integer value) {
  2090. addCriterion("sfycxyz =", value, "sfycxyz");
  2091. return (Criteria) this;
  2092. }
  2093. public Criteria andSfycxyzNotEqualTo(Integer value) {
  2094. addCriterion("sfycxyz <>", value, "sfycxyz");
  2095. return (Criteria) this;
  2096. }
  2097. public Criteria andSfycxyzGreaterThan(Integer value) {
  2098. addCriterion("sfycxyz >", value, "sfycxyz");
  2099. return (Criteria) this;
  2100. }
  2101. public Criteria andSfycxyzGreaterThanOrEqualTo(Integer value) {
  2102. addCriterion("sfycxyz >=", value, "sfycxyz");
  2103. return (Criteria) this;
  2104. }
  2105. public Criteria andSfycxyzLessThan(Integer value) {
  2106. addCriterion("sfycxyz <", value, "sfycxyz");
  2107. return (Criteria) this;
  2108. }
  2109. public Criteria andSfycxyzLessThanOrEqualTo(Integer value) {
  2110. addCriterion("sfycxyz <=", value, "sfycxyz");
  2111. return (Criteria) this;
  2112. }
  2113. public Criteria andSfycxyzIn(List<Integer> values) {
  2114. addCriterion("sfycxyz in", values, "sfycxyz");
  2115. return (Criteria) this;
  2116. }
  2117. public Criteria andSfycxyzNotIn(List<Integer> values) {
  2118. addCriterion("sfycxyz not in", values, "sfycxyz");
  2119. return (Criteria) this;
  2120. }
  2121. public Criteria andSfycxyzBetween(Integer value1, Integer value2) {
  2122. addCriterion("sfycxyz between", value1, value2, "sfycxyz");
  2123. return (Criteria) this;
  2124. }
  2125. public Criteria andSfycxyzNotBetween(Integer value1, Integer value2) {
  2126. addCriterion("sfycxyz not between", value1, value2, "sfycxyz");
  2127. return (Criteria) this;
  2128. }
  2129. public Criteria andSfycxyzValueIsNull() {
  2130. addCriterion("sfycxyz_value is null");
  2131. return (Criteria) this;
  2132. }
  2133. public Criteria andSfycxyzValueIsNotNull() {
  2134. addCriterion("sfycxyz_value is not null");
  2135. return (Criteria) this;
  2136. }
  2137. public Criteria andSfycxyzValueEqualTo(String value) {
  2138. addCriterion("sfycxyz_value =", value, "sfycxyzValue");
  2139. return (Criteria) this;
  2140. }
  2141. public Criteria andSfycxyzValueNotEqualTo(String value) {
  2142. addCriterion("sfycxyz_value <>", value, "sfycxyzValue");
  2143. return (Criteria) this;
  2144. }
  2145. public Criteria andSfycxyzValueGreaterThan(String value) {
  2146. addCriterion("sfycxyz_value >", value, "sfycxyzValue");
  2147. return (Criteria) this;
  2148. }
  2149. public Criteria andSfycxyzValueGreaterThanOrEqualTo(String value) {
  2150. addCriterion("sfycxyz_value >=", value, "sfycxyzValue");
  2151. return (Criteria) this;
  2152. }
  2153. public Criteria andSfycxyzValueLessThan(String value) {
  2154. addCriterion("sfycxyz_value <", value, "sfycxyzValue");
  2155. return (Criteria) this;
  2156. }
  2157. public Criteria andSfycxyzValueLessThanOrEqualTo(String value) {
  2158. addCriterion("sfycxyz_value <=", value, "sfycxyzValue");
  2159. return (Criteria) this;
  2160. }
  2161. public Criteria andSfycxyzValueLike(String value) {
  2162. addCriterion("sfycxyz_value like", value, "sfycxyzValue");
  2163. return (Criteria) this;
  2164. }
  2165. public Criteria andSfycxyzValueNotLike(String value) {
  2166. addCriterion("sfycxyz_value not like", value, "sfycxyzValue");
  2167. return (Criteria) this;
  2168. }
  2169. public Criteria andSfycxyzValueIn(List<String> values) {
  2170. addCriterion("sfycxyz_value in", values, "sfycxyzValue");
  2171. return (Criteria) this;
  2172. }
  2173. public Criteria andSfycxyzValueNotIn(List<String> values) {
  2174. addCriterion("sfycxyz_value not in", values, "sfycxyzValue");
  2175. return (Criteria) this;
  2176. }
  2177. public Criteria andSfycxyzValueBetween(String value1, String value2) {
  2178. addCriterion("sfycxyz_value between", value1, value2, "sfycxyzValue");
  2179. return (Criteria) this;
  2180. }
  2181. public Criteria andSfycxyzValueNotBetween(String value1, String value2) {
  2182. addCriterion("sfycxyz_value not between", value1, value2, "sfycxyzValue");
  2183. return (Criteria) this;
  2184. }
  2185. public Criteria andSfyhjgtzztzIsNull() {
  2186. addCriterion("sfyhjgtzztz is null");
  2187. return (Criteria) this;
  2188. }
  2189. public Criteria andSfyhjgtzztzIsNotNull() {
  2190. addCriterion("sfyhjgtzztz is not null");
  2191. return (Criteria) this;
  2192. }
  2193. public Criteria andSfyhjgtzztzEqualTo(String value) {
  2194. addCriterion("sfyhjgtzztz =", value, "sfyhjgtzztz");
  2195. return (Criteria) this;
  2196. }
  2197. public Criteria andSfyhjgtzztzNotEqualTo(String value) {
  2198. addCriterion("sfyhjgtzztz <>", value, "sfyhjgtzztz");
  2199. return (Criteria) this;
  2200. }
  2201. public Criteria andSfyhjgtzztzGreaterThan(String value) {
  2202. addCriterion("sfyhjgtzztz >", value, "sfyhjgtzztz");
  2203. return (Criteria) this;
  2204. }
  2205. public Criteria andSfyhjgtzztzGreaterThanOrEqualTo(String value) {
  2206. addCriterion("sfyhjgtzztz >=", value, "sfyhjgtzztz");
  2207. return (Criteria) this;
  2208. }
  2209. public Criteria andSfyhjgtzztzLessThan(String value) {
  2210. addCriterion("sfyhjgtzztz <", value, "sfyhjgtzztz");
  2211. return (Criteria) this;
  2212. }
  2213. public Criteria andSfyhjgtzztzLessThanOrEqualTo(String value) {
  2214. addCriterion("sfyhjgtzztz <=", value, "sfyhjgtzztz");
  2215. return (Criteria) this;
  2216. }
  2217. public Criteria andSfyhjgtzztzLike(String value) {
  2218. addCriterion("sfyhjgtzztz like", value, "sfyhjgtzztz");
  2219. return (Criteria) this;
  2220. }
  2221. public Criteria andSfyhjgtzztzNotLike(String value) {
  2222. addCriterion("sfyhjgtzztz not like", value, "sfyhjgtzztz");
  2223. return (Criteria) this;
  2224. }
  2225. public Criteria andSfyhjgtzztzIn(List<String> values) {
  2226. addCriterion("sfyhjgtzztz in", values, "sfyhjgtzztz");
  2227. return (Criteria) this;
  2228. }
  2229. public Criteria andSfyhjgtzztzNotIn(List<String> values) {
  2230. addCriterion("sfyhjgtzztz not in", values, "sfyhjgtzztz");
  2231. return (Criteria) this;
  2232. }
  2233. public Criteria andSfyhjgtzztzBetween(String value1, String value2) {
  2234. addCriterion("sfyhjgtzztz between", value1, value2, "sfyhjgtzztz");
  2235. return (Criteria) this;
  2236. }
  2237. public Criteria andSfyhjgtzztzNotBetween(String value1, String value2) {
  2238. addCriterion("sfyhjgtzztz not between", value1, value2, "sfyhjgtzztz");
  2239. return (Criteria) this;
  2240. }
  2241. public Criteria andSfyhjgtzztzValueIsNull() {
  2242. addCriterion("sfyhjgtzztz_value is null");
  2243. return (Criteria) this;
  2244. }
  2245. public Criteria andSfyhjgtzztzValueIsNotNull() {
  2246. addCriterion("sfyhjgtzztz_value is not null");
  2247. return (Criteria) this;
  2248. }
  2249. public Criteria andSfyhjgtzztzValueEqualTo(String value) {
  2250. addCriterion("sfyhjgtzztz_value =", value, "sfyhjgtzztzValue");
  2251. return (Criteria) this;
  2252. }
  2253. public Criteria andSfyhjgtzztzValueNotEqualTo(String value) {
  2254. addCriterion("sfyhjgtzztz_value <>", value, "sfyhjgtzztzValue");
  2255. return (Criteria) this;
  2256. }
  2257. public Criteria andSfyhjgtzztzValueGreaterThan(String value) {
  2258. addCriterion("sfyhjgtzztz_value >", value, "sfyhjgtzztzValue");
  2259. return (Criteria) this;
  2260. }
  2261. public Criteria andSfyhjgtzztzValueGreaterThanOrEqualTo(String value) {
  2262. addCriterion("sfyhjgtzztz_value >=", value, "sfyhjgtzztzValue");
  2263. return (Criteria) this;
  2264. }
  2265. public Criteria andSfyhjgtzztzValueLessThan(String value) {
  2266. addCriterion("sfyhjgtzztz_value <", value, "sfyhjgtzztzValue");
  2267. return (Criteria) this;
  2268. }
  2269. public Criteria andSfyhjgtzztzValueLessThanOrEqualTo(String value) {
  2270. addCriterion("sfyhjgtzztz_value <=", value, "sfyhjgtzztzValue");
  2271. return (Criteria) this;
  2272. }
  2273. public Criteria andSfyhjgtzztzValueLike(String value) {
  2274. addCriterion("sfyhjgtzztz_value like", value, "sfyhjgtzztzValue");
  2275. return (Criteria) this;
  2276. }
  2277. public Criteria andSfyhjgtzztzValueNotLike(String value) {
  2278. addCriterion("sfyhjgtzztz_value not like", value, "sfyhjgtzztzValue");
  2279. return (Criteria) this;
  2280. }
  2281. public Criteria andSfyhjgtzztzValueIn(List<String> values) {
  2282. addCriterion("sfyhjgtzztz_value in", values, "sfyhjgtzztzValue");
  2283. return (Criteria) this;
  2284. }
  2285. public Criteria andSfyhjgtzztzValueNotIn(List<String> values) {
  2286. addCriterion("sfyhjgtzztz_value not in", values, "sfyhjgtzztzValue");
  2287. return (Criteria) this;
  2288. }
  2289. public Criteria andSfyhjgtzztzValueBetween(String value1, String value2) {
  2290. addCriterion("sfyhjgtzztz_value between", value1, value2, "sfyhjgtzztzValue");
  2291. return (Criteria) this;
  2292. }
  2293. public Criteria andSfyhjgtzztzValueNotBetween(String value1, String value2) {
  2294. addCriterion("sfyhjgtzztz_value not between", value1, value2, "sfyhjgtzztzValue");
  2295. return (Criteria) this;
  2296. }
  2297. public Criteria andCgmcIsNull() {
  2298. addCriterion("cgmc is null");
  2299. return (Criteria) this;
  2300. }
  2301. public Criteria andCgmcIsNotNull() {
  2302. addCriterion("cgmc is not null");
  2303. return (Criteria) this;
  2304. }
  2305. public Criteria andCgmcEqualTo(String value) {
  2306. addCriterion("cgmc =", value, "cgmc");
  2307. return (Criteria) this;
  2308. }
  2309. public Criteria andCgmcNotEqualTo(String value) {
  2310. addCriterion("cgmc <>", value, "cgmc");
  2311. return (Criteria) this;
  2312. }
  2313. public Criteria andCgmcGreaterThan(String value) {
  2314. addCriterion("cgmc >", value, "cgmc");
  2315. return (Criteria) this;
  2316. }
  2317. public Criteria andCgmcGreaterThanOrEqualTo(String value) {
  2318. addCriterion("cgmc >=", value, "cgmc");
  2319. return (Criteria) this;
  2320. }
  2321. public Criteria andCgmcLessThan(String value) {
  2322. addCriterion("cgmc <", value, "cgmc");
  2323. return (Criteria) this;
  2324. }
  2325. public Criteria andCgmcLessThanOrEqualTo(String value) {
  2326. addCriterion("cgmc <=", value, "cgmc");
  2327. return (Criteria) this;
  2328. }
  2329. public Criteria andCgmcLike(String value) {
  2330. addCriterion("cgmc like", value, "cgmc");
  2331. return (Criteria) this;
  2332. }
  2333. public Criteria andCgmcNotLike(String value) {
  2334. addCriterion("cgmc not like", value, "cgmc");
  2335. return (Criteria) this;
  2336. }
  2337. public Criteria andCgmcIn(List<String> values) {
  2338. addCriterion("cgmc in", values, "cgmc");
  2339. return (Criteria) this;
  2340. }
  2341. public Criteria andCgmcNotIn(List<String> values) {
  2342. addCriterion("cgmc not in", values, "cgmc");
  2343. return (Criteria) this;
  2344. }
  2345. public Criteria andCgmcBetween(String value1, String value2) {
  2346. addCriterion("cgmc between", value1, value2, "cgmc");
  2347. return (Criteria) this;
  2348. }
  2349. public Criteria andCgmcNotBetween(String value1, String value2) {
  2350. addCriterion("cgmc not between", value1, value2, "cgmc");
  2351. return (Criteria) this;
  2352. }
  2353. public Criteria andCglyIsNull() {
  2354. addCriterion("cgly is null");
  2355. return (Criteria) this;
  2356. }
  2357. public Criteria andCglyIsNotNull() {
  2358. addCriterion("cgly is not null");
  2359. return (Criteria) this;
  2360. }
  2361. public Criteria andCglyEqualTo(Integer value) {
  2362. addCriterion("cgly =", value, "cgly");
  2363. return (Criteria) this;
  2364. }
  2365. public Criteria andCglyNotEqualTo(Integer value) {
  2366. addCriterion("cgly <>", value, "cgly");
  2367. return (Criteria) this;
  2368. }
  2369. public Criteria andCglyGreaterThan(Integer value) {
  2370. addCriterion("cgly >", value, "cgly");
  2371. return (Criteria) this;
  2372. }
  2373. public Criteria andCglyGreaterThanOrEqualTo(Integer value) {
  2374. addCriterion("cgly >=", value, "cgly");
  2375. return (Criteria) this;
  2376. }
  2377. public Criteria andCglyLessThan(Integer value) {
  2378. addCriterion("cgly <", value, "cgly");
  2379. return (Criteria) this;
  2380. }
  2381. public Criteria andCglyLessThanOrEqualTo(Integer value) {
  2382. addCriterion("cgly <=", value, "cgly");
  2383. return (Criteria) this;
  2384. }
  2385. public Criteria andCglyIn(List<Integer> values) {
  2386. addCriterion("cgly in", values, "cgly");
  2387. return (Criteria) this;
  2388. }
  2389. public Criteria andCglyNotIn(List<Integer> values) {
  2390. addCriterion("cgly not in", values, "cgly");
  2391. return (Criteria) this;
  2392. }
  2393. public Criteria andCglyBetween(Integer value1, Integer value2) {
  2394. addCriterion("cgly between", value1, value2, "cgly");
  2395. return (Criteria) this;
  2396. }
  2397. public Criteria andCglyNotBetween(Integer value1, Integer value2) {
  2398. addCriterion("cgly not between", value1, value2, "cgly");
  2399. return (Criteria) this;
  2400. }
  2401. public Criteria andCgsxIsNull() {
  2402. addCriterion("cgsx is null");
  2403. return (Criteria) this;
  2404. }
  2405. public Criteria andCgsxIsNotNull() {
  2406. addCriterion("cgsx is not null");
  2407. return (Criteria) this;
  2408. }
  2409. public Criteria andCgsxEqualTo(String value) {
  2410. addCriterion("cgsx =", value, "cgsx");
  2411. return (Criteria) this;
  2412. }
  2413. public Criteria andCgsxNotEqualTo(String value) {
  2414. addCriterion("cgsx <>", value, "cgsx");
  2415. return (Criteria) this;
  2416. }
  2417. public Criteria andCgsxGreaterThan(String value) {
  2418. addCriterion("cgsx >", value, "cgsx");
  2419. return (Criteria) this;
  2420. }
  2421. public Criteria andCgsxGreaterThanOrEqualTo(String value) {
  2422. addCriterion("cgsx >=", value, "cgsx");
  2423. return (Criteria) this;
  2424. }
  2425. public Criteria andCgsxLessThan(String value) {
  2426. addCriterion("cgsx <", value, "cgsx");
  2427. return (Criteria) this;
  2428. }
  2429. public Criteria andCgsxLessThanOrEqualTo(String value) {
  2430. addCriterion("cgsx <=", value, "cgsx");
  2431. return (Criteria) this;
  2432. }
  2433. public Criteria andCgsxLike(String value) {
  2434. addCriterion("cgsx like", value, "cgsx");
  2435. return (Criteria) this;
  2436. }
  2437. public Criteria andCgsxNotLike(String value) {
  2438. addCriterion("cgsx not like", value, "cgsx");
  2439. return (Criteria) this;
  2440. }
  2441. public Criteria andCgsxIn(List<String> values) {
  2442. addCriterion("cgsx in", values, "cgsx");
  2443. return (Criteria) this;
  2444. }
  2445. public Criteria andCgsxNotIn(List<String> values) {
  2446. addCriterion("cgsx not in", values, "cgsx");
  2447. return (Criteria) this;
  2448. }
  2449. public Criteria andCgsxBetween(String value1, String value2) {
  2450. addCriterion("cgsx between", value1, value2, "cgsx");
  2451. return (Criteria) this;
  2452. }
  2453. public Criteria andCgsxNotBetween(String value1, String value2) {
  2454. addCriterion("cgsx not between", value1, value2, "cgsx");
  2455. return (Criteria) this;
  2456. }
  2457. public Criteria andCgtxxsIsNull() {
  2458. addCriterion("cgtxxs is null");
  2459. return (Criteria) this;
  2460. }
  2461. public Criteria andCgtxxsIsNotNull() {
  2462. addCriterion("cgtxxs is not null");
  2463. return (Criteria) this;
  2464. }
  2465. public Criteria andCgtxxsEqualTo(Integer value) {
  2466. addCriterion("cgtxxs =", value, "cgtxxs");
  2467. return (Criteria) this;
  2468. }
  2469. public Criteria andCgtxxsNotEqualTo(Integer value) {
  2470. addCriterion("cgtxxs <>", value, "cgtxxs");
  2471. return (Criteria) this;
  2472. }
  2473. public Criteria andCgtxxsGreaterThan(Integer value) {
  2474. addCriterion("cgtxxs >", value, "cgtxxs");
  2475. return (Criteria) this;
  2476. }
  2477. public Criteria andCgtxxsGreaterThanOrEqualTo(Integer value) {
  2478. addCriterion("cgtxxs >=", value, "cgtxxs");
  2479. return (Criteria) this;
  2480. }
  2481. public Criteria andCgtxxsLessThan(Integer value) {
  2482. addCriterion("cgtxxs <", value, "cgtxxs");
  2483. return (Criteria) this;
  2484. }
  2485. public Criteria andCgtxxsLessThanOrEqualTo(Integer value) {
  2486. addCriterion("cgtxxs <=", value, "cgtxxs");
  2487. return (Criteria) this;
  2488. }
  2489. public Criteria andCgtxxsIn(List<Integer> values) {
  2490. addCriterion("cgtxxs in", values, "cgtxxs");
  2491. return (Criteria) this;
  2492. }
  2493. public Criteria andCgtxxsNotIn(List<Integer> values) {
  2494. addCriterion("cgtxxs not in", values, "cgtxxs");
  2495. return (Criteria) this;
  2496. }
  2497. public Criteria andCgtxxsBetween(Integer value1, Integer value2) {
  2498. addCriterion("cgtxxs between", value1, value2, "cgtxxs");
  2499. return (Criteria) this;
  2500. }
  2501. public Criteria andCgtxxsNotBetween(Integer value1, Integer value2) {
  2502. addCriterion("cgtxxs not between", value1, value2, "cgtxxs");
  2503. return (Criteria) this;
  2504. }
  2505. public Criteria andCgtxxsValueIsNull() {
  2506. addCriterion("cgtxxs_value is null");
  2507. return (Criteria) this;
  2508. }
  2509. public Criteria andCgtxxsValueIsNotNull() {
  2510. addCriterion("cgtxxs_value is not null");
  2511. return (Criteria) this;
  2512. }
  2513. public Criteria andCgtxxsValueEqualTo(String value) {
  2514. addCriterion("cgtxxs_value =", value, "cgtxxsValue");
  2515. return (Criteria) this;
  2516. }
  2517. public Criteria andCgtxxsValueNotEqualTo(String value) {
  2518. addCriterion("cgtxxs_value <>", value, "cgtxxsValue");
  2519. return (Criteria) this;
  2520. }
  2521. public Criteria andCgtxxsValueGreaterThan(String value) {
  2522. addCriterion("cgtxxs_value >", value, "cgtxxsValue");
  2523. return (Criteria) this;
  2524. }
  2525. public Criteria andCgtxxsValueGreaterThanOrEqualTo(String value) {
  2526. addCriterion("cgtxxs_value >=", value, "cgtxxsValue");
  2527. return (Criteria) this;
  2528. }
  2529. public Criteria andCgtxxsValueLessThan(String value) {
  2530. addCriterion("cgtxxs_value <", value, "cgtxxsValue");
  2531. return (Criteria) this;
  2532. }
  2533. public Criteria andCgtxxsValueLessThanOrEqualTo(String value) {
  2534. addCriterion("cgtxxs_value <=", value, "cgtxxsValue");
  2535. return (Criteria) this;
  2536. }
  2537. public Criteria andCgtxxsValueLike(String value) {
  2538. addCriterion("cgtxxs_value like", value, "cgtxxsValue");
  2539. return (Criteria) this;
  2540. }
  2541. public Criteria andCgtxxsValueNotLike(String value) {
  2542. addCriterion("cgtxxs_value not like", value, "cgtxxsValue");
  2543. return (Criteria) this;
  2544. }
  2545. public Criteria andCgtxxsValueIn(List<String> values) {
  2546. addCriterion("cgtxxs_value in", values, "cgtxxsValue");
  2547. return (Criteria) this;
  2548. }
  2549. public Criteria andCgtxxsValueNotIn(List<String> values) {
  2550. addCriterion("cgtxxs_value not in", values, "cgtxxsValue");
  2551. return (Criteria) this;
  2552. }
  2553. public Criteria andCgtxxsValueBetween(String value1, String value2) {
  2554. addCriterion("cgtxxs_value between", value1, value2, "cgtxxsValue");
  2555. return (Criteria) this;
  2556. }
  2557. public Criteria andCgtxxsValueNotBetween(String value1, String value2) {
  2558. addCriterion("cgtxxs_value not between", value1, value2, "cgtxxsValue");
  2559. return (Criteria) this;
  2560. }
  2561. public Criteria andCgcsdIsNull() {
  2562. addCriterion("cgcsd is null");
  2563. return (Criteria) this;
  2564. }
  2565. public Criteria andCgcsdIsNotNull() {
  2566. addCriterion("cgcsd is not null");
  2567. return (Criteria) this;
  2568. }
  2569. public Criteria andCgcsdEqualTo(Integer value) {
  2570. addCriterion("cgcsd =", value, "cgcsd");
  2571. return (Criteria) this;
  2572. }
  2573. public Criteria andCgcsdNotEqualTo(Integer value) {
  2574. addCriterion("cgcsd <>", value, "cgcsd");
  2575. return (Criteria) this;
  2576. }
  2577. public Criteria andCgcsdGreaterThan(Integer value) {
  2578. addCriterion("cgcsd >", value, "cgcsd");
  2579. return (Criteria) this;
  2580. }
  2581. public Criteria andCgcsdGreaterThanOrEqualTo(Integer value) {
  2582. addCriterion("cgcsd >=", value, "cgcsd");
  2583. return (Criteria) this;
  2584. }
  2585. public Criteria andCgcsdLessThan(Integer value) {
  2586. addCriterion("cgcsd <", value, "cgcsd");
  2587. return (Criteria) this;
  2588. }
  2589. public Criteria andCgcsdLessThanOrEqualTo(Integer value) {
  2590. addCriterion("cgcsd <=", value, "cgcsd");
  2591. return (Criteria) this;
  2592. }
  2593. public Criteria andCgcsdIn(List<Integer> values) {
  2594. addCriterion("cgcsd in", values, "cgcsd");
  2595. return (Criteria) this;
  2596. }
  2597. public Criteria andCgcsdNotIn(List<Integer> values) {
  2598. addCriterion("cgcsd not in", values, "cgcsd");
  2599. return (Criteria) this;
  2600. }
  2601. public Criteria andCgcsdBetween(Integer value1, Integer value2) {
  2602. addCriterion("cgcsd between", value1, value2, "cgcsd");
  2603. return (Criteria) this;
  2604. }
  2605. public Criteria andCgcsdNotBetween(Integer value1, Integer value2) {
  2606. addCriterion("cgcsd not between", value1, value2, "cgcsd");
  2607. return (Criteria) this;
  2608. }
  2609. public Criteria andCgzscqxsIsNull() {
  2610. addCriterion("cgzscqxs is null");
  2611. return (Criteria) this;
  2612. }
  2613. public Criteria andCgzscqxsIsNotNull() {
  2614. addCriterion("cgzscqxs is not null");
  2615. return (Criteria) this;
  2616. }
  2617. public Criteria andCgzscqxsEqualTo(Integer value) {
  2618. addCriterion("cgzscqxs =", value, "cgzscqxs");
  2619. return (Criteria) this;
  2620. }
  2621. public Criteria andCgzscqxsNotEqualTo(Integer value) {
  2622. addCriterion("cgzscqxs <>", value, "cgzscqxs");
  2623. return (Criteria) this;
  2624. }
  2625. public Criteria andCgzscqxsGreaterThan(Integer value) {
  2626. addCriterion("cgzscqxs >", value, "cgzscqxs");
  2627. return (Criteria) this;
  2628. }
  2629. public Criteria andCgzscqxsGreaterThanOrEqualTo(Integer value) {
  2630. addCriterion("cgzscqxs >=", value, "cgzscqxs");
  2631. return (Criteria) this;
  2632. }
  2633. public Criteria andCgzscqxsLessThan(Integer value) {
  2634. addCriterion("cgzscqxs <", value, "cgzscqxs");
  2635. return (Criteria) this;
  2636. }
  2637. public Criteria andCgzscqxsLessThanOrEqualTo(Integer value) {
  2638. addCriterion("cgzscqxs <=", value, "cgzscqxs");
  2639. return (Criteria) this;
  2640. }
  2641. public Criteria andCgzscqxsIn(List<Integer> values) {
  2642. addCriterion("cgzscqxs in", values, "cgzscqxs");
  2643. return (Criteria) this;
  2644. }
  2645. public Criteria andCgzscqxsNotIn(List<Integer> values) {
  2646. addCriterion("cgzscqxs not in", values, "cgzscqxs");
  2647. return (Criteria) this;
  2648. }
  2649. public Criteria andCgzscqxsBetween(Integer value1, Integer value2) {
  2650. addCriterion("cgzscqxs between", value1, value2, "cgzscqxs");
  2651. return (Criteria) this;
  2652. }
  2653. public Criteria andCgzscqxsNotBetween(Integer value1, Integer value2) {
  2654. addCriterion("cgzscqxs not between", value1, value2, "cgzscqxs");
  2655. return (Criteria) this;
  2656. }
  2657. public Criteria andZscqqsIsNull() {
  2658. addCriterion("zscqqs is null");
  2659. return (Criteria) this;
  2660. }
  2661. public Criteria andZscqqsIsNotNull() {
  2662. addCriterion("zscqqs is not null");
  2663. return (Criteria) this;
  2664. }
  2665. public Criteria andZscqqsEqualTo(Integer value) {
  2666. addCriterion("zscqqs =", value, "zscqqs");
  2667. return (Criteria) this;
  2668. }
  2669. public Criteria andZscqqsNotEqualTo(Integer value) {
  2670. addCriterion("zscqqs <>", value, "zscqqs");
  2671. return (Criteria) this;
  2672. }
  2673. public Criteria andZscqqsGreaterThan(Integer value) {
  2674. addCriterion("zscqqs >", value, "zscqqs");
  2675. return (Criteria) this;
  2676. }
  2677. public Criteria andZscqqsGreaterThanOrEqualTo(Integer value) {
  2678. addCriterion("zscqqs >=", value, "zscqqs");
  2679. return (Criteria) this;
  2680. }
  2681. public Criteria andZscqqsLessThan(Integer value) {
  2682. addCriterion("zscqqs <", value, "zscqqs");
  2683. return (Criteria) this;
  2684. }
  2685. public Criteria andZscqqsLessThanOrEqualTo(Integer value) {
  2686. addCriterion("zscqqs <=", value, "zscqqs");
  2687. return (Criteria) this;
  2688. }
  2689. public Criteria andZscqqsIn(List<Integer> values) {
  2690. addCriterion("zscqqs in", values, "zscqqs");
  2691. return (Criteria) this;
  2692. }
  2693. public Criteria andZscqqsNotIn(List<Integer> values) {
  2694. addCriterion("zscqqs not in", values, "zscqqs");
  2695. return (Criteria) this;
  2696. }
  2697. public Criteria andZscqqsBetween(Integer value1, Integer value2) {
  2698. addCriterion("zscqqs between", value1, value2, "zscqqs");
  2699. return (Criteria) this;
  2700. }
  2701. public Criteria andZscqqsNotBetween(Integer value1, Integer value2) {
  2702. addCriterion("zscqqs not between", value1, value2, "zscqqs");
  2703. return (Criteria) this;
  2704. }
  2705. public Criteria andZlztIsNull() {
  2706. addCriterion("zlzt is null");
  2707. return (Criteria) this;
  2708. }
  2709. public Criteria andZlztIsNotNull() {
  2710. addCriterion("zlzt is not null");
  2711. return (Criteria) this;
  2712. }
  2713. public Criteria andZlztEqualTo(Integer value) {
  2714. addCriterion("zlzt =", value, "zlzt");
  2715. return (Criteria) this;
  2716. }
  2717. public Criteria andZlztNotEqualTo(Integer value) {
  2718. addCriterion("zlzt <>", value, "zlzt");
  2719. return (Criteria) this;
  2720. }
  2721. public Criteria andZlztGreaterThan(Integer value) {
  2722. addCriterion("zlzt >", value, "zlzt");
  2723. return (Criteria) this;
  2724. }
  2725. public Criteria andZlztGreaterThanOrEqualTo(Integer value) {
  2726. addCriterion("zlzt >=", value, "zlzt");
  2727. return (Criteria) this;
  2728. }
  2729. public Criteria andZlztLessThan(Integer value) {
  2730. addCriterion("zlzt <", value, "zlzt");
  2731. return (Criteria) this;
  2732. }
  2733. public Criteria andZlztLessThanOrEqualTo(Integer value) {
  2734. addCriterion("zlzt <=", value, "zlzt");
  2735. return (Criteria) this;
  2736. }
  2737. public Criteria andZlztIn(List<Integer> values) {
  2738. addCriterion("zlzt in", values, "zlzt");
  2739. return (Criteria) this;
  2740. }
  2741. public Criteria andZlztNotIn(List<Integer> values) {
  2742. addCriterion("zlzt not in", values, "zlzt");
  2743. return (Criteria) this;
  2744. }
  2745. public Criteria andZlztBetween(Integer value1, Integer value2) {
  2746. addCriterion("zlzt between", value1, value2, "zlzt");
  2747. return (Criteria) this;
  2748. }
  2749. public Criteria andZlztNotBetween(Integer value1, Integer value2) {
  2750. addCriterion("zlzt not between", value1, value2, "zlzt");
  2751. return (Criteria) this;
  2752. }
  2753. public Criteria andCgdjqkIsNull() {
  2754. addCriterion("cgdjqk is null");
  2755. return (Criteria) this;
  2756. }
  2757. public Criteria andCgdjqkIsNotNull() {
  2758. addCriterion("cgdjqk is not null");
  2759. return (Criteria) this;
  2760. }
  2761. public Criteria andCgdjqkEqualTo(Integer value) {
  2762. addCriterion("cgdjqk =", value, "cgdjqk");
  2763. return (Criteria) this;
  2764. }
  2765. public Criteria andCgdjqkNotEqualTo(Integer value) {
  2766. addCriterion("cgdjqk <>", value, "cgdjqk");
  2767. return (Criteria) this;
  2768. }
  2769. public Criteria andCgdjqkGreaterThan(Integer value) {
  2770. addCriterion("cgdjqk >", value, "cgdjqk");
  2771. return (Criteria) this;
  2772. }
  2773. public Criteria andCgdjqkGreaterThanOrEqualTo(Integer value) {
  2774. addCriterion("cgdjqk >=", value, "cgdjqk");
  2775. return (Criteria) this;
  2776. }
  2777. public Criteria andCgdjqkLessThan(Integer value) {
  2778. addCriterion("cgdjqk <", value, "cgdjqk");
  2779. return (Criteria) this;
  2780. }
  2781. public Criteria andCgdjqkLessThanOrEqualTo(Integer value) {
  2782. addCriterion("cgdjqk <=", value, "cgdjqk");
  2783. return (Criteria) this;
  2784. }
  2785. public Criteria andCgdjqkIn(List<Integer> values) {
  2786. addCriterion("cgdjqk in", values, "cgdjqk");
  2787. return (Criteria) this;
  2788. }
  2789. public Criteria andCgdjqkNotIn(List<Integer> values) {
  2790. addCriterion("cgdjqk not in", values, "cgdjqk");
  2791. return (Criteria) this;
  2792. }
  2793. public Criteria andCgdjqkBetween(Integer value1, Integer value2) {
  2794. addCriterion("cgdjqk between", value1, value2, "cgdjqk");
  2795. return (Criteria) this;
  2796. }
  2797. public Criteria andCgdjqkNotBetween(Integer value1, Integer value2) {
  2798. addCriterion("cgdjqk not between", value1, value2, "cgdjqk");
  2799. return (Criteria) this;
  2800. }
  2801. public Criteria andCgdjqkValueIsNull() {
  2802. addCriterion("cgdjqk_value is null");
  2803. return (Criteria) this;
  2804. }
  2805. public Criteria andCgdjqkValueIsNotNull() {
  2806. addCriterion("cgdjqk_value is not null");
  2807. return (Criteria) this;
  2808. }
  2809. public Criteria andCgdjqkValueEqualTo(String value) {
  2810. addCriterion("cgdjqk_value =", value, "cgdjqkValue");
  2811. return (Criteria) this;
  2812. }
  2813. public Criteria andCgdjqkValueNotEqualTo(String value) {
  2814. addCriterion("cgdjqk_value <>", value, "cgdjqkValue");
  2815. return (Criteria) this;
  2816. }
  2817. public Criteria andCgdjqkValueGreaterThan(String value) {
  2818. addCriterion("cgdjqk_value >", value, "cgdjqkValue");
  2819. return (Criteria) this;
  2820. }
  2821. public Criteria andCgdjqkValueGreaterThanOrEqualTo(String value) {
  2822. addCriterion("cgdjqk_value >=", value, "cgdjqkValue");
  2823. return (Criteria) this;
  2824. }
  2825. public Criteria andCgdjqkValueLessThan(String value) {
  2826. addCriterion("cgdjqk_value <", value, "cgdjqkValue");
  2827. return (Criteria) this;
  2828. }
  2829. public Criteria andCgdjqkValueLessThanOrEqualTo(String value) {
  2830. addCriterion("cgdjqk_value <=", value, "cgdjqkValue");
  2831. return (Criteria) this;
  2832. }
  2833. public Criteria andCgdjqkValueLike(String value) {
  2834. addCriterion("cgdjqk_value like", value, "cgdjqkValue");
  2835. return (Criteria) this;
  2836. }
  2837. public Criteria andCgdjqkValueNotLike(String value) {
  2838. addCriterion("cgdjqk_value not like", value, "cgdjqkValue");
  2839. return (Criteria) this;
  2840. }
  2841. public Criteria andCgdjqkValueIn(List<String> values) {
  2842. addCriterion("cgdjqk_value in", values, "cgdjqkValue");
  2843. return (Criteria) this;
  2844. }
  2845. public Criteria andCgdjqkValueNotIn(List<String> values) {
  2846. addCriterion("cgdjqk_value not in", values, "cgdjqkValue");
  2847. return (Criteria) this;
  2848. }
  2849. public Criteria andCgdjqkValueBetween(String value1, String value2) {
  2850. addCriterion("cgdjqk_value between", value1, value2, "cgdjqkValue");
  2851. return (Criteria) this;
  2852. }
  2853. public Criteria andCgdjqkValueNotBetween(String value1, String value2) {
  2854. addCriterion("cgdjqk_value not between", value1, value2, "cgdjqkValue");
  2855. return (Criteria) this;
  2856. }
  2857. public Criteria andNcqcgzyzhfszzzhIsNull() {
  2858. addCriterion("ncqcgzyzhfszzzh is null");
  2859. return (Criteria) this;
  2860. }
  2861. public Criteria andNcqcgzyzhfszzzhIsNotNull() {
  2862. addCriterion("ncqcgzyzhfszzzh is not null");
  2863. return (Criteria) this;
  2864. }
  2865. public Criteria andNcqcgzyzhfszzzhEqualTo(String value) {
  2866. addCriterion("ncqcgzyzhfszzzh =", value, "ncqcgzyzhfszzzh");
  2867. return (Criteria) this;
  2868. }
  2869. public Criteria andNcqcgzyzhfszzzhNotEqualTo(String value) {
  2870. addCriterion("ncqcgzyzhfszzzh <>", value, "ncqcgzyzhfszzzh");
  2871. return (Criteria) this;
  2872. }
  2873. public Criteria andNcqcgzyzhfszzzhGreaterThan(String value) {
  2874. addCriterion("ncqcgzyzhfszzzh >", value, "ncqcgzyzhfszzzh");
  2875. return (Criteria) this;
  2876. }
  2877. public Criteria andNcqcgzyzhfszzzhGreaterThanOrEqualTo(String value) {
  2878. addCriterion("ncqcgzyzhfszzzh >=", value, "ncqcgzyzhfszzzh");
  2879. return (Criteria) this;
  2880. }
  2881. public Criteria andNcqcgzyzhfszzzhLessThan(String value) {
  2882. addCriterion("ncqcgzyzhfszzzh <", value, "ncqcgzyzhfszzzh");
  2883. return (Criteria) this;
  2884. }
  2885. public Criteria andNcqcgzyzhfszzzhLessThanOrEqualTo(String value) {
  2886. addCriterion("ncqcgzyzhfszzzh <=", value, "ncqcgzyzhfszzzh");
  2887. return (Criteria) this;
  2888. }
  2889. public Criteria andNcqcgzyzhfszzzhLike(String value) {
  2890. addCriterion("ncqcgzyzhfszzzh like", value, "ncqcgzyzhfszzzh");
  2891. return (Criteria) this;
  2892. }
  2893. public Criteria andNcqcgzyzhfszzzhNotLike(String value) {
  2894. addCriterion("ncqcgzyzhfszzzh not like", value, "ncqcgzyzhfszzzh");
  2895. return (Criteria) this;
  2896. }
  2897. public Criteria andNcqcgzyzhfszzzhIn(List<String> values) {
  2898. addCriterion("ncqcgzyzhfszzzh in", values, "ncqcgzyzhfszzzh");
  2899. return (Criteria) this;
  2900. }
  2901. public Criteria andNcqcgzyzhfszzzhNotIn(List<String> values) {
  2902. addCriterion("ncqcgzyzhfszzzh not in", values, "ncqcgzyzhfszzzh");
  2903. return (Criteria) this;
  2904. }
  2905. public Criteria andNcqcgzyzhfszzzhBetween(String value1, String value2) {
  2906. addCriterion("ncqcgzyzhfszzzh between", value1, value2, "ncqcgzyzhfszzzh");
  2907. return (Criteria) this;
  2908. }
  2909. public Criteria andNcqcgzyzhfszzzhNotBetween(String value1, String value2) {
  2910. addCriterion("ncqcgzyzhfszzzh not between", value1, value2, "ncqcgzyzhfszzzh");
  2911. return (Criteria) this;
  2912. }
  2913. public Criteria andNcqcgzyzhfshzkfIsNull() {
  2914. addCriterion("ncqcgzyzhfshzkf is null");
  2915. return (Criteria) this;
  2916. }
  2917. public Criteria andNcqcgzyzhfshzkfIsNotNull() {
  2918. addCriterion("ncqcgzyzhfshzkf is not null");
  2919. return (Criteria) this;
  2920. }
  2921. public Criteria andNcqcgzyzhfshzkfEqualTo(String value) {
  2922. addCriterion("ncqcgzyzhfshzkf =", value, "ncqcgzyzhfshzkf");
  2923. return (Criteria) this;
  2924. }
  2925. public Criteria andNcqcgzyzhfshzkfNotEqualTo(String value) {
  2926. addCriterion("ncqcgzyzhfshzkf <>", value, "ncqcgzyzhfshzkf");
  2927. return (Criteria) this;
  2928. }
  2929. public Criteria andNcqcgzyzhfshzkfGreaterThan(String value) {
  2930. addCriterion("ncqcgzyzhfshzkf >", value, "ncqcgzyzhfshzkf");
  2931. return (Criteria) this;
  2932. }
  2933. public Criteria andNcqcgzyzhfshzkfGreaterThanOrEqualTo(String value) {
  2934. addCriterion("ncqcgzyzhfshzkf >=", value, "ncqcgzyzhfshzkf");
  2935. return (Criteria) this;
  2936. }
  2937. public Criteria andNcqcgzyzhfshzkfLessThan(String value) {
  2938. addCriterion("ncqcgzyzhfshzkf <", value, "ncqcgzyzhfshzkf");
  2939. return (Criteria) this;
  2940. }
  2941. public Criteria andNcqcgzyzhfshzkfLessThanOrEqualTo(String value) {
  2942. addCriterion("ncqcgzyzhfshzkf <=", value, "ncqcgzyzhfshzkf");
  2943. return (Criteria) this;
  2944. }
  2945. public Criteria andNcqcgzyzhfshzkfLike(String value) {
  2946. addCriterion("ncqcgzyzhfshzkf like", value, "ncqcgzyzhfshzkf");
  2947. return (Criteria) this;
  2948. }
  2949. public Criteria andNcqcgzyzhfshzkfNotLike(String value) {
  2950. addCriterion("ncqcgzyzhfshzkf not like", value, "ncqcgzyzhfshzkf");
  2951. return (Criteria) this;
  2952. }
  2953. public Criteria andNcqcgzyzhfshzkfIn(List<String> values) {
  2954. addCriterion("ncqcgzyzhfshzkf in", values, "ncqcgzyzhfshzkf");
  2955. return (Criteria) this;
  2956. }
  2957. public Criteria andNcqcgzyzhfshzkfNotIn(List<String> values) {
  2958. addCriterion("ncqcgzyzhfshzkf not in", values, "ncqcgzyzhfshzkf");
  2959. return (Criteria) this;
  2960. }
  2961. public Criteria andNcqcgzyzhfshzkfBetween(String value1, String value2) {
  2962. addCriterion("ncqcgzyzhfshzkf between", value1, value2, "ncqcgzyzhfshzkf");
  2963. return (Criteria) this;
  2964. }
  2965. public Criteria andNcqcgzyzhfshzkfNotBetween(String value1, String value2) {
  2966. addCriterion("ncqcgzyzhfshzkf not between", value1, value2, "ncqcgzyzhfshzkf");
  2967. return (Criteria) this;
  2968. }
  2969. public Criteria andNcqcgzyzhfsjszrIsNull() {
  2970. addCriterion("ncqcgzyzhfsjszr is null");
  2971. return (Criteria) this;
  2972. }
  2973. public Criteria andNcqcgzyzhfsjszrIsNotNull() {
  2974. addCriterion("ncqcgzyzhfsjszr is not null");
  2975. return (Criteria) this;
  2976. }
  2977. public Criteria andNcqcgzyzhfsjszrEqualTo(String value) {
  2978. addCriterion("ncqcgzyzhfsjszr =", value, "ncqcgzyzhfsjszr");
  2979. return (Criteria) this;
  2980. }
  2981. public Criteria andNcqcgzyzhfsjszrNotEqualTo(String value) {
  2982. addCriterion("ncqcgzyzhfsjszr <>", value, "ncqcgzyzhfsjszr");
  2983. return (Criteria) this;
  2984. }
  2985. public Criteria andNcqcgzyzhfsjszrGreaterThan(String value) {
  2986. addCriterion("ncqcgzyzhfsjszr >", value, "ncqcgzyzhfsjszr");
  2987. return (Criteria) this;
  2988. }
  2989. public Criteria andNcqcgzyzhfsjszrGreaterThanOrEqualTo(String value) {
  2990. addCriterion("ncqcgzyzhfsjszr >=", value, "ncqcgzyzhfsjszr");
  2991. return (Criteria) this;
  2992. }
  2993. public Criteria andNcqcgzyzhfsjszrLessThan(String value) {
  2994. addCriterion("ncqcgzyzhfsjszr <", value, "ncqcgzyzhfsjszr");
  2995. return (Criteria) this;
  2996. }
  2997. public Criteria andNcqcgzyzhfsjszrLessThanOrEqualTo(String value) {
  2998. addCriterion("ncqcgzyzhfsjszr <=", value, "ncqcgzyzhfsjszr");
  2999. return (Criteria) this;
  3000. }
  3001. public Criteria andNcqcgzyzhfsjszrLike(String value) {
  3002. addCriterion("ncqcgzyzhfsjszr like", value, "ncqcgzyzhfsjszr");
  3003. return (Criteria) this;
  3004. }
  3005. public Criteria andNcqcgzyzhfsjszrNotLike(String value) {
  3006. addCriterion("ncqcgzyzhfsjszr not like", value, "ncqcgzyzhfsjszr");
  3007. return (Criteria) this;
  3008. }
  3009. public Criteria andNcqcgzyzhfsjszrIn(List<String> values) {
  3010. addCriterion("ncqcgzyzhfsjszr in", values, "ncqcgzyzhfsjszr");
  3011. return (Criteria) this;
  3012. }
  3013. public Criteria andNcqcgzyzhfsjszrNotIn(List<String> values) {
  3014. addCriterion("ncqcgzyzhfsjszr not in", values, "ncqcgzyzhfsjszr");
  3015. return (Criteria) this;
  3016. }
  3017. public Criteria andNcqcgzyzhfsjszrBetween(String value1, String value2) {
  3018. addCriterion("ncqcgzyzhfsjszr between", value1, value2, "ncqcgzyzhfsjszr");
  3019. return (Criteria) this;
  3020. }
  3021. public Criteria andNcqcgzyzhfsjszrNotBetween(String value1, String value2) {
  3022. addCriterion("ncqcgzyzhfsjszr not between", value1, value2, "ncqcgzyzhfsjszr");
  3023. return (Criteria) this;
  3024. }
  3025. public Criteria andYjkzyzhsjIsNull() {
  3026. addCriterion("yjkzyzhsj is null");
  3027. return (Criteria) this;
  3028. }
  3029. public Criteria andYjkzyzhsjIsNotNull() {
  3030. addCriterion("yjkzyzhsj is not null");
  3031. return (Criteria) this;
  3032. }
  3033. public Criteria andYjkzyzhsjEqualTo(Integer value) {
  3034. addCriterion("yjkzyzhsj =", value, "yjkzyzhsj");
  3035. return (Criteria) this;
  3036. }
  3037. public Criteria andYjkzyzhsjNotEqualTo(Integer value) {
  3038. addCriterion("yjkzyzhsj <>", value, "yjkzyzhsj");
  3039. return (Criteria) this;
  3040. }
  3041. public Criteria andYjkzyzhsjGreaterThan(Integer value) {
  3042. addCriterion("yjkzyzhsj >", value, "yjkzyzhsj");
  3043. return (Criteria) this;
  3044. }
  3045. public Criteria andYjkzyzhsjGreaterThanOrEqualTo(Integer value) {
  3046. addCriterion("yjkzyzhsj >=", value, "yjkzyzhsj");
  3047. return (Criteria) this;
  3048. }
  3049. public Criteria andYjkzyzhsjLessThan(Integer value) {
  3050. addCriterion("yjkzyzhsj <", value, "yjkzyzhsj");
  3051. return (Criteria) this;
  3052. }
  3053. public Criteria andYjkzyzhsjLessThanOrEqualTo(Integer value) {
  3054. addCriterion("yjkzyzhsj <=", value, "yjkzyzhsj");
  3055. return (Criteria) this;
  3056. }
  3057. public Criteria andYjkzyzhsjIn(List<Integer> values) {
  3058. addCriterion("yjkzyzhsj in", values, "yjkzyzhsj");
  3059. return (Criteria) this;
  3060. }
  3061. public Criteria andYjkzyzhsjNotIn(List<Integer> values) {
  3062. addCriterion("yjkzyzhsj not in", values, "yjkzyzhsj");
  3063. return (Criteria) this;
  3064. }
  3065. public Criteria andYjkzyzhsjBetween(Integer value1, Integer value2) {
  3066. addCriterion("yjkzyzhsj between", value1, value2, "yjkzyzhsj");
  3067. return (Criteria) this;
  3068. }
  3069. public Criteria andYjkzyzhsjNotBetween(Integer value1, Integer value2) {
  3070. addCriterion("yjkzyzhsj not between", value1, value2, "yjkzyzhsj");
  3071. return (Criteria) this;
  3072. }
  3073. public Criteria andCgjsIsNull() {
  3074. addCriterion("cgjs is null");
  3075. return (Criteria) this;
  3076. }
  3077. public Criteria andCgjsIsNotNull() {
  3078. addCriterion("cgjs is not null");
  3079. return (Criteria) this;
  3080. }
  3081. public Criteria andCgjsEqualTo(String value) {
  3082. addCriterion("cgjs =", value, "cgjs");
  3083. return (Criteria) this;
  3084. }
  3085. public Criteria andCgjsNotEqualTo(String value) {
  3086. addCriterion("cgjs <>", value, "cgjs");
  3087. return (Criteria) this;
  3088. }
  3089. public Criteria andCgjsGreaterThan(String value) {
  3090. addCriterion("cgjs >", value, "cgjs");
  3091. return (Criteria) this;
  3092. }
  3093. public Criteria andCgjsGreaterThanOrEqualTo(String value) {
  3094. addCriterion("cgjs >=", value, "cgjs");
  3095. return (Criteria) this;
  3096. }
  3097. public Criteria andCgjsLessThan(String value) {
  3098. addCriterion("cgjs <", value, "cgjs");
  3099. return (Criteria) this;
  3100. }
  3101. public Criteria andCgjsLessThanOrEqualTo(String value) {
  3102. addCriterion("cgjs <=", value, "cgjs");
  3103. return (Criteria) this;
  3104. }
  3105. public Criteria andCgjsLike(String value) {
  3106. addCriterion("cgjs like", value, "cgjs");
  3107. return (Criteria) this;
  3108. }
  3109. public Criteria andCgjsNotLike(String value) {
  3110. addCriterion("cgjs not like", value, "cgjs");
  3111. return (Criteria) this;
  3112. }
  3113. public Criteria andCgjsIn(List<String> values) {
  3114. addCriterion("cgjs in", values, "cgjs");
  3115. return (Criteria) this;
  3116. }
  3117. public Criteria andCgjsNotIn(List<String> values) {
  3118. addCriterion("cgjs not in", values, "cgjs");
  3119. return (Criteria) this;
  3120. }
  3121. public Criteria andCgjsBetween(String value1, String value2) {
  3122. addCriterion("cgjs between", value1, value2, "cgjs");
  3123. return (Criteria) this;
  3124. }
  3125. public Criteria andCgjsNotBetween(String value1, String value2) {
  3126. addCriterion("cgjs not between", value1, value2, "cgjs");
  3127. return (Criteria) this;
  3128. }
  3129. public Criteria andSfycghzxqIsNull() {
  3130. addCriterion("sfycghzxq is null");
  3131. return (Criteria) this;
  3132. }
  3133. public Criteria andSfycghzxqIsNotNull() {
  3134. addCriterion("sfycghzxq is not null");
  3135. return (Criteria) this;
  3136. }
  3137. public Criteria andSfycghzxqEqualTo(Integer value) {
  3138. addCriterion("sfycghzxq =", value, "sfycghzxq");
  3139. return (Criteria) this;
  3140. }
  3141. public Criteria andSfycghzxqNotEqualTo(Integer value) {
  3142. addCriterion("sfycghzxq <>", value, "sfycghzxq");
  3143. return (Criteria) this;
  3144. }
  3145. public Criteria andSfycghzxqGreaterThan(Integer value) {
  3146. addCriterion("sfycghzxq >", value, "sfycghzxq");
  3147. return (Criteria) this;
  3148. }
  3149. public Criteria andSfycghzxqGreaterThanOrEqualTo(Integer value) {
  3150. addCriterion("sfycghzxq >=", value, "sfycghzxq");
  3151. return (Criteria) this;
  3152. }
  3153. public Criteria andSfycghzxqLessThan(Integer value) {
  3154. addCriterion("sfycghzxq <", value, "sfycghzxq");
  3155. return (Criteria) this;
  3156. }
  3157. public Criteria andSfycghzxqLessThanOrEqualTo(Integer value) {
  3158. addCriterion("sfycghzxq <=", value, "sfycghzxq");
  3159. return (Criteria) this;
  3160. }
  3161. public Criteria andSfycghzxqIn(List<Integer> values) {
  3162. addCriterion("sfycghzxq in", values, "sfycghzxq");
  3163. return (Criteria) this;
  3164. }
  3165. public Criteria andSfycghzxqNotIn(List<Integer> values) {
  3166. addCriterion("sfycghzxq not in", values, "sfycghzxq");
  3167. return (Criteria) this;
  3168. }
  3169. public Criteria andSfycghzxqBetween(Integer value1, Integer value2) {
  3170. addCriterion("sfycghzxq between", value1, value2, "sfycghzxq");
  3171. return (Criteria) this;
  3172. }
  3173. public Criteria andSfycghzxqNotBetween(Integer value1, Integer value2) {
  3174. addCriterion("sfycghzxq not between", value1, value2, "sfycghzxq");
  3175. return (Criteria) this;
  3176. }
  3177. public Criteria andSfyyxhzdwIsNull() {
  3178. addCriterion("sfyyxhzdw is null");
  3179. return (Criteria) this;
  3180. }
  3181. public Criteria andSfyyxhzdwIsNotNull() {
  3182. addCriterion("sfyyxhzdw is not null");
  3183. return (Criteria) this;
  3184. }
  3185. public Criteria andSfyyxhzdwEqualTo(Integer value) {
  3186. addCriterion("sfyyxhzdw =", value, "sfyyxhzdw");
  3187. return (Criteria) this;
  3188. }
  3189. public Criteria andSfyyxhzdwNotEqualTo(Integer value) {
  3190. addCriterion("sfyyxhzdw <>", value, "sfyyxhzdw");
  3191. return (Criteria) this;
  3192. }
  3193. public Criteria andSfyyxhzdwGreaterThan(Integer value) {
  3194. addCriterion("sfyyxhzdw >", value, "sfyyxhzdw");
  3195. return (Criteria) this;
  3196. }
  3197. public Criteria andSfyyxhzdwGreaterThanOrEqualTo(Integer value) {
  3198. addCriterion("sfyyxhzdw >=", value, "sfyyxhzdw");
  3199. return (Criteria) this;
  3200. }
  3201. public Criteria andSfyyxhzdwLessThan(Integer value) {
  3202. addCriterion("sfyyxhzdw <", value, "sfyyxhzdw");
  3203. return (Criteria) this;
  3204. }
  3205. public Criteria andSfyyxhzdwLessThanOrEqualTo(Integer value) {
  3206. addCriterion("sfyyxhzdw <=", value, "sfyyxhzdw");
  3207. return (Criteria) this;
  3208. }
  3209. public Criteria andSfyyxhzdwIn(List<Integer> values) {
  3210. addCriterion("sfyyxhzdw in", values, "sfyyxhzdw");
  3211. return (Criteria) this;
  3212. }
  3213. public Criteria andSfyyxhzdwNotIn(List<Integer> values) {
  3214. addCriterion("sfyyxhzdw not in", values, "sfyyxhzdw");
  3215. return (Criteria) this;
  3216. }
  3217. public Criteria andSfyyxhzdwBetween(Integer value1, Integer value2) {
  3218. addCriterion("sfyyxhzdw between", value1, value2, "sfyyxhzdw");
  3219. return (Criteria) this;
  3220. }
  3221. public Criteria andSfyyxhzdwNotBetween(Integer value1, Integer value2) {
  3222. addCriterion("sfyyxhzdw not between", value1, value2, "sfyyxhzdw");
  3223. return (Criteria) this;
  3224. }
  3225. public Criteria andSfyyxhzdwValueIsNull() {
  3226. addCriterion("sfyyxhzdw_value is null");
  3227. return (Criteria) this;
  3228. }
  3229. public Criteria andSfyyxhzdwValueIsNotNull() {
  3230. addCriterion("sfyyxhzdw_value is not null");
  3231. return (Criteria) this;
  3232. }
  3233. public Criteria andSfyyxhzdwValueEqualTo(String value) {
  3234. addCriterion("sfyyxhzdw_value =", value, "sfyyxhzdwValue");
  3235. return (Criteria) this;
  3236. }
  3237. public Criteria andSfyyxhzdwValueNotEqualTo(String value) {
  3238. addCriterion("sfyyxhzdw_value <>", value, "sfyyxhzdwValue");
  3239. return (Criteria) this;
  3240. }
  3241. public Criteria andSfyyxhzdwValueGreaterThan(String value) {
  3242. addCriterion("sfyyxhzdw_value >", value, "sfyyxhzdwValue");
  3243. return (Criteria) this;
  3244. }
  3245. public Criteria andSfyyxhzdwValueGreaterThanOrEqualTo(String value) {
  3246. addCriterion("sfyyxhzdw_value >=", value, "sfyyxhzdwValue");
  3247. return (Criteria) this;
  3248. }
  3249. public Criteria andSfyyxhzdwValueLessThan(String value) {
  3250. addCriterion("sfyyxhzdw_value <", value, "sfyyxhzdwValue");
  3251. return (Criteria) this;
  3252. }
  3253. public Criteria andSfyyxhzdwValueLessThanOrEqualTo(String value) {
  3254. addCriterion("sfyyxhzdw_value <=", value, "sfyyxhzdwValue");
  3255. return (Criteria) this;
  3256. }
  3257. public Criteria andSfyyxhzdwValueLike(String value) {
  3258. addCriterion("sfyyxhzdw_value like", value, "sfyyxhzdwValue");
  3259. return (Criteria) this;
  3260. }
  3261. public Criteria andSfyyxhzdwValueNotLike(String value) {
  3262. addCriterion("sfyyxhzdw_value not like", value, "sfyyxhzdwValue");
  3263. return (Criteria) this;
  3264. }
  3265. public Criteria andSfyyxhzdwValueIn(List<String> values) {
  3266. addCriterion("sfyyxhzdw_value in", values, "sfyyxhzdwValue");
  3267. return (Criteria) this;
  3268. }
  3269. public Criteria andSfyyxhzdwValueNotIn(List<String> values) {
  3270. addCriterion("sfyyxhzdw_value not in", values, "sfyyxhzdwValue");
  3271. return (Criteria) this;
  3272. }
  3273. public Criteria andSfyyxhzdwValueBetween(String value1, String value2) {
  3274. addCriterion("sfyyxhzdw_value between", value1, value2, "sfyyxhzdwValue");
  3275. return (Criteria) this;
  3276. }
  3277. public Criteria andSfyyxhzdwValueNotBetween(String value1, String value2) {
  3278. addCriterion("sfyyxhzdw_value not between", value1, value2, "sfyyxhzdwValue");
  3279. return (Criteria) this;
  3280. }
  3281. public Criteria andYxhzfsIsNull() {
  3282. addCriterion("yxhzfs is null");
  3283. return (Criteria) this;
  3284. }
  3285. public Criteria andYxhzfsIsNotNull() {
  3286. addCriterion("yxhzfs is not null");
  3287. return (Criteria) this;
  3288. }
  3289. public Criteria andYxhzfsEqualTo(Integer value) {
  3290. addCriterion("yxhzfs =", value, "yxhzfs");
  3291. return (Criteria) this;
  3292. }
  3293. public Criteria andYxhzfsNotEqualTo(Integer value) {
  3294. addCriterion("yxhzfs <>", value, "yxhzfs");
  3295. return (Criteria) this;
  3296. }
  3297. public Criteria andYxhzfsGreaterThan(Integer value) {
  3298. addCriterion("yxhzfs >", value, "yxhzfs");
  3299. return (Criteria) this;
  3300. }
  3301. public Criteria andYxhzfsGreaterThanOrEqualTo(Integer value) {
  3302. addCriterion("yxhzfs >=", value, "yxhzfs");
  3303. return (Criteria) this;
  3304. }
  3305. public Criteria andYxhzfsLessThan(Integer value) {
  3306. addCriterion("yxhzfs <", value, "yxhzfs");
  3307. return (Criteria) this;
  3308. }
  3309. public Criteria andYxhzfsLessThanOrEqualTo(Integer value) {
  3310. addCriterion("yxhzfs <=", value, "yxhzfs");
  3311. return (Criteria) this;
  3312. }
  3313. public Criteria andYxhzfsIn(List<Integer> values) {
  3314. addCriterion("yxhzfs in", values, "yxhzfs");
  3315. return (Criteria) this;
  3316. }
  3317. public Criteria andYxhzfsNotIn(List<Integer> values) {
  3318. addCriterion("yxhzfs not in", values, "yxhzfs");
  3319. return (Criteria) this;
  3320. }
  3321. public Criteria andYxhzfsBetween(Integer value1, Integer value2) {
  3322. addCriterion("yxhzfs between", value1, value2, "yxhzfs");
  3323. return (Criteria) this;
  3324. }
  3325. public Criteria andYxhzfsNotBetween(Integer value1, Integer value2) {
  3326. addCriterion("yxhzfs not between", value1, value2, "yxhzfs");
  3327. return (Criteria) this;
  3328. }
  3329. public Criteria andYxhzfsValueIsNull() {
  3330. addCriterion("yxhzfs_value is null");
  3331. return (Criteria) this;
  3332. }
  3333. public Criteria andYxhzfsValueIsNotNull() {
  3334. addCriterion("yxhzfs_value is not null");
  3335. return (Criteria) this;
  3336. }
  3337. public Criteria andYxhzfsValueEqualTo(String value) {
  3338. addCriterion("yxhzfs_value =", value, "yxhzfsValue");
  3339. return (Criteria) this;
  3340. }
  3341. public Criteria andYxhzfsValueNotEqualTo(String value) {
  3342. addCriterion("yxhzfs_value <>", value, "yxhzfsValue");
  3343. return (Criteria) this;
  3344. }
  3345. public Criteria andYxhzfsValueGreaterThan(String value) {
  3346. addCriterion("yxhzfs_value >", value, "yxhzfsValue");
  3347. return (Criteria) this;
  3348. }
  3349. public Criteria andYxhzfsValueGreaterThanOrEqualTo(String value) {
  3350. addCriterion("yxhzfs_value >=", value, "yxhzfsValue");
  3351. return (Criteria) this;
  3352. }
  3353. public Criteria andYxhzfsValueLessThan(String value) {
  3354. addCriterion("yxhzfs_value <", value, "yxhzfsValue");
  3355. return (Criteria) this;
  3356. }
  3357. public Criteria andYxhzfsValueLessThanOrEqualTo(String value) {
  3358. addCriterion("yxhzfs_value <=", value, "yxhzfsValue");
  3359. return (Criteria) this;
  3360. }
  3361. public Criteria andYxhzfsValueLike(String value) {
  3362. addCriterion("yxhzfs_value like", value, "yxhzfsValue");
  3363. return (Criteria) this;
  3364. }
  3365. public Criteria andYxhzfsValueNotLike(String value) {
  3366. addCriterion("yxhzfs_value not like", value, "yxhzfsValue");
  3367. return (Criteria) this;
  3368. }
  3369. public Criteria andYxhzfsValueIn(List<String> values) {
  3370. addCriterion("yxhzfs_value in", values, "yxhzfsValue");
  3371. return (Criteria) this;
  3372. }
  3373. public Criteria andYxhzfsValueNotIn(List<String> values) {
  3374. addCriterion("yxhzfs_value not in", values, "yxhzfsValue");
  3375. return (Criteria) this;
  3376. }
  3377. public Criteria andYxhzfsValueBetween(String value1, String value2) {
  3378. addCriterion("yxhzfs_value between", value1, value2, "yxhzfsValue");
  3379. return (Criteria) this;
  3380. }
  3381. public Criteria andYxhzfsValueNotBetween(String value1, String value2) {
  3382. addCriterion("yxhzfs_value not between", value1, value2, "yxhzfsValue");
  3383. return (Criteria) this;
  3384. }
  3385. public Criteria andYssdkjzcIsNull() {
  3386. addCriterion("yssdkjzc is null");
  3387. return (Criteria) this;
  3388. }
  3389. public Criteria andYssdkjzcIsNotNull() {
  3390. addCriterion("yssdkjzc is not null");
  3391. return (Criteria) this;
  3392. }
  3393. public Criteria andYssdkjzcEqualTo(Integer value) {
  3394. addCriterion("yssdkjzc =", value, "yssdkjzc");
  3395. return (Criteria) this;
  3396. }
  3397. public Criteria andYssdkjzcNotEqualTo(Integer value) {
  3398. addCriterion("yssdkjzc <>", value, "yssdkjzc");
  3399. return (Criteria) this;
  3400. }
  3401. public Criteria andYssdkjzcGreaterThan(Integer value) {
  3402. addCriterion("yssdkjzc >", value, "yssdkjzc");
  3403. return (Criteria) this;
  3404. }
  3405. public Criteria andYssdkjzcGreaterThanOrEqualTo(Integer value) {
  3406. addCriterion("yssdkjzc >=", value, "yssdkjzc");
  3407. return (Criteria) this;
  3408. }
  3409. public Criteria andYssdkjzcLessThan(Integer value) {
  3410. addCriterion("yssdkjzc <", value, "yssdkjzc");
  3411. return (Criteria) this;
  3412. }
  3413. public Criteria andYssdkjzcLessThanOrEqualTo(Integer value) {
  3414. addCriterion("yssdkjzc <=", value, "yssdkjzc");
  3415. return (Criteria) this;
  3416. }
  3417. public Criteria andYssdkjzcIn(List<Integer> values) {
  3418. addCriterion("yssdkjzc in", values, "yssdkjzc");
  3419. return (Criteria) this;
  3420. }
  3421. public Criteria andYssdkjzcNotIn(List<Integer> values) {
  3422. addCriterion("yssdkjzc not in", values, "yssdkjzc");
  3423. return (Criteria) this;
  3424. }
  3425. public Criteria andYssdkjzcBetween(Integer value1, Integer value2) {
  3426. addCriterion("yssdkjzc between", value1, value2, "yssdkjzc");
  3427. return (Criteria) this;
  3428. }
  3429. public Criteria andYssdkjzcNotBetween(Integer value1, Integer value2) {
  3430. addCriterion("yssdkjzc not between", value1, value2, "yssdkjzc");
  3431. return (Criteria) this;
  3432. }
  3433. public Criteria andYssdkjzcValueIsNull() {
  3434. addCriterion("yssdkjzc_value is null");
  3435. return (Criteria) this;
  3436. }
  3437. public Criteria andYssdkjzcValueIsNotNull() {
  3438. addCriterion("yssdkjzc_value is not null");
  3439. return (Criteria) this;
  3440. }
  3441. public Criteria andYssdkjzcValueEqualTo(String value) {
  3442. addCriterion("yssdkjzc_value =", value, "yssdkjzcValue");
  3443. return (Criteria) this;
  3444. }
  3445. public Criteria andYssdkjzcValueNotEqualTo(String value) {
  3446. addCriterion("yssdkjzc_value <>", value, "yssdkjzcValue");
  3447. return (Criteria) this;
  3448. }
  3449. public Criteria andYssdkjzcValueGreaterThan(String value) {
  3450. addCriterion("yssdkjzc_value >", value, "yssdkjzcValue");
  3451. return (Criteria) this;
  3452. }
  3453. public Criteria andYssdkjzcValueGreaterThanOrEqualTo(String value) {
  3454. addCriterion("yssdkjzc_value >=", value, "yssdkjzcValue");
  3455. return (Criteria) this;
  3456. }
  3457. public Criteria andYssdkjzcValueLessThan(String value) {
  3458. addCriterion("yssdkjzc_value <", value, "yssdkjzcValue");
  3459. return (Criteria) this;
  3460. }
  3461. public Criteria andYssdkjzcValueLessThanOrEqualTo(String value) {
  3462. addCriterion("yssdkjzc_value <=", value, "yssdkjzcValue");
  3463. return (Criteria) this;
  3464. }
  3465. public Criteria andYssdkjzcValueLike(String value) {
  3466. addCriterion("yssdkjzc_value like", value, "yssdkjzcValue");
  3467. return (Criteria) this;
  3468. }
  3469. public Criteria andYssdkjzcValueNotLike(String value) {
  3470. addCriterion("yssdkjzc_value not like", value, "yssdkjzcValue");
  3471. return (Criteria) this;
  3472. }
  3473. public Criteria andYssdkjzcValueIn(List<String> values) {
  3474. addCriterion("yssdkjzc_value in", values, "yssdkjzcValue");
  3475. return (Criteria) this;
  3476. }
  3477. public Criteria andYssdkjzcValueNotIn(List<String> values) {
  3478. addCriterion("yssdkjzc_value not in", values, "yssdkjzcValue");
  3479. return (Criteria) this;
  3480. }
  3481. public Criteria andYssdkjzcValueBetween(String value1, String value2) {
  3482. addCriterion("yssdkjzc_value between", value1, value2, "yssdkjzcValue");
  3483. return (Criteria) this;
  3484. }
  3485. public Criteria andYssdkjzcValueNotBetween(String value1, String value2) {
  3486. addCriterion("yssdkjzc_value not between", value1, value2, "yssdkjzcValue");
  3487. return (Criteria) this;
  3488. }
  3489. public Criteria andNsqdsjxmIsNull() {
  3490. addCriterion("nsqdsjxm is null");
  3491. return (Criteria) this;
  3492. }
  3493. public Criteria andNsqdsjxmIsNotNull() {
  3494. addCriterion("nsqdsjxm is not null");
  3495. return (Criteria) this;
  3496. }
  3497. public Criteria andNsqdsjxmEqualTo(Integer value) {
  3498. addCriterion("nsqdsjxm =", value, "nsqdsjxm");
  3499. return (Criteria) this;
  3500. }
  3501. public Criteria andNsqdsjxmNotEqualTo(Integer value) {
  3502. addCriterion("nsqdsjxm <>", value, "nsqdsjxm");
  3503. return (Criteria) this;
  3504. }
  3505. public Criteria andNsqdsjxmGreaterThan(Integer value) {
  3506. addCriterion("nsqdsjxm >", value, "nsqdsjxm");
  3507. return (Criteria) this;
  3508. }
  3509. public Criteria andNsqdsjxmGreaterThanOrEqualTo(Integer value) {
  3510. addCriterion("nsqdsjxm >=", value, "nsqdsjxm");
  3511. return (Criteria) this;
  3512. }
  3513. public Criteria andNsqdsjxmLessThan(Integer value) {
  3514. addCriterion("nsqdsjxm <", value, "nsqdsjxm");
  3515. return (Criteria) this;
  3516. }
  3517. public Criteria andNsqdsjxmLessThanOrEqualTo(Integer value) {
  3518. addCriterion("nsqdsjxm <=", value, "nsqdsjxm");
  3519. return (Criteria) this;
  3520. }
  3521. public Criteria andNsqdsjxmIn(List<Integer> values) {
  3522. addCriterion("nsqdsjxm in", values, "nsqdsjxm");
  3523. return (Criteria) this;
  3524. }
  3525. public Criteria andNsqdsjxmNotIn(List<Integer> values) {
  3526. addCriterion("nsqdsjxm not in", values, "nsqdsjxm");
  3527. return (Criteria) this;
  3528. }
  3529. public Criteria andNsqdsjxmBetween(Integer value1, Integer value2) {
  3530. addCriterion("nsqdsjxm between", value1, value2, "nsqdsjxm");
  3531. return (Criteria) this;
  3532. }
  3533. public Criteria andNsqdsjxmNotBetween(Integer value1, Integer value2) {
  3534. addCriterion("nsqdsjxm not between", value1, value2, "nsqdsjxm");
  3535. return (Criteria) this;
  3536. }
  3537. public Criteria andNsqdsjxmValueIsNull() {
  3538. addCriterion("nsqdsjxm_value is null");
  3539. return (Criteria) this;
  3540. }
  3541. public Criteria andNsqdsjxmValueIsNotNull() {
  3542. addCriterion("nsqdsjxm_value is not null");
  3543. return (Criteria) this;
  3544. }
  3545. public Criteria andNsqdsjxmValueEqualTo(String value) {
  3546. addCriterion("nsqdsjxm_value =", value, "nsqdsjxmValue");
  3547. return (Criteria) this;
  3548. }
  3549. public Criteria andNsqdsjxmValueNotEqualTo(String value) {
  3550. addCriterion("nsqdsjxm_value <>", value, "nsqdsjxmValue");
  3551. return (Criteria) this;
  3552. }
  3553. public Criteria andNsqdsjxmValueGreaterThan(String value) {
  3554. addCriterion("nsqdsjxm_value >", value, "nsqdsjxmValue");
  3555. return (Criteria) this;
  3556. }
  3557. public Criteria andNsqdsjxmValueGreaterThanOrEqualTo(String value) {
  3558. addCriterion("nsqdsjxm_value >=", value, "nsqdsjxmValue");
  3559. return (Criteria) this;
  3560. }
  3561. public Criteria andNsqdsjxmValueLessThan(String value) {
  3562. addCriterion("nsqdsjxm_value <", value, "nsqdsjxmValue");
  3563. return (Criteria) this;
  3564. }
  3565. public Criteria andNsqdsjxmValueLessThanOrEqualTo(String value) {
  3566. addCriterion("nsqdsjxm_value <=", value, "nsqdsjxmValue");
  3567. return (Criteria) this;
  3568. }
  3569. public Criteria andNsqdsjxmValueLike(String value) {
  3570. addCriterion("nsqdsjxm_value like", value, "nsqdsjxmValue");
  3571. return (Criteria) this;
  3572. }
  3573. public Criteria andNsqdsjxmValueNotLike(String value) {
  3574. addCriterion("nsqdsjxm_value not like", value, "nsqdsjxmValue");
  3575. return (Criteria) this;
  3576. }
  3577. public Criteria andNsqdsjxmValueIn(List<String> values) {
  3578. addCriterion("nsqdsjxm_value in", values, "nsqdsjxmValue");
  3579. return (Criteria) this;
  3580. }
  3581. public Criteria andNsqdsjxmValueNotIn(List<String> values) {
  3582. addCriterion("nsqdsjxm_value not in", values, "nsqdsjxmValue");
  3583. return (Criteria) this;
  3584. }
  3585. public Criteria andNsqdsjxmValueBetween(String value1, String value2) {
  3586. addCriterion("nsqdsjxm_value between", value1, value2, "nsqdsjxmValue");
  3587. return (Criteria) this;
  3588. }
  3589. public Criteria andNsqdsjxmValueNotBetween(String value1, String value2) {
  3590. addCriterion("nsqdsjxm_value not between", value1, value2, "nsqdsjxmValue");
  3591. return (Criteria) this;
  3592. }
  3593. public Criteria andSqskjzgbmxxdwgkfbIsNull() {
  3594. addCriterion("sqskjzgbmxxdwgkfb is null");
  3595. return (Criteria) this;
  3596. }
  3597. public Criteria andSqskjzgbmxxdwgkfbIsNotNull() {
  3598. addCriterion("sqskjzgbmxxdwgkfb is not null");
  3599. return (Criteria) this;
  3600. }
  3601. public Criteria andSqskjzgbmxxdwgkfbEqualTo(Integer value) {
  3602. addCriterion("sqskjzgbmxxdwgkfb =", value, "sqskjzgbmxxdwgkfb");
  3603. return (Criteria) this;
  3604. }
  3605. public Criteria andSqskjzgbmxxdwgkfbNotEqualTo(Integer value) {
  3606. addCriterion("sqskjzgbmxxdwgkfb <>", value, "sqskjzgbmxxdwgkfb");
  3607. return (Criteria) this;
  3608. }
  3609. public Criteria andSqskjzgbmxxdwgkfbGreaterThan(Integer value) {
  3610. addCriterion("sqskjzgbmxxdwgkfb >", value, "sqskjzgbmxxdwgkfb");
  3611. return (Criteria) this;
  3612. }
  3613. public Criteria andSqskjzgbmxxdwgkfbGreaterThanOrEqualTo(Integer value) {
  3614. addCriterion("sqskjzgbmxxdwgkfb >=", value, "sqskjzgbmxxdwgkfb");
  3615. return (Criteria) this;
  3616. }
  3617. public Criteria andSqskjzgbmxxdwgkfbLessThan(Integer value) {
  3618. addCriterion("sqskjzgbmxxdwgkfb <", value, "sqskjzgbmxxdwgkfb");
  3619. return (Criteria) this;
  3620. }
  3621. public Criteria andSqskjzgbmxxdwgkfbLessThanOrEqualTo(Integer value) {
  3622. addCriterion("sqskjzgbmxxdwgkfb <=", value, "sqskjzgbmxxdwgkfb");
  3623. return (Criteria) this;
  3624. }
  3625. public Criteria andSqskjzgbmxxdwgkfbIn(List<Integer> values) {
  3626. addCriterion("sqskjzgbmxxdwgkfb in", values, "sqskjzgbmxxdwgkfb");
  3627. return (Criteria) this;
  3628. }
  3629. public Criteria andSqskjzgbmxxdwgkfbNotIn(List<Integer> values) {
  3630. addCriterion("sqskjzgbmxxdwgkfb not in", values, "sqskjzgbmxxdwgkfb");
  3631. return (Criteria) this;
  3632. }
  3633. public Criteria andSqskjzgbmxxdwgkfbBetween(Integer value1, Integer value2) {
  3634. addCriterion("sqskjzgbmxxdwgkfb between", value1, value2, "sqskjzgbmxxdwgkfb");
  3635. return (Criteria) this;
  3636. }
  3637. public Criteria andSqskjzgbmxxdwgkfbNotBetween(Integer value1, Integer value2) {
  3638. addCriterion("sqskjzgbmxxdwgkfb not between", value1, value2, "sqskjzgbmxxdwgkfb");
  3639. return (Criteria) this;
  3640. }
  3641. public Criteria andSqskjzgbmxxdwgkfbValueIsNull() {
  3642. addCriterion("sqskjzgbmxxdwgkfb_value is null");
  3643. return (Criteria) this;
  3644. }
  3645. public Criteria andSqskjzgbmxxdwgkfbValueIsNotNull() {
  3646. addCriterion("sqskjzgbmxxdwgkfb_value is not null");
  3647. return (Criteria) this;
  3648. }
  3649. public Criteria andSqskjzgbmxxdwgkfbValueEqualTo(String value) {
  3650. addCriterion("sqskjzgbmxxdwgkfb_value =", value, "sqskjzgbmxxdwgkfbValue");
  3651. return (Criteria) this;
  3652. }
  3653. public Criteria andSqskjzgbmxxdwgkfbValueNotEqualTo(String value) {
  3654. addCriterion("sqskjzgbmxxdwgkfb_value <>", value, "sqskjzgbmxxdwgkfbValue");
  3655. return (Criteria) this;
  3656. }
  3657. public Criteria andSqskjzgbmxxdwgkfbValueGreaterThan(String value) {
  3658. addCriterion("sqskjzgbmxxdwgkfb_value >", value, "sqskjzgbmxxdwgkfbValue");
  3659. return (Criteria) this;
  3660. }
  3661. public Criteria andSqskjzgbmxxdwgkfbValueGreaterThanOrEqualTo(String value) {
  3662. addCriterion("sqskjzgbmxxdwgkfb_value >=", value, "sqskjzgbmxxdwgkfbValue");
  3663. return (Criteria) this;
  3664. }
  3665. public Criteria andSqskjzgbmxxdwgkfbValueLessThan(String value) {
  3666. addCriterion("sqskjzgbmxxdwgkfb_value <", value, "sqskjzgbmxxdwgkfbValue");
  3667. return (Criteria) this;
  3668. }
  3669. public Criteria andSqskjzgbmxxdwgkfbValueLessThanOrEqualTo(String value) {
  3670. addCriterion("sqskjzgbmxxdwgkfb_value <=", value, "sqskjzgbmxxdwgkfbValue");
  3671. return (Criteria) this;
  3672. }
  3673. public Criteria andSqskjzgbmxxdwgkfbValueLike(String value) {
  3674. addCriterion("sqskjzgbmxxdwgkfb_value like", value, "sqskjzgbmxxdwgkfbValue");
  3675. return (Criteria) this;
  3676. }
  3677. public Criteria andSqskjzgbmxxdwgkfbValueNotLike(String value) {
  3678. addCriterion("sqskjzgbmxxdwgkfb_value not like", value, "sqskjzgbmxxdwgkfbValue");
  3679. return (Criteria) this;
  3680. }
  3681. public Criteria andSqskjzgbmxxdwgkfbValueIn(List<String> values) {
  3682. addCriterion("sqskjzgbmxxdwgkfb_value in", values, "sqskjzgbmxxdwgkfbValue");
  3683. return (Criteria) this;
  3684. }
  3685. public Criteria andSqskjzgbmxxdwgkfbValueNotIn(List<String> values) {
  3686. addCriterion("sqskjzgbmxxdwgkfb_value not in", values, "sqskjzgbmxxdwgkfbValue");
  3687. return (Criteria) this;
  3688. }
  3689. public Criteria andSqskjzgbmxxdwgkfbValueBetween(String value1, String value2) {
  3690. addCriterion("sqskjzgbmxxdwgkfb_value between", value1, value2, "sqskjzgbmxxdwgkfbValue");
  3691. return (Criteria) this;
  3692. }
  3693. public Criteria andSqskjzgbmxxdwgkfbValueNotBetween(String value1, String value2) {
  3694. addCriterion("sqskjzgbmxxdwgkfb_value not between", value1, value2, "sqskjzgbmxxdwgkfbValue");
  3695. return (Criteria) this;
  3696. }
  3697. public Criteria andTbrIsNull() {
  3698. addCriterion("tbr is null");
  3699. return (Criteria) this;
  3700. }
  3701. public Criteria andTbrIsNotNull() {
  3702. addCriterion("tbr is not null");
  3703. return (Criteria) this;
  3704. }
  3705. public Criteria andTbrEqualTo(String value) {
  3706. addCriterion("tbr =", value, "tbr");
  3707. return (Criteria) this;
  3708. }
  3709. public Criteria andTbrNotEqualTo(String value) {
  3710. addCriterion("tbr <>", value, "tbr");
  3711. return (Criteria) this;
  3712. }
  3713. public Criteria andTbrGreaterThan(String value) {
  3714. addCriterion("tbr >", value, "tbr");
  3715. return (Criteria) this;
  3716. }
  3717. public Criteria andTbrGreaterThanOrEqualTo(String value) {
  3718. addCriterion("tbr >=", value, "tbr");
  3719. return (Criteria) this;
  3720. }
  3721. public Criteria andTbrLessThan(String value) {
  3722. addCriterion("tbr <", value, "tbr");
  3723. return (Criteria) this;
  3724. }
  3725. public Criteria andTbrLessThanOrEqualTo(String value) {
  3726. addCriterion("tbr <=", value, "tbr");
  3727. return (Criteria) this;
  3728. }
  3729. public Criteria andTbrLike(String value) {
  3730. addCriterion("tbr like", value, "tbr");
  3731. return (Criteria) this;
  3732. }
  3733. public Criteria andTbrNotLike(String value) {
  3734. addCriterion("tbr not like", value, "tbr");
  3735. return (Criteria) this;
  3736. }
  3737. public Criteria andTbrIn(List<String> values) {
  3738. addCriterion("tbr in", values, "tbr");
  3739. return (Criteria) this;
  3740. }
  3741. public Criteria andTbrNotIn(List<String> values) {
  3742. addCriterion("tbr not in", values, "tbr");
  3743. return (Criteria) this;
  3744. }
  3745. public Criteria andTbrBetween(String value1, String value2) {
  3746. addCriterion("tbr between", value1, value2, "tbr");
  3747. return (Criteria) this;
  3748. }
  3749. public Criteria andTbrNotBetween(String value1, String value2) {
  3750. addCriterion("tbr not between", value1, value2, "tbr");
  3751. return (Criteria) this;
  3752. }
  3753. public Criteria andTbrsjIsNull() {
  3754. addCriterion("tbrsj is null");
  3755. return (Criteria) this;
  3756. }
  3757. public Criteria andTbrsjIsNotNull() {
  3758. addCriterion("tbrsj is not null");
  3759. return (Criteria) this;
  3760. }
  3761. public Criteria andTbrsjEqualTo(String value) {
  3762. addCriterion("tbrsj =", value, "tbrsj");
  3763. return (Criteria) this;
  3764. }
  3765. public Criteria andTbrsjNotEqualTo(String value) {
  3766. addCriterion("tbrsj <>", value, "tbrsj");
  3767. return (Criteria) this;
  3768. }
  3769. public Criteria andTbrsjGreaterThan(String value) {
  3770. addCriterion("tbrsj >", value, "tbrsj");
  3771. return (Criteria) this;
  3772. }
  3773. public Criteria andTbrsjGreaterThanOrEqualTo(String value) {
  3774. addCriterion("tbrsj >=", value, "tbrsj");
  3775. return (Criteria) this;
  3776. }
  3777. public Criteria andTbrsjLessThan(String value) {
  3778. addCriterion("tbrsj <", value, "tbrsj");
  3779. return (Criteria) this;
  3780. }
  3781. public Criteria andTbrsjLessThanOrEqualTo(String value) {
  3782. addCriterion("tbrsj <=", value, "tbrsj");
  3783. return (Criteria) this;
  3784. }
  3785. public Criteria andTbrsjLike(String value) {
  3786. addCriterion("tbrsj like", value, "tbrsj");
  3787. return (Criteria) this;
  3788. }
  3789. public Criteria andTbrsjNotLike(String value) {
  3790. addCriterion("tbrsj not like", value, "tbrsj");
  3791. return (Criteria) this;
  3792. }
  3793. public Criteria andTbrsjIn(List<String> values) {
  3794. addCriterion("tbrsj in", values, "tbrsj");
  3795. return (Criteria) this;
  3796. }
  3797. public Criteria andTbrsjNotIn(List<String> values) {
  3798. addCriterion("tbrsj not in", values, "tbrsj");
  3799. return (Criteria) this;
  3800. }
  3801. public Criteria andTbrsjBetween(String value1, String value2) {
  3802. addCriterion("tbrsj between", value1, value2, "tbrsj");
  3803. return (Criteria) this;
  3804. }
  3805. public Criteria andTbrsjNotBetween(String value1, String value2) {
  3806. addCriterion("tbrsj not between", value1, value2, "tbrsj");
  3807. return (Criteria) this;
  3808. }
  3809. public Criteria andJsfzrIsNull() {
  3810. addCriterion("jsfzr is null");
  3811. return (Criteria) this;
  3812. }
  3813. public Criteria andJsfzrIsNotNull() {
  3814. addCriterion("jsfzr is not null");
  3815. return (Criteria) this;
  3816. }
  3817. public Criteria andJsfzrEqualTo(String value) {
  3818. addCriterion("jsfzr =", value, "jsfzr");
  3819. return (Criteria) this;
  3820. }
  3821. public Criteria andJsfzrNotEqualTo(String value) {
  3822. addCriterion("jsfzr <>", value, "jsfzr");
  3823. return (Criteria) this;
  3824. }
  3825. public Criteria andJsfzrGreaterThan(String value) {
  3826. addCriterion("jsfzr >", value, "jsfzr");
  3827. return (Criteria) this;
  3828. }
  3829. public Criteria andJsfzrGreaterThanOrEqualTo(String value) {
  3830. addCriterion("jsfzr >=", value, "jsfzr");
  3831. return (Criteria) this;
  3832. }
  3833. public Criteria andJsfzrLessThan(String value) {
  3834. addCriterion("jsfzr <", value, "jsfzr");
  3835. return (Criteria) this;
  3836. }
  3837. public Criteria andJsfzrLessThanOrEqualTo(String value) {
  3838. addCriterion("jsfzr <=", value, "jsfzr");
  3839. return (Criteria) this;
  3840. }
  3841. public Criteria andJsfzrLike(String value) {
  3842. addCriterion("jsfzr like", value, "jsfzr");
  3843. return (Criteria) this;
  3844. }
  3845. public Criteria andJsfzrNotLike(String value) {
  3846. addCriterion("jsfzr not like", value, "jsfzr");
  3847. return (Criteria) this;
  3848. }
  3849. public Criteria andJsfzrIn(List<String> values) {
  3850. addCriterion("jsfzr in", values, "jsfzr");
  3851. return (Criteria) this;
  3852. }
  3853. public Criteria andJsfzrNotIn(List<String> values) {
  3854. addCriterion("jsfzr not in", values, "jsfzr");
  3855. return (Criteria) this;
  3856. }
  3857. public Criteria andJsfzrBetween(String value1, String value2) {
  3858. addCriterion("jsfzr between", value1, value2, "jsfzr");
  3859. return (Criteria) this;
  3860. }
  3861. public Criteria andJsfzrNotBetween(String value1, String value2) {
  3862. addCriterion("jsfzr not between", value1, value2, "jsfzr");
  3863. return (Criteria) this;
  3864. }
  3865. public Criteria andJsfsjIsNull() {
  3866. addCriterion("jsfsj is null");
  3867. return (Criteria) this;
  3868. }
  3869. public Criteria andJsfsjIsNotNull() {
  3870. addCriterion("jsfsj is not null");
  3871. return (Criteria) this;
  3872. }
  3873. public Criteria andJsfsjEqualTo(String value) {
  3874. addCriterion("jsfsj =", value, "jsfsj");
  3875. return (Criteria) this;
  3876. }
  3877. public Criteria andJsfsjNotEqualTo(String value) {
  3878. addCriterion("jsfsj <>", value, "jsfsj");
  3879. return (Criteria) this;
  3880. }
  3881. public Criteria andJsfsjGreaterThan(String value) {
  3882. addCriterion("jsfsj >", value, "jsfsj");
  3883. return (Criteria) this;
  3884. }
  3885. public Criteria andJsfsjGreaterThanOrEqualTo(String value) {
  3886. addCriterion("jsfsj >=", value, "jsfsj");
  3887. return (Criteria) this;
  3888. }
  3889. public Criteria andJsfsjLessThan(String value) {
  3890. addCriterion("jsfsj <", value, "jsfsj");
  3891. return (Criteria) this;
  3892. }
  3893. public Criteria andJsfsjLessThanOrEqualTo(String value) {
  3894. addCriterion("jsfsj <=", value, "jsfsj");
  3895. return (Criteria) this;
  3896. }
  3897. public Criteria andJsfsjLike(String value) {
  3898. addCriterion("jsfsj like", value, "jsfsj");
  3899. return (Criteria) this;
  3900. }
  3901. public Criteria andJsfsjNotLike(String value) {
  3902. addCriterion("jsfsj not like", value, "jsfsj");
  3903. return (Criteria) this;
  3904. }
  3905. public Criteria andJsfsjIn(List<String> values) {
  3906. addCriterion("jsfsj in", values, "jsfsj");
  3907. return (Criteria) this;
  3908. }
  3909. public Criteria andJsfsjNotIn(List<String> values) {
  3910. addCriterion("jsfsj not in", values, "jsfsj");
  3911. return (Criteria) this;
  3912. }
  3913. public Criteria andJsfsjBetween(String value1, String value2) {
  3914. addCriterion("jsfsj between", value1, value2, "jsfsj");
  3915. return (Criteria) this;
  3916. }
  3917. public Criteria andJsfsjNotBetween(String value1, String value2) {
  3918. addCriterion("jsfsj not between", value1, value2, "jsfsj");
  3919. return (Criteria) this;
  3920. }
  3921. public Criteria andXqmcIsNull() {
  3922. addCriterion("xqmc is null");
  3923. return (Criteria) this;
  3924. }
  3925. public Criteria andXqmcIsNotNull() {
  3926. addCriterion("xqmc is not null");
  3927. return (Criteria) this;
  3928. }
  3929. public Criteria andXqmcEqualTo(String value) {
  3930. addCriterion("xqmc =", value, "xqmc");
  3931. return (Criteria) this;
  3932. }
  3933. public Criteria andXqmcNotEqualTo(String value) {
  3934. addCriterion("xqmc <>", value, "xqmc");
  3935. return (Criteria) this;
  3936. }
  3937. public Criteria andXqmcGreaterThan(String value) {
  3938. addCriterion("xqmc >", value, "xqmc");
  3939. return (Criteria) this;
  3940. }
  3941. public Criteria andXqmcGreaterThanOrEqualTo(String value) {
  3942. addCriterion("xqmc >=", value, "xqmc");
  3943. return (Criteria) this;
  3944. }
  3945. public Criteria andXqmcLessThan(String value) {
  3946. addCriterion("xqmc <", value, "xqmc");
  3947. return (Criteria) this;
  3948. }
  3949. public Criteria andXqmcLessThanOrEqualTo(String value) {
  3950. addCriterion("xqmc <=", value, "xqmc");
  3951. return (Criteria) this;
  3952. }
  3953. public Criteria andXqmcLike(String value) {
  3954. addCriterion("xqmc like", value, "xqmc");
  3955. return (Criteria) this;
  3956. }
  3957. public Criteria andXqmcNotLike(String value) {
  3958. addCriterion("xqmc not like", value, "xqmc");
  3959. return (Criteria) this;
  3960. }
  3961. public Criteria andXqmcIn(List<String> values) {
  3962. addCriterion("xqmc in", values, "xqmc");
  3963. return (Criteria) this;
  3964. }
  3965. public Criteria andXqmcNotIn(List<String> values) {
  3966. addCriterion("xqmc not in", values, "xqmc");
  3967. return (Criteria) this;
  3968. }
  3969. public Criteria andXqmcBetween(String value1, String value2) {
  3970. addCriterion("xqmc between", value1, value2, "xqmc");
  3971. return (Criteria) this;
  3972. }
  3973. public Criteria andXqmcNotBetween(String value1, String value2) {
  3974. addCriterion("xqmc not between", value1, value2, "xqmc");
  3975. return (Criteria) this;
  3976. }
  3977. public Criteria andXqblIsNull() {
  3978. addCriterion("xqbl is null");
  3979. return (Criteria) this;
  3980. }
  3981. public Criteria andXqblIsNotNull() {
  3982. addCriterion("xqbl is not null");
  3983. return (Criteria) this;
  3984. }
  3985. public Criteria andXqblEqualTo(Integer value) {
  3986. addCriterion("xqbl =", value, "xqbl");
  3987. return (Criteria) this;
  3988. }
  3989. public Criteria andXqblNotEqualTo(Integer value) {
  3990. addCriterion("xqbl <>", value, "xqbl");
  3991. return (Criteria) this;
  3992. }
  3993. public Criteria andXqblGreaterThan(Integer value) {
  3994. addCriterion("xqbl >", value, "xqbl");
  3995. return (Criteria) this;
  3996. }
  3997. public Criteria andXqblGreaterThanOrEqualTo(Integer value) {
  3998. addCriterion("xqbl >=", value, "xqbl");
  3999. return (Criteria) this;
  4000. }
  4001. public Criteria andXqblLessThan(Integer value) {
  4002. addCriterion("xqbl <", value, "xqbl");
  4003. return (Criteria) this;
  4004. }
  4005. public Criteria andXqblLessThanOrEqualTo(Integer value) {
  4006. addCriterion("xqbl <=", value, "xqbl");
  4007. return (Criteria) this;
  4008. }
  4009. public Criteria andXqblIn(List<Integer> values) {
  4010. addCriterion("xqbl in", values, "xqbl");
  4011. return (Criteria) this;
  4012. }
  4013. public Criteria andXqblNotIn(List<Integer> values) {
  4014. addCriterion("xqbl not in", values, "xqbl");
  4015. return (Criteria) this;
  4016. }
  4017. public Criteria andXqblBetween(Integer value1, Integer value2) {
  4018. addCriterion("xqbl between", value1, value2, "xqbl");
  4019. return (Criteria) this;
  4020. }
  4021. public Criteria andXqblNotBetween(Integer value1, Integer value2) {
  4022. addCriterion("xqbl not between", value1, value2, "xqbl");
  4023. return (Criteria) this;
  4024. }
  4025. public Criteria andJsxqlxIsNull() {
  4026. addCriterion("jsxqlx is null");
  4027. return (Criteria) this;
  4028. }
  4029. public Criteria andJsxqlxIsNotNull() {
  4030. addCriterion("jsxqlx is not null");
  4031. return (Criteria) this;
  4032. }
  4033. public Criteria andJsxqlxEqualTo(String value) {
  4034. addCriterion("jsxqlx =", value, "jsxqlx");
  4035. return (Criteria) this;
  4036. }
  4037. public Criteria andJsxqlxNotEqualTo(String value) {
  4038. addCriterion("jsxqlx <>", value, "jsxqlx");
  4039. return (Criteria) this;
  4040. }
  4041. public Criteria andJsxqlxGreaterThan(String value) {
  4042. addCriterion("jsxqlx >", value, "jsxqlx");
  4043. return (Criteria) this;
  4044. }
  4045. public Criteria andJsxqlxGreaterThanOrEqualTo(String value) {
  4046. addCriterion("jsxqlx >=", value, "jsxqlx");
  4047. return (Criteria) this;
  4048. }
  4049. public Criteria andJsxqlxLessThan(String value) {
  4050. addCriterion("jsxqlx <", value, "jsxqlx");
  4051. return (Criteria) this;
  4052. }
  4053. public Criteria andJsxqlxLessThanOrEqualTo(String value) {
  4054. addCriterion("jsxqlx <=", value, "jsxqlx");
  4055. return (Criteria) this;
  4056. }
  4057. public Criteria andJsxqlxLike(String value) {
  4058. addCriterion("jsxqlx like", value, "jsxqlx");
  4059. return (Criteria) this;
  4060. }
  4061. public Criteria andJsxqlxNotLike(String value) {
  4062. addCriterion("jsxqlx not like", value, "jsxqlx");
  4063. return (Criteria) this;
  4064. }
  4065. public Criteria andJsxqlxIn(List<String> values) {
  4066. addCriterion("jsxqlx in", values, "jsxqlx");
  4067. return (Criteria) this;
  4068. }
  4069. public Criteria andJsxqlxNotIn(List<String> values) {
  4070. addCriterion("jsxqlx not in", values, "jsxqlx");
  4071. return (Criteria) this;
  4072. }
  4073. public Criteria andJsxqlxBetween(String value1, String value2) {
  4074. addCriterion("jsxqlx between", value1, value2, "jsxqlx");
  4075. return (Criteria) this;
  4076. }
  4077. public Criteria andJsxqlxNotBetween(String value1, String value2) {
  4078. addCriterion("jsxqlx not between", value1, value2, "jsxqlx");
  4079. return (Criteria) this;
  4080. }
  4081. public Criteria andXqlyIsNull() {
  4082. addCriterion("xqly is null");
  4083. return (Criteria) this;
  4084. }
  4085. public Criteria andXqlyIsNotNull() {
  4086. addCriterion("xqly is not null");
  4087. return (Criteria) this;
  4088. }
  4089. public Criteria andXqlyEqualTo(String value) {
  4090. addCriterion("xqly =", value, "xqly");
  4091. return (Criteria) this;
  4092. }
  4093. public Criteria andXqlyNotEqualTo(String value) {
  4094. addCriterion("xqly <>", value, "xqly");
  4095. return (Criteria) this;
  4096. }
  4097. public Criteria andXqlyGreaterThan(String value) {
  4098. addCriterion("xqly >", value, "xqly");
  4099. return (Criteria) this;
  4100. }
  4101. public Criteria andXqlyGreaterThanOrEqualTo(String value) {
  4102. addCriterion("xqly >=", value, "xqly");
  4103. return (Criteria) this;
  4104. }
  4105. public Criteria andXqlyLessThan(String value) {
  4106. addCriterion("xqly <", value, "xqly");
  4107. return (Criteria) this;
  4108. }
  4109. public Criteria andXqlyLessThanOrEqualTo(String value) {
  4110. addCriterion("xqly <=", value, "xqly");
  4111. return (Criteria) this;
  4112. }
  4113. public Criteria andXqlyLike(String value) {
  4114. addCriterion("xqly like", value, "xqly");
  4115. return (Criteria) this;
  4116. }
  4117. public Criteria andXqlyNotLike(String value) {
  4118. addCriterion("xqly not like", value, "xqly");
  4119. return (Criteria) this;
  4120. }
  4121. public Criteria andXqlyIn(List<String> values) {
  4122. addCriterion("xqly in", values, "xqly");
  4123. return (Criteria) this;
  4124. }
  4125. public Criteria andXqlyNotIn(List<String> values) {
  4126. addCriterion("xqly not in", values, "xqly");
  4127. return (Criteria) this;
  4128. }
  4129. public Criteria andXqlyBetween(String value1, String value2) {
  4130. addCriterion("xqly between", value1, value2, "xqly");
  4131. return (Criteria) this;
  4132. }
  4133. public Criteria andXqlyNotBetween(String value1, String value2) {
  4134. addCriterion("xqly not between", value1, value2, "xqly");
  4135. return (Criteria) this;
  4136. }
  4137. public Criteria andMqcpjsxzIsNull() {
  4138. addCriterion("mqcpjsxz is null");
  4139. return (Criteria) this;
  4140. }
  4141. public Criteria andMqcpjsxzIsNotNull() {
  4142. addCriterion("mqcpjsxz is not null");
  4143. return (Criteria) this;
  4144. }
  4145. public Criteria andMqcpjsxzEqualTo(String value) {
  4146. addCriterion("mqcpjsxz =", value, "mqcpjsxz");
  4147. return (Criteria) this;
  4148. }
  4149. public Criteria andMqcpjsxzNotEqualTo(String value) {
  4150. addCriterion("mqcpjsxz <>", value, "mqcpjsxz");
  4151. return (Criteria) this;
  4152. }
  4153. public Criteria andMqcpjsxzGreaterThan(String value) {
  4154. addCriterion("mqcpjsxz >", value, "mqcpjsxz");
  4155. return (Criteria) this;
  4156. }
  4157. public Criteria andMqcpjsxzGreaterThanOrEqualTo(String value) {
  4158. addCriterion("mqcpjsxz >=", value, "mqcpjsxz");
  4159. return (Criteria) this;
  4160. }
  4161. public Criteria andMqcpjsxzLessThan(String value) {
  4162. addCriterion("mqcpjsxz <", value, "mqcpjsxz");
  4163. return (Criteria) this;
  4164. }
  4165. public Criteria andMqcpjsxzLessThanOrEqualTo(String value) {
  4166. addCriterion("mqcpjsxz <=", value, "mqcpjsxz");
  4167. return (Criteria) this;
  4168. }
  4169. public Criteria andMqcpjsxzLike(String value) {
  4170. addCriterion("mqcpjsxz like", value, "mqcpjsxz");
  4171. return (Criteria) this;
  4172. }
  4173. public Criteria andMqcpjsxzNotLike(String value) {
  4174. addCriterion("mqcpjsxz not like", value, "mqcpjsxz");
  4175. return (Criteria) this;
  4176. }
  4177. public Criteria andMqcpjsxzIn(List<String> values) {
  4178. addCriterion("mqcpjsxz in", values, "mqcpjsxz");
  4179. return (Criteria) this;
  4180. }
  4181. public Criteria andMqcpjsxzNotIn(List<String> values) {
  4182. addCriterion("mqcpjsxz not in", values, "mqcpjsxz");
  4183. return (Criteria) this;
  4184. }
  4185. public Criteria andMqcpjsxzBetween(String value1, String value2) {
  4186. addCriterion("mqcpjsxz between", value1, value2, "mqcpjsxz");
  4187. return (Criteria) this;
  4188. }
  4189. public Criteria andMqcpjsxzNotBetween(String value1, String value2) {
  4190. addCriterion("mqcpjsxz not between", value1, value2, "mqcpjsxz");
  4191. return (Criteria) this;
  4192. }
  4193. public Criteria andYfndIsNull() {
  4194. addCriterion("yfnd is null");
  4195. return (Criteria) this;
  4196. }
  4197. public Criteria andYfndIsNotNull() {
  4198. addCriterion("yfnd is not null");
  4199. return (Criteria) this;
  4200. }
  4201. public Criteria andYfndEqualTo(String value) {
  4202. addCriterion("yfnd =", value, "yfnd");
  4203. return (Criteria) this;
  4204. }
  4205. public Criteria andYfndNotEqualTo(String value) {
  4206. addCriterion("yfnd <>", value, "yfnd");
  4207. return (Criteria) this;
  4208. }
  4209. public Criteria andYfndGreaterThan(String value) {
  4210. addCriterion("yfnd >", value, "yfnd");
  4211. return (Criteria) this;
  4212. }
  4213. public Criteria andYfndGreaterThanOrEqualTo(String value) {
  4214. addCriterion("yfnd >=", value, "yfnd");
  4215. return (Criteria) this;
  4216. }
  4217. public Criteria andYfndLessThan(String value) {
  4218. addCriterion("yfnd <", value, "yfnd");
  4219. return (Criteria) this;
  4220. }
  4221. public Criteria andYfndLessThanOrEqualTo(String value) {
  4222. addCriterion("yfnd <=", value, "yfnd");
  4223. return (Criteria) this;
  4224. }
  4225. public Criteria andYfndLike(String value) {
  4226. addCriterion("yfnd like", value, "yfnd");
  4227. return (Criteria) this;
  4228. }
  4229. public Criteria andYfndNotLike(String value) {
  4230. addCriterion("yfnd not like", value, "yfnd");
  4231. return (Criteria) this;
  4232. }
  4233. public Criteria andYfndIn(List<String> values) {
  4234. addCriterion("yfnd in", values, "yfnd");
  4235. return (Criteria) this;
  4236. }
  4237. public Criteria andYfndNotIn(List<String> values) {
  4238. addCriterion("yfnd not in", values, "yfnd");
  4239. return (Criteria) this;
  4240. }
  4241. public Criteria andYfndBetween(String value1, String value2) {
  4242. addCriterion("yfnd between", value1, value2, "yfnd");
  4243. return (Criteria) this;
  4244. }
  4245. public Criteria andYfndNotBetween(String value1, String value2) {
  4246. addCriterion("yfnd not between", value1, value2, "yfnd");
  4247. return (Criteria) this;
  4248. }
  4249. public Criteria andYqdddxgIsNull() {
  4250. addCriterion("yqdddxg is null");
  4251. return (Criteria) this;
  4252. }
  4253. public Criteria andYqdddxgIsNotNull() {
  4254. addCriterion("yqdddxg is not null");
  4255. return (Criteria) this;
  4256. }
  4257. public Criteria andYqdddxgEqualTo(String value) {
  4258. addCriterion("yqdddxg =", value, "yqdddxg");
  4259. return (Criteria) this;
  4260. }
  4261. public Criteria andYqdddxgNotEqualTo(String value) {
  4262. addCriterion("yqdddxg <>", value, "yqdddxg");
  4263. return (Criteria) this;
  4264. }
  4265. public Criteria andYqdddxgGreaterThan(String value) {
  4266. addCriterion("yqdddxg >", value, "yqdddxg");
  4267. return (Criteria) this;
  4268. }
  4269. public Criteria andYqdddxgGreaterThanOrEqualTo(String value) {
  4270. addCriterion("yqdddxg >=", value, "yqdddxg");
  4271. return (Criteria) this;
  4272. }
  4273. public Criteria andYqdddxgLessThan(String value) {
  4274. addCriterion("yqdddxg <", value, "yqdddxg");
  4275. return (Criteria) this;
  4276. }
  4277. public Criteria andYqdddxgLessThanOrEqualTo(String value) {
  4278. addCriterion("yqdddxg <=", value, "yqdddxg");
  4279. return (Criteria) this;
  4280. }
  4281. public Criteria andYqdddxgLike(String value) {
  4282. addCriterion("yqdddxg like", value, "yqdddxg");
  4283. return (Criteria) this;
  4284. }
  4285. public Criteria andYqdddxgNotLike(String value) {
  4286. addCriterion("yqdddxg not like", value, "yqdddxg");
  4287. return (Criteria) this;
  4288. }
  4289. public Criteria andYqdddxgIn(List<String> values) {
  4290. addCriterion("yqdddxg in", values, "yqdddxg");
  4291. return (Criteria) this;
  4292. }
  4293. public Criteria andYqdddxgNotIn(List<String> values) {
  4294. addCriterion("yqdddxg not in", values, "yqdddxg");
  4295. return (Criteria) this;
  4296. }
  4297. public Criteria andYqdddxgBetween(String value1, String value2) {
  4298. addCriterion("yqdddxg between", value1, value2, "yqdddxg");
  4299. return (Criteria) this;
  4300. }
  4301. public Criteria andYqdddxgNotBetween(String value1, String value2) {
  4302. addCriterion("yqdddxg not between", value1, value2, "yqdddxg");
  4303. return (Criteria) this;
  4304. }
  4305. public Criteria andYjzkdgzIsNull() {
  4306. addCriterion("yjzkdgz is null");
  4307. return (Criteria) this;
  4308. }
  4309. public Criteria andYjzkdgzIsNotNull() {
  4310. addCriterion("yjzkdgz is not null");
  4311. return (Criteria) this;
  4312. }
  4313. public Criteria andYjzkdgzEqualTo(String value) {
  4314. addCriterion("yjzkdgz =", value, "yjzkdgz");
  4315. return (Criteria) this;
  4316. }
  4317. public Criteria andYjzkdgzNotEqualTo(String value) {
  4318. addCriterion("yjzkdgz <>", value, "yjzkdgz");
  4319. return (Criteria) this;
  4320. }
  4321. public Criteria andYjzkdgzGreaterThan(String value) {
  4322. addCriterion("yjzkdgz >", value, "yjzkdgz");
  4323. return (Criteria) this;
  4324. }
  4325. public Criteria andYjzkdgzGreaterThanOrEqualTo(String value) {
  4326. addCriterion("yjzkdgz >=", value, "yjzkdgz");
  4327. return (Criteria) this;
  4328. }
  4329. public Criteria andYjzkdgzLessThan(String value) {
  4330. addCriterion("yjzkdgz <", value, "yjzkdgz");
  4331. return (Criteria) this;
  4332. }
  4333. public Criteria andYjzkdgzLessThanOrEqualTo(String value) {
  4334. addCriterion("yjzkdgz <=", value, "yjzkdgz");
  4335. return (Criteria) this;
  4336. }
  4337. public Criteria andYjzkdgzLike(String value) {
  4338. addCriterion("yjzkdgz like", value, "yjzkdgz");
  4339. return (Criteria) this;
  4340. }
  4341. public Criteria andYjzkdgzNotLike(String value) {
  4342. addCriterion("yjzkdgz not like", value, "yjzkdgz");
  4343. return (Criteria) this;
  4344. }
  4345. public Criteria andYjzkdgzIn(List<String> values) {
  4346. addCriterion("yjzkdgz in", values, "yjzkdgz");
  4347. return (Criteria) this;
  4348. }
  4349. public Criteria andYjzkdgzNotIn(List<String> values) {
  4350. addCriterion("yjzkdgz not in", values, "yjzkdgz");
  4351. return (Criteria) this;
  4352. }
  4353. public Criteria andYjzkdgzBetween(String value1, String value2) {
  4354. addCriterion("yjzkdgz between", value1, value2, "yjzkdgz");
  4355. return (Criteria) this;
  4356. }
  4357. public Criteria andYjzkdgzNotBetween(String value1, String value2) {
  4358. addCriterion("yjzkdgz not between", value1, value2, "yjzkdgz");
  4359. return (Criteria) this;
  4360. }
  4361. public Criteria andXyyftjqkIsNull() {
  4362. addCriterion("xyyftjqk is null");
  4363. return (Criteria) this;
  4364. }
  4365. public Criteria andXyyftjqkIsNotNull() {
  4366. addCriterion("xyyftjqk is not null");
  4367. return (Criteria) this;
  4368. }
  4369. public Criteria andXyyftjqkEqualTo(String value) {
  4370. addCriterion("xyyftjqk =", value, "xyyftjqk");
  4371. return (Criteria) this;
  4372. }
  4373. public Criteria andXyyftjqkNotEqualTo(String value) {
  4374. addCriterion("xyyftjqk <>", value, "xyyftjqk");
  4375. return (Criteria) this;
  4376. }
  4377. public Criteria andXyyftjqkGreaterThan(String value) {
  4378. addCriterion("xyyftjqk >", value, "xyyftjqk");
  4379. return (Criteria) this;
  4380. }
  4381. public Criteria andXyyftjqkGreaterThanOrEqualTo(String value) {
  4382. addCriterion("xyyftjqk >=", value, "xyyftjqk");
  4383. return (Criteria) this;
  4384. }
  4385. public Criteria andXyyftjqkLessThan(String value) {
  4386. addCriterion("xyyftjqk <", value, "xyyftjqk");
  4387. return (Criteria) this;
  4388. }
  4389. public Criteria andXyyftjqkLessThanOrEqualTo(String value) {
  4390. addCriterion("xyyftjqk <=", value, "xyyftjqk");
  4391. return (Criteria) this;
  4392. }
  4393. public Criteria andXyyftjqkLike(String value) {
  4394. addCriterion("xyyftjqk like", value, "xyyftjqk");
  4395. return (Criteria) this;
  4396. }
  4397. public Criteria andXyyftjqkNotLike(String value) {
  4398. addCriterion("xyyftjqk not like", value, "xyyftjqk");
  4399. return (Criteria) this;
  4400. }
  4401. public Criteria andXyyftjqkIn(List<String> values) {
  4402. addCriterion("xyyftjqk in", values, "xyyftjqk");
  4403. return (Criteria) this;
  4404. }
  4405. public Criteria andXyyftjqkNotIn(List<String> values) {
  4406. addCriterion("xyyftjqk not in", values, "xyyftjqk");
  4407. return (Criteria) this;
  4408. }
  4409. public Criteria andXyyftjqkBetween(String value1, String value2) {
  4410. addCriterion("xyyftjqk between", value1, value2, "xyyftjqk");
  4411. return (Criteria) this;
  4412. }
  4413. public Criteria andXyyftjqkNotBetween(String value1, String value2) {
  4414. addCriterion("xyyftjqk not between", value1, value2, "xyyftjqk");
  4415. return (Criteria) this;
  4416. }
  4417. public Criteria andMqhzdxqkIsNull() {
  4418. addCriterion("mqhzdxqk is null");
  4419. return (Criteria) this;
  4420. }
  4421. public Criteria andMqhzdxqkIsNotNull() {
  4422. addCriterion("mqhzdxqk is not null");
  4423. return (Criteria) this;
  4424. }
  4425. public Criteria andMqhzdxqkEqualTo(String value) {
  4426. addCriterion("mqhzdxqk =", value, "mqhzdxqk");
  4427. return (Criteria) this;
  4428. }
  4429. public Criteria andMqhzdxqkNotEqualTo(String value) {
  4430. addCriterion("mqhzdxqk <>", value, "mqhzdxqk");
  4431. return (Criteria) this;
  4432. }
  4433. public Criteria andMqhzdxqkGreaterThan(String value) {
  4434. addCriterion("mqhzdxqk >", value, "mqhzdxqk");
  4435. return (Criteria) this;
  4436. }
  4437. public Criteria andMqhzdxqkGreaterThanOrEqualTo(String value) {
  4438. addCriterion("mqhzdxqk >=", value, "mqhzdxqk");
  4439. return (Criteria) this;
  4440. }
  4441. public Criteria andMqhzdxqkLessThan(String value) {
  4442. addCriterion("mqhzdxqk <", value, "mqhzdxqk");
  4443. return (Criteria) this;
  4444. }
  4445. public Criteria andMqhzdxqkLessThanOrEqualTo(String value) {
  4446. addCriterion("mqhzdxqk <=", value, "mqhzdxqk");
  4447. return (Criteria) this;
  4448. }
  4449. public Criteria andMqhzdxqkLike(String value) {
  4450. addCriterion("mqhzdxqk like", value, "mqhzdxqk");
  4451. return (Criteria) this;
  4452. }
  4453. public Criteria andMqhzdxqkNotLike(String value) {
  4454. addCriterion("mqhzdxqk not like", value, "mqhzdxqk");
  4455. return (Criteria) this;
  4456. }
  4457. public Criteria andMqhzdxqkIn(List<String> values) {
  4458. addCriterion("mqhzdxqk in", values, "mqhzdxqk");
  4459. return (Criteria) this;
  4460. }
  4461. public Criteria andMqhzdxqkNotIn(List<String> values) {
  4462. addCriterion("mqhzdxqk not in", values, "mqhzdxqk");
  4463. return (Criteria) this;
  4464. }
  4465. public Criteria andMqhzdxqkBetween(String value1, String value2) {
  4466. addCriterion("mqhzdxqk between", value1, value2, "mqhzdxqk");
  4467. return (Criteria) this;
  4468. }
  4469. public Criteria andMqhzdxqkNotBetween(String value1, String value2) {
  4470. addCriterion("mqhzdxqk not between", value1, value2, "mqhzdxqk");
  4471. return (Criteria) this;
  4472. }
  4473. public Criteria andSfyxybhzxqIsNull() {
  4474. addCriterion("sfyxybhzxq is null");
  4475. return (Criteria) this;
  4476. }
  4477. public Criteria andSfyxybhzxqIsNotNull() {
  4478. addCriterion("sfyxybhzxq is not null");
  4479. return (Criteria) this;
  4480. }
  4481. public Criteria andSfyxybhzxqEqualTo(Integer value) {
  4482. addCriterion("sfyxybhzxq =", value, "sfyxybhzxq");
  4483. return (Criteria) this;
  4484. }
  4485. public Criteria andSfyxybhzxqNotEqualTo(Integer value) {
  4486. addCriterion("sfyxybhzxq <>", value, "sfyxybhzxq");
  4487. return (Criteria) this;
  4488. }
  4489. public Criteria andSfyxybhzxqGreaterThan(Integer value) {
  4490. addCriterion("sfyxybhzxq >", value, "sfyxybhzxq");
  4491. return (Criteria) this;
  4492. }
  4493. public Criteria andSfyxybhzxqGreaterThanOrEqualTo(Integer value) {
  4494. addCriterion("sfyxybhzxq >=", value, "sfyxybhzxq");
  4495. return (Criteria) this;
  4496. }
  4497. public Criteria andSfyxybhzxqLessThan(Integer value) {
  4498. addCriterion("sfyxybhzxq <", value, "sfyxybhzxq");
  4499. return (Criteria) this;
  4500. }
  4501. public Criteria andSfyxybhzxqLessThanOrEqualTo(Integer value) {
  4502. addCriterion("sfyxybhzxq <=", value, "sfyxybhzxq");
  4503. return (Criteria) this;
  4504. }
  4505. public Criteria andSfyxybhzxqIn(List<Integer> values) {
  4506. addCriterion("sfyxybhzxq in", values, "sfyxybhzxq");
  4507. return (Criteria) this;
  4508. }
  4509. public Criteria andSfyxybhzxqNotIn(List<Integer> values) {
  4510. addCriterion("sfyxybhzxq not in", values, "sfyxybhzxq");
  4511. return (Criteria) this;
  4512. }
  4513. public Criteria andSfyxybhzxqBetween(Integer value1, Integer value2) {
  4514. addCriterion("sfyxybhzxq between", value1, value2, "sfyxybhzxq");
  4515. return (Criteria) this;
  4516. }
  4517. public Criteria andSfyxybhzxqNotBetween(Integer value1, Integer value2) {
  4518. addCriterion("sfyxybhzxq not between", value1, value2, "sfyxybhzxq");
  4519. return (Criteria) this;
  4520. }
  4521. public Criteria andYxhzdxIsNull() {
  4522. addCriterion("yxhzdx is null");
  4523. return (Criteria) this;
  4524. }
  4525. public Criteria andYxhzdxIsNotNull() {
  4526. addCriterion("yxhzdx is not null");
  4527. return (Criteria) this;
  4528. }
  4529. public Criteria andYxhzdxEqualTo(Integer value) {
  4530. addCriterion("yxhzdx =", value, "yxhzdx");
  4531. return (Criteria) this;
  4532. }
  4533. public Criteria andYxhzdxNotEqualTo(Integer value) {
  4534. addCriterion("yxhzdx <>", value, "yxhzdx");
  4535. return (Criteria) this;
  4536. }
  4537. public Criteria andYxhzdxGreaterThan(Integer value) {
  4538. addCriterion("yxhzdx >", value, "yxhzdx");
  4539. return (Criteria) this;
  4540. }
  4541. public Criteria andYxhzdxGreaterThanOrEqualTo(Integer value) {
  4542. addCriterion("yxhzdx >=", value, "yxhzdx");
  4543. return (Criteria) this;
  4544. }
  4545. public Criteria andYxhzdxLessThan(Integer value) {
  4546. addCriterion("yxhzdx <", value, "yxhzdx");
  4547. return (Criteria) this;
  4548. }
  4549. public Criteria andYxhzdxLessThanOrEqualTo(Integer value) {
  4550. addCriterion("yxhzdx <=", value, "yxhzdx");
  4551. return (Criteria) this;
  4552. }
  4553. public Criteria andYxhzdxIn(List<Integer> values) {
  4554. addCriterion("yxhzdx in", values, "yxhzdx");
  4555. return (Criteria) this;
  4556. }
  4557. public Criteria andYxhzdxNotIn(List<Integer> values) {
  4558. addCriterion("yxhzdx not in", values, "yxhzdx");
  4559. return (Criteria) this;
  4560. }
  4561. public Criteria andYxhzdxBetween(Integer value1, Integer value2) {
  4562. addCriterion("yxhzdx between", value1, value2, "yxhzdx");
  4563. return (Criteria) this;
  4564. }
  4565. public Criteria andYxhzdxNotBetween(Integer value1, Integer value2) {
  4566. addCriterion("yxhzdx not between", value1, value2, "yxhzdx");
  4567. return (Criteria) this;
  4568. }
  4569. public Criteria andYxhzdxValueIsNull() {
  4570. addCriterion("yxhzdx_value is null");
  4571. return (Criteria) this;
  4572. }
  4573. public Criteria andYxhzdxValueIsNotNull() {
  4574. addCriterion("yxhzdx_value is not null");
  4575. return (Criteria) this;
  4576. }
  4577. public Criteria andYxhzdxValueEqualTo(String value) {
  4578. addCriterion("yxhzdx_value =", value, "yxhzdxValue");
  4579. return (Criteria) this;
  4580. }
  4581. public Criteria andYxhzdxValueNotEqualTo(String value) {
  4582. addCriterion("yxhzdx_value <>", value, "yxhzdxValue");
  4583. return (Criteria) this;
  4584. }
  4585. public Criteria andYxhzdxValueGreaterThan(String value) {
  4586. addCriterion("yxhzdx_value >", value, "yxhzdxValue");
  4587. return (Criteria) this;
  4588. }
  4589. public Criteria andYxhzdxValueGreaterThanOrEqualTo(String value) {
  4590. addCriterion("yxhzdx_value >=", value, "yxhzdxValue");
  4591. return (Criteria) this;
  4592. }
  4593. public Criteria andYxhzdxValueLessThan(String value) {
  4594. addCriterion("yxhzdx_value <", value, "yxhzdxValue");
  4595. return (Criteria) this;
  4596. }
  4597. public Criteria andYxhzdxValueLessThanOrEqualTo(String value) {
  4598. addCriterion("yxhzdx_value <=", value, "yxhzdxValue");
  4599. return (Criteria) this;
  4600. }
  4601. public Criteria andYxhzdxValueLike(String value) {
  4602. addCriterion("yxhzdx_value like", value, "yxhzdxValue");
  4603. return (Criteria) this;
  4604. }
  4605. public Criteria andYxhzdxValueNotLike(String value) {
  4606. addCriterion("yxhzdx_value not like", value, "yxhzdxValue");
  4607. return (Criteria) this;
  4608. }
  4609. public Criteria andYxhzdxValueIn(List<String> values) {
  4610. addCriterion("yxhzdx_value in", values, "yxhzdxValue");
  4611. return (Criteria) this;
  4612. }
  4613. public Criteria andYxhzdxValueNotIn(List<String> values) {
  4614. addCriterion("yxhzdx_value not in", values, "yxhzdxValue");
  4615. return (Criteria) this;
  4616. }
  4617. public Criteria andYxhzdxValueBetween(String value1, String value2) {
  4618. addCriterion("yxhzdx_value between", value1, value2, "yxhzdxValue");
  4619. return (Criteria) this;
  4620. }
  4621. public Criteria andYxhzdxValueNotBetween(String value1, String value2) {
  4622. addCriterion("yxhzdx_value not between", value1, value2, "yxhzdxValue");
  4623. return (Criteria) this;
  4624. }
  4625. public Criteria andNcqdhzfsIsNull() {
  4626. addCriterion("ncqdhzfs is null");
  4627. return (Criteria) this;
  4628. }
  4629. public Criteria andNcqdhzfsIsNotNull() {
  4630. addCriterion("ncqdhzfs is not null");
  4631. return (Criteria) this;
  4632. }
  4633. public Criteria andNcqdhzfsEqualTo(Integer value) {
  4634. addCriterion("ncqdhzfs =", value, "ncqdhzfs");
  4635. return (Criteria) this;
  4636. }
  4637. public Criteria andNcqdhzfsNotEqualTo(Integer value) {
  4638. addCriterion("ncqdhzfs <>", value, "ncqdhzfs");
  4639. return (Criteria) this;
  4640. }
  4641. public Criteria andNcqdhzfsGreaterThan(Integer value) {
  4642. addCriterion("ncqdhzfs >", value, "ncqdhzfs");
  4643. return (Criteria) this;
  4644. }
  4645. public Criteria andNcqdhzfsGreaterThanOrEqualTo(Integer value) {
  4646. addCriterion("ncqdhzfs >=", value, "ncqdhzfs");
  4647. return (Criteria) this;
  4648. }
  4649. public Criteria andNcqdhzfsLessThan(Integer value) {
  4650. addCriterion("ncqdhzfs <", value, "ncqdhzfs");
  4651. return (Criteria) this;
  4652. }
  4653. public Criteria andNcqdhzfsLessThanOrEqualTo(Integer value) {
  4654. addCriterion("ncqdhzfs <=", value, "ncqdhzfs");
  4655. return (Criteria) this;
  4656. }
  4657. public Criteria andNcqdhzfsIn(List<Integer> values) {
  4658. addCriterion("ncqdhzfs in", values, "ncqdhzfs");
  4659. return (Criteria) this;
  4660. }
  4661. public Criteria andNcqdhzfsNotIn(List<Integer> values) {
  4662. addCriterion("ncqdhzfs not in", values, "ncqdhzfs");
  4663. return (Criteria) this;
  4664. }
  4665. public Criteria andNcqdhzfsBetween(Integer value1, Integer value2) {
  4666. addCriterion("ncqdhzfs between", value1, value2, "ncqdhzfs");
  4667. return (Criteria) this;
  4668. }
  4669. public Criteria andNcqdhzfsNotBetween(Integer value1, Integer value2) {
  4670. addCriterion("ncqdhzfs not between", value1, value2, "ncqdhzfs");
  4671. return (Criteria) this;
  4672. }
  4673. public Criteria andNcqdhzfsValueIsNull() {
  4674. addCriterion("ncqdhzfs_value is null");
  4675. return (Criteria) this;
  4676. }
  4677. public Criteria andNcqdhzfsValueIsNotNull() {
  4678. addCriterion("ncqdhzfs_value is not null");
  4679. return (Criteria) this;
  4680. }
  4681. public Criteria andNcqdhzfsValueEqualTo(String value) {
  4682. addCriterion("ncqdhzfs_value =", value, "ncqdhzfsValue");
  4683. return (Criteria) this;
  4684. }
  4685. public Criteria andNcqdhzfsValueNotEqualTo(String value) {
  4686. addCriterion("ncqdhzfs_value <>", value, "ncqdhzfsValue");
  4687. return (Criteria) this;
  4688. }
  4689. public Criteria andNcqdhzfsValueGreaterThan(String value) {
  4690. addCriterion("ncqdhzfs_value >", value, "ncqdhzfsValue");
  4691. return (Criteria) this;
  4692. }
  4693. public Criteria andNcqdhzfsValueGreaterThanOrEqualTo(String value) {
  4694. addCriterion("ncqdhzfs_value >=", value, "ncqdhzfsValue");
  4695. return (Criteria) this;
  4696. }
  4697. public Criteria andNcqdhzfsValueLessThan(String value) {
  4698. addCriterion("ncqdhzfs_value <", value, "ncqdhzfsValue");
  4699. return (Criteria) this;
  4700. }
  4701. public Criteria andNcqdhzfsValueLessThanOrEqualTo(String value) {
  4702. addCriterion("ncqdhzfs_value <=", value, "ncqdhzfsValue");
  4703. return (Criteria) this;
  4704. }
  4705. public Criteria andNcqdhzfsValueLike(String value) {
  4706. addCriterion("ncqdhzfs_value like", value, "ncqdhzfsValue");
  4707. return (Criteria) this;
  4708. }
  4709. public Criteria andNcqdhzfsValueNotLike(String value) {
  4710. addCriterion("ncqdhzfs_value not like", value, "ncqdhzfsValue");
  4711. return (Criteria) this;
  4712. }
  4713. public Criteria andNcqdhzfsValueIn(List<String> values) {
  4714. addCriterion("ncqdhzfs_value in", values, "ncqdhzfsValue");
  4715. return (Criteria) this;
  4716. }
  4717. public Criteria andNcqdhzfsValueNotIn(List<String> values) {
  4718. addCriterion("ncqdhzfs_value not in", values, "ncqdhzfsValue");
  4719. return (Criteria) this;
  4720. }
  4721. public Criteria andNcqdhzfsValueBetween(String value1, String value2) {
  4722. addCriterion("ncqdhzfs_value between", value1, value2, "ncqdhzfsValue");
  4723. return (Criteria) this;
  4724. }
  4725. public Criteria andNcqdhzfsValueNotBetween(String value1, String value2) {
  4726. addCriterion("ncqdhzfs_value not between", value1, value2, "ncqdhzfsValue");
  4727. return (Criteria) this;
  4728. }
  4729. public Criteria andXqjjjzsjIsNull() {
  4730. addCriterion("xqjjjzsj is null");
  4731. return (Criteria) this;
  4732. }
  4733. public Criteria andXqjjjzsjIsNotNull() {
  4734. addCriterion("xqjjjzsj is not null");
  4735. return (Criteria) this;
  4736. }
  4737. public Criteria andXqjjjzsjEqualTo(String value) {
  4738. addCriterion("xqjjjzsj =", value, "xqjjjzsj");
  4739. return (Criteria) this;
  4740. }
  4741. public Criteria andXqjjjzsjNotEqualTo(String value) {
  4742. addCriterion("xqjjjzsj <>", value, "xqjjjzsj");
  4743. return (Criteria) this;
  4744. }
  4745. public Criteria andXqjjjzsjGreaterThan(String value) {
  4746. addCriterion("xqjjjzsj >", value, "xqjjjzsj");
  4747. return (Criteria) this;
  4748. }
  4749. public Criteria andXqjjjzsjGreaterThanOrEqualTo(String value) {
  4750. addCriterion("xqjjjzsj >=", value, "xqjjjzsj");
  4751. return (Criteria) this;
  4752. }
  4753. public Criteria andXqjjjzsjLessThan(String value) {
  4754. addCriterion("xqjjjzsj <", value, "xqjjjzsj");
  4755. return (Criteria) this;
  4756. }
  4757. public Criteria andXqjjjzsjLessThanOrEqualTo(String value) {
  4758. addCriterion("xqjjjzsj <=", value, "xqjjjzsj");
  4759. return (Criteria) this;
  4760. }
  4761. public Criteria andXqjjjzsjLike(String value) {
  4762. addCriterion("xqjjjzsj like", value, "xqjjjzsj");
  4763. return (Criteria) this;
  4764. }
  4765. public Criteria andXqjjjzsjNotLike(String value) {
  4766. addCriterion("xqjjjzsj not like", value, "xqjjjzsj");
  4767. return (Criteria) this;
  4768. }
  4769. public Criteria andXqjjjzsjIn(List<String> values) {
  4770. addCriterion("xqjjjzsj in", values, "xqjjjzsj");
  4771. return (Criteria) this;
  4772. }
  4773. public Criteria andXqjjjzsjNotIn(List<String> values) {
  4774. addCriterion("xqjjjzsj not in", values, "xqjjjzsj");
  4775. return (Criteria) this;
  4776. }
  4777. public Criteria andXqjjjzsjBetween(String value1, String value2) {
  4778. addCriterion("xqjjjzsj between", value1, value2, "xqjjjzsj");
  4779. return (Criteria) this;
  4780. }
  4781. public Criteria andXqjjjzsjNotBetween(String value1, String value2) {
  4782. addCriterion("xqjjjzsj not between", value1, value2, "xqjjjzsj");
  4783. return (Criteria) this;
  4784. }
  4785. public Criteria andXqsfkegkIsNull() {
  4786. addCriterion("xqsfkegk is null");
  4787. return (Criteria) this;
  4788. }
  4789. public Criteria andXqsfkegkIsNotNull() {
  4790. addCriterion("xqsfkegk is not null");
  4791. return (Criteria) this;
  4792. }
  4793. public Criteria andXqsfkegkEqualTo(Integer value) {
  4794. addCriterion("xqsfkegk =", value, "xqsfkegk");
  4795. return (Criteria) this;
  4796. }
  4797. public Criteria andXqsfkegkNotEqualTo(Integer value) {
  4798. addCriterion("xqsfkegk <>", value, "xqsfkegk");
  4799. return (Criteria) this;
  4800. }
  4801. public Criteria andXqsfkegkGreaterThan(Integer value) {
  4802. addCriterion("xqsfkegk >", value, "xqsfkegk");
  4803. return (Criteria) this;
  4804. }
  4805. public Criteria andXqsfkegkGreaterThanOrEqualTo(Integer value) {
  4806. addCriterion("xqsfkegk >=", value, "xqsfkegk");
  4807. return (Criteria) this;
  4808. }
  4809. public Criteria andXqsfkegkLessThan(Integer value) {
  4810. addCriterion("xqsfkegk <", value, "xqsfkegk");
  4811. return (Criteria) this;
  4812. }
  4813. public Criteria andXqsfkegkLessThanOrEqualTo(Integer value) {
  4814. addCriterion("xqsfkegk <=", value, "xqsfkegk");
  4815. return (Criteria) this;
  4816. }
  4817. public Criteria andXqsfkegkIn(List<Integer> values) {
  4818. addCriterion("xqsfkegk in", values, "xqsfkegk");
  4819. return (Criteria) this;
  4820. }
  4821. public Criteria andXqsfkegkNotIn(List<Integer> values) {
  4822. addCriterion("xqsfkegk not in", values, "xqsfkegk");
  4823. return (Criteria) this;
  4824. }
  4825. public Criteria andXqsfkegkBetween(Integer value1, Integer value2) {
  4826. addCriterion("xqsfkegk between", value1, value2, "xqsfkegk");
  4827. return (Criteria) this;
  4828. }
  4829. public Criteria andXqsfkegkNotBetween(Integer value1, Integer value2) {
  4830. addCriterion("xqsfkegk not between", value1, value2, "xqsfkegk");
  4831. return (Criteria) this;
  4832. }
  4833. public Criteria andWjjjsntntgdhzzjIsNull() {
  4834. addCriterion("wjjjsntntgdhzzj is null");
  4835. return (Criteria) this;
  4836. }
  4837. public Criteria andWjjjsntntgdhzzjIsNotNull() {
  4838. addCriterion("wjjjsntntgdhzzj is not null");
  4839. return (Criteria) this;
  4840. }
  4841. public Criteria andWjjjsntntgdhzzjEqualTo(String value) {
  4842. addCriterion("wjjjsntntgdhzzj =", value, "wjjjsntntgdhzzj");
  4843. return (Criteria) this;
  4844. }
  4845. public Criteria andWjjjsntntgdhzzjNotEqualTo(String value) {
  4846. addCriterion("wjjjsntntgdhzzj <>", value, "wjjjsntntgdhzzj");
  4847. return (Criteria) this;
  4848. }
  4849. public Criteria andWjjjsntntgdhzzjGreaterThan(String value) {
  4850. addCriterion("wjjjsntntgdhzzj >", value, "wjjjsntntgdhzzj");
  4851. return (Criteria) this;
  4852. }
  4853. public Criteria andWjjjsntntgdhzzjGreaterThanOrEqualTo(String value) {
  4854. addCriterion("wjjjsntntgdhzzj >=", value, "wjjjsntntgdhzzj");
  4855. return (Criteria) this;
  4856. }
  4857. public Criteria andWjjjsntntgdhzzjLessThan(String value) {
  4858. addCriterion("wjjjsntntgdhzzj <", value, "wjjjsntntgdhzzj");
  4859. return (Criteria) this;
  4860. }
  4861. public Criteria andWjjjsntntgdhzzjLessThanOrEqualTo(String value) {
  4862. addCriterion("wjjjsntntgdhzzj <=", value, "wjjjsntntgdhzzj");
  4863. return (Criteria) this;
  4864. }
  4865. public Criteria andWjjjsntntgdhzzjLike(String value) {
  4866. addCriterion("wjjjsntntgdhzzj like", value, "wjjjsntntgdhzzj");
  4867. return (Criteria) this;
  4868. }
  4869. public Criteria andWjjjsntntgdhzzjNotLike(String value) {
  4870. addCriterion("wjjjsntntgdhzzj not like", value, "wjjjsntntgdhzzj");
  4871. return (Criteria) this;
  4872. }
  4873. public Criteria andWjjjsntntgdhzzjIn(List<String> values) {
  4874. addCriterion("wjjjsntntgdhzzj in", values, "wjjjsntntgdhzzj");
  4875. return (Criteria) this;
  4876. }
  4877. public Criteria andWjjjsntntgdhzzjNotIn(List<String> values) {
  4878. addCriterion("wjjjsntntgdhzzj not in", values, "wjjjsntntgdhzzj");
  4879. return (Criteria) this;
  4880. }
  4881. public Criteria andWjjjsntntgdhzzjBetween(String value1, String value2) {
  4882. addCriterion("wjjjsntntgdhzzj between", value1, value2, "wjjjsntntgdhzzj");
  4883. return (Criteria) this;
  4884. }
  4885. public Criteria andWjjjsntntgdhzzjNotBetween(String value1, String value2) {
  4886. addCriterion("wjjjsntntgdhzzj not between", value1, value2, "wjjjsntntgdhzzj");
  4887. return (Criteria) this;
  4888. }
  4889. public Criteria andZjytIsNull() {
  4890. addCriterion("zjyt is null");
  4891. return (Criteria) this;
  4892. }
  4893. public Criteria andZjytIsNotNull() {
  4894. addCriterion("zjyt is not null");
  4895. return (Criteria) this;
  4896. }
  4897. public Criteria andZjytEqualTo(String value) {
  4898. addCriterion("zjyt =", value, "zjyt");
  4899. return (Criteria) this;
  4900. }
  4901. public Criteria andZjytNotEqualTo(String value) {
  4902. addCriterion("zjyt <>", value, "zjyt");
  4903. return (Criteria) this;
  4904. }
  4905. public Criteria andZjytGreaterThan(String value) {
  4906. addCriterion("zjyt >", value, "zjyt");
  4907. return (Criteria) this;
  4908. }
  4909. public Criteria andZjytGreaterThanOrEqualTo(String value) {
  4910. addCriterion("zjyt >=", value, "zjyt");
  4911. return (Criteria) this;
  4912. }
  4913. public Criteria andZjytLessThan(String value) {
  4914. addCriterion("zjyt <", value, "zjyt");
  4915. return (Criteria) this;
  4916. }
  4917. public Criteria andZjytLessThanOrEqualTo(String value) {
  4918. addCriterion("zjyt <=", value, "zjyt");
  4919. return (Criteria) this;
  4920. }
  4921. public Criteria andZjytLike(String value) {
  4922. addCriterion("zjyt like", value, "zjyt");
  4923. return (Criteria) this;
  4924. }
  4925. public Criteria andZjytNotLike(String value) {
  4926. addCriterion("zjyt not like", value, "zjyt");
  4927. return (Criteria) this;
  4928. }
  4929. public Criteria andZjytIn(List<String> values) {
  4930. addCriterion("zjyt in", values, "zjyt");
  4931. return (Criteria) this;
  4932. }
  4933. public Criteria andZjytNotIn(List<String> values) {
  4934. addCriterion("zjyt not in", values, "zjyt");
  4935. return (Criteria) this;
  4936. }
  4937. public Criteria andZjytBetween(String value1, String value2) {
  4938. addCriterion("zjyt between", value1, value2, "zjyt");
  4939. return (Criteria) this;
  4940. }
  4941. public Criteria andZjytNotBetween(String value1, String value2) {
  4942. addCriterion("zjyt not between", value1, value2, "zjyt");
  4943. return (Criteria) this;
  4944. }
  4945. public Criteria andZjqkIsNull() {
  4946. addCriterion("zjqk is null");
  4947. return (Criteria) this;
  4948. }
  4949. public Criteria andZjqkIsNotNull() {
  4950. addCriterion("zjqk is not null");
  4951. return (Criteria) this;
  4952. }
  4953. public Criteria andZjqkEqualTo(String value) {
  4954. addCriterion("zjqk =", value, "zjqk");
  4955. return (Criteria) this;
  4956. }
  4957. public Criteria andZjqkNotEqualTo(String value) {
  4958. addCriterion("zjqk <>", value, "zjqk");
  4959. return (Criteria) this;
  4960. }
  4961. public Criteria andZjqkGreaterThan(String value) {
  4962. addCriterion("zjqk >", value, "zjqk");
  4963. return (Criteria) this;
  4964. }
  4965. public Criteria andZjqkGreaterThanOrEqualTo(String value) {
  4966. addCriterion("zjqk >=", value, "zjqk");
  4967. return (Criteria) this;
  4968. }
  4969. public Criteria andZjqkLessThan(String value) {
  4970. addCriterion("zjqk <", value, "zjqk");
  4971. return (Criteria) this;
  4972. }
  4973. public Criteria andZjqkLessThanOrEqualTo(String value) {
  4974. addCriterion("zjqk <=", value, "zjqk");
  4975. return (Criteria) this;
  4976. }
  4977. public Criteria andZjqkLike(String value) {
  4978. addCriterion("zjqk like", value, "zjqk");
  4979. return (Criteria) this;
  4980. }
  4981. public Criteria andZjqkNotLike(String value) {
  4982. addCriterion("zjqk not like", value, "zjqk");
  4983. return (Criteria) this;
  4984. }
  4985. public Criteria andZjqkIn(List<String> values) {
  4986. addCriterion("zjqk in", values, "zjqk");
  4987. return (Criteria) this;
  4988. }
  4989. public Criteria andZjqkNotIn(List<String> values) {
  4990. addCriterion("zjqk not in", values, "zjqk");
  4991. return (Criteria) this;
  4992. }
  4993. public Criteria andZjqkBetween(String value1, String value2) {
  4994. addCriterion("zjqk between", value1, value2, "zjqk");
  4995. return (Criteria) this;
  4996. }
  4997. public Criteria andZjqkNotBetween(String value1, String value2) {
  4998. addCriterion("zjqk not between", value1, value2, "zjqk");
  4999. return (Criteria) this;
  5000. }
  5001. public Criteria andXqjjfsIsNull() {
  5002. addCriterion("xqjjfs is null");
  5003. return (Criteria) this;
  5004. }
  5005. public Criteria andXqjjfsIsNotNull() {
  5006. addCriterion("xqjjfs is not null");
  5007. return (Criteria) this;
  5008. }
  5009. public Criteria andXqjjfsEqualTo(String value) {
  5010. addCriterion("xqjjfs =", value, "xqjjfs");
  5011. return (Criteria) this;
  5012. }
  5013. public Criteria andXqjjfsNotEqualTo(String value) {
  5014. addCriterion("xqjjfs <>", value, "xqjjfs");
  5015. return (Criteria) this;
  5016. }
  5017. public Criteria andXqjjfsGreaterThan(String value) {
  5018. addCriterion("xqjjfs >", value, "xqjjfs");
  5019. return (Criteria) this;
  5020. }
  5021. public Criteria andXqjjfsGreaterThanOrEqualTo(String value) {
  5022. addCriterion("xqjjfs >=", value, "xqjjfs");
  5023. return (Criteria) this;
  5024. }
  5025. public Criteria andXqjjfsLessThan(String value) {
  5026. addCriterion("xqjjfs <", value, "xqjjfs");
  5027. return (Criteria) this;
  5028. }
  5029. public Criteria andXqjjfsLessThanOrEqualTo(String value) {
  5030. addCriterion("xqjjfs <=", value, "xqjjfs");
  5031. return (Criteria) this;
  5032. }
  5033. public Criteria andXqjjfsLike(String value) {
  5034. addCriterion("xqjjfs like", value, "xqjjfs");
  5035. return (Criteria) this;
  5036. }
  5037. public Criteria andXqjjfsNotLike(String value) {
  5038. addCriterion("xqjjfs not like", value, "xqjjfs");
  5039. return (Criteria) this;
  5040. }
  5041. public Criteria andXqjjfsIn(List<String> values) {
  5042. addCriterion("xqjjfs in", values, "xqjjfs");
  5043. return (Criteria) this;
  5044. }
  5045. public Criteria andXqjjfsNotIn(List<String> values) {
  5046. addCriterion("xqjjfs not in", values, "xqjjfs");
  5047. return (Criteria) this;
  5048. }
  5049. public Criteria andXqjjfsBetween(String value1, String value2) {
  5050. addCriterion("xqjjfs between", value1, value2, "xqjjfs");
  5051. return (Criteria) this;
  5052. }
  5053. public Criteria andXqjjfsNotBetween(String value1, String value2) {
  5054. addCriterion("xqjjfs not between", value1, value2, "xqjjfs");
  5055. return (Criteria) this;
  5056. }
  5057. public Criteria andCreateTimeIsNull() {
  5058. addCriterion("create_time is null");
  5059. return (Criteria) this;
  5060. }
  5061. public Criteria andCreateTimeIsNotNull() {
  5062. addCriterion("create_time is not null");
  5063. return (Criteria) this;
  5064. }
  5065. public Criteria andCreateTimeEqualTo(Date value) {
  5066. addCriterion("create_time =", value, "createTime");
  5067. return (Criteria) this;
  5068. }
  5069. public Criteria andCreateTimeNotEqualTo(Date value) {
  5070. addCriterion("create_time <>", value, "createTime");
  5071. return (Criteria) this;
  5072. }
  5073. public Criteria andCreateTimeGreaterThan(Date value) {
  5074. addCriterion("create_time >", value, "createTime");
  5075. return (Criteria) this;
  5076. }
  5077. public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) {
  5078. addCriterion("create_time >=", value, "createTime");
  5079. return (Criteria) this;
  5080. }
  5081. public Criteria andCreateTimeLessThan(Date value) {
  5082. addCriterion("create_time <", value, "createTime");
  5083. return (Criteria) this;
  5084. }
  5085. public Criteria andCreateTimeLessThanOrEqualTo(Date value) {
  5086. addCriterion("create_time <=", value, "createTime");
  5087. return (Criteria) this;
  5088. }
  5089. public Criteria andCreateTimeIn(List<Date> values) {
  5090. addCriterion("create_time in", values, "createTime");
  5091. return (Criteria) this;
  5092. }
  5093. public Criteria andCreateTimeNotIn(List<Date> values) {
  5094. addCriterion("create_time not in", values, "createTime");
  5095. return (Criteria) this;
  5096. }
  5097. public Criteria andCreateTimeBetween(Date value1, Date value2) {
  5098. addCriterion("create_time between", value1, value2, "createTime");
  5099. return (Criteria) this;
  5100. }
  5101. public Criteria andCreateTimeNotBetween(Date value1, Date value2) {
  5102. addCriterion("create_time not between", value1, value2, "createTime");
  5103. return (Criteria) this;
  5104. }
  5105. }
  5106. /**
  5107. * This class was generated by MyBatis Generator. This class corresponds to the database table demand_collection
  5108. * @mbg.generated Thu Jul 09 14:27:49 CST 2020
  5109. */
  5110. public static class Criterion {
  5111. private String condition;
  5112. private Object value;
  5113. private Object secondValue;
  5114. private boolean noValue;
  5115. private boolean singleValue;
  5116. private boolean betweenValue;
  5117. private boolean listValue;
  5118. private String typeHandler;
  5119. public String getCondition() {
  5120. return condition;
  5121. }
  5122. public Object getValue() {
  5123. return value;
  5124. }
  5125. public Object getSecondValue() {
  5126. return secondValue;
  5127. }
  5128. public boolean isNoValue() {
  5129. return noValue;
  5130. }
  5131. public boolean isSingleValue() {
  5132. return singleValue;
  5133. }
  5134. public boolean isBetweenValue() {
  5135. return betweenValue;
  5136. }
  5137. public boolean isListValue() {
  5138. return listValue;
  5139. }
  5140. public String getTypeHandler() {
  5141. return typeHandler;
  5142. }
  5143. protected Criterion(String condition) {
  5144. super();
  5145. this.condition = condition;
  5146. this.typeHandler = null;
  5147. this.noValue = true;
  5148. }
  5149. protected Criterion(String condition, Object value, String typeHandler) {
  5150. super();
  5151. this.condition = condition;
  5152. this.value = value;
  5153. this.typeHandler = typeHandler;
  5154. if (value instanceof List<?>) {
  5155. this.listValue = true;
  5156. } else {
  5157. this.singleValue = true;
  5158. }
  5159. }
  5160. protected Criterion(String condition, Object value) {
  5161. this(condition, value, null);
  5162. }
  5163. protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
  5164. super();
  5165. this.condition = condition;
  5166. this.value = value;
  5167. this.secondValue = secondValue;
  5168. this.typeHandler = typeHandler;
  5169. this.betweenValue = true;
  5170. }
  5171. protected Criterion(String condition, Object value, Object secondValue) {
  5172. this(condition, value, secondValue, null);
  5173. }
  5174. }
  5175. /**
  5176. * This class was generated by MyBatis Generator.
  5177. * This class corresponds to the database table demand_collection
  5178. *
  5179. * @mbg.generated do_not_delete_during_merge Wed Jul 08 11:24:35 CST 2020
  5180. */
  5181. public static class Criteria extends GeneratedCriteria {
  5182. protected Criteria() {
  5183. super();
  5184. }
  5185. }
  5186. }