spring.log 967 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867
  1. 11:55:24:702 INFO 25452 --- [restartedMain] com.zksy.ZksyApplication : The following 1 profile is active: "druid"
  2. 11:55:26:475 INFO 25452 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode!
  3. 11:55:26:478 INFO 25452 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  4. 11:55:26:588 INFO 25452 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 94 ms. Found 0 Redis repository interfaces.
  5. 11:55:26:984 INFO 25452 --- [restartedMain] o.s.cloud.context.scope.GenericScope : BeanFactory id=3c481e74-3e90-36f2-b128-9d5c934cbba4
  6. 11:55:28:150 INFO 25452 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8301 (http)
  7. 11:55:28:167 INFO 25452 --- [restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  8. 11:55:28:168 INFO 25452 --- [restartedMain] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.106]
  9. 11:55:28:196 WARN 25452 --- [restartedMain] o.a.c.webresources.DirResourceSet : Disabled the global canonical file name cache to protect against CVE-2024-56337 when starting the WebResourceSet at [C:\Users\Administrator\AppData\Local\Temp\tomcat-docbase.8301.5733593116611756140] which is part of the web application []
  10. 11:55:28:359 INFO 25452 --- [restartedMain] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  11. 11:55:28:360 INFO 25452 --- [restartedMain] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 3645 ms
  12. 11:55:29:304 DEBUG 25452 --- [restartedMain] c.z.f.s.f.JwtAuthenticationTokenFilter : Filter 'jwtAuthenticationTokenFilter' configured for use
  13. 11:55:30:833 INFO 25452 --- [restartedMain] com.alibaba.druid.pool.DruidDataSource : {dataSource-1} inited
  14. 11:55:32:326 WARN 25452 --- [restartedMain] c.b.m.core.injector.DefaultSqlInjector : class com.zksy.base.domain.AlarmAssignDetail ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method.
  15. 11:55:32:348 WARN 25452 --- [restartedMain] c.b.m.core.injector.DefaultSqlInjector : class com.zksy.base.domain.AlarmAssignList ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method.
  16. 11:55:40:744 INFO 25452 --- [restartedMain] c.a.c.sentinel.SentinelWebMvcConfigurer : [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
  17. 11:55:41:628 INFO 25452 --- [restartedMain] c.z.s.impl.MinioFileStorageServiceImpl : 初始化MinIO成功
  18. 11:55:41:888 INFO 25452 --- [restartedMain] org.quartz.impl.StdSchedulerFactory : Using default implementation for ThreadExecutor
  19. 11:55:41:897 INFO 25452 --- [restartedMain] org.quartz.core.SchedulerSignalerImpl : Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  20. 11:55:41:898 INFO 25452 --- [restartedMain] org.quartz.core.QuartzScheduler : Quartz Scheduler v.2.3.2 created.
  21. 11:55:41:898 INFO 25452 --- [restartedMain] org.quartz.simpl.RAMJobStore : RAMJobStore initialized.
  22. 11:55:41:899 INFO 25452 --- [restartedMain] org.quartz.core.QuartzScheduler : Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  23. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  24. NOT STARTED.
  25. Currently in standby mode.
  26. Number of jobs executed: 0
  27. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  28. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  29. 11:55:41:899 INFO 25452 --- [restartedMain] org.quartz.impl.StdSchedulerFactory : Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  30. 11:55:41:899 INFO 25452 --- [restartedMain] org.quartz.impl.StdSchedulerFactory : Quartz scheduler version: 2.3.2
  31. 11:55:41:899 INFO 25452 --- [restartedMain] org.quartz.core.QuartzScheduler : JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@4aefacf
  32. 11:55:41:996 INFO 25452 --- [restartedMain] c.z.s.impl.MinioFileStorageServiceImpl : 初始化MinIO成功
  33. 11:55:42:779 INFO 25452 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.session.DisableEncodeUrlFilter@19855a17, org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@6abd9f47, org.springframework.security.web.context.SecurityContextPersistenceFilter@15051dc0, org.springframework.security.web.header.HeaderWriterFilter@353bf448, org.springframework.web.filter.CorsFilter@78698bcf, org.springframework.security.web.authentication.logout.LogoutFilter@1a82db04, org.springframework.web.filter.CorsFilter@78698bcf, com.zksy.framework.security.filter.JwtAuthenticationTokenFilter@5b6778cf, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@4d9f3634, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@71720cfc, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@47596bb7, org.springframework.security.web.session.SessionManagementFilter@2b51e805, org.springframework.security.web.access.ExceptionTranslationFilter@5bdca23c, org.springframework.security.web.access.intercept.AuthorizationFilter@25f4a5fc]
  34. 11:55:43:205 INFO 25452 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729
  35. 11:55:44:020 INFO 25452 --- [restartedMain] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  36. 11:55:45:022 WARN 25452 --- [restartedMain] iguration$LoadBalancerCaffeineWarnLogger : Spring Cloud LoadBalancer is currently working with the default cache. While this cache implementation is useful for development and tests, it's recommended to use Caffeine cache in production.You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath.
  37. 11:55:45:200 INFO 25452 --- [restartedMain] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of b00a614a-f90c-44c6-b5d7-441fbaef19cd
  38. 11:55:45:200 INFO 25452 --- [restartedMain] com.alibaba.nacos.common.remote.client : [b00a614a-f90c-44c6-b5d7-441fbaef19cd] RpcClient init label, labels = {module=naming, source=sdk}
  39. 11:55:45:202 INFO 25452 --- [restartedMain] com.alibaba.nacos.common.remote.client : [b00a614a-f90c-44c6-b5d7-441fbaef19cd] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  40. 11:55:45:202 INFO 25452 --- [restartedMain] com.alibaba.nacos.common.remote.client : [b00a614a-f90c-44c6-b5d7-441fbaef19cd] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  41. 11:55:45:202 INFO 25452 --- [restartedMain] com.alibaba.nacos.common.remote.client : [b00a614a-f90c-44c6-b5d7-441fbaef19cd] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  42. 11:55:45:202 INFO 25452 --- [restartedMain] com.alibaba.nacos.common.remote.client : [b00a614a-f90c-44c6-b5d7-441fbaef19cd] Try to connect to server on start up, server: {serverIp = '172.16.102.52', server main port = 8848}
  43. 11:55:45:349 INFO 25452 --- [restartedMain] com.alibaba.nacos.common.remote.client : [b00a614a-f90c-44c6-b5d7-441fbaef19cd] Success to connect to server [172.16.102.52:8848] on start up, connectionId = 1784605879688_172.16.102.252_59289
  44. 11:55:45:349 INFO 25452 --- [restartedMain] com.alibaba.nacos.common.remote.client : [b00a614a-f90c-44c6-b5d7-441fbaef19cd] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  45. 11:55:45:349 INFO 25452 --- [restartedMain] com.alibaba.nacos.common.remote.client : [b00a614a-f90c-44c6-b5d7-441fbaef19cd] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$490/0x0000000800455840
  46. 11:55:45:349 INFO 25452 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [b00a614a-f90c-44c6-b5d7-441fbaef19cd] Notify connected event to listeners.
  47. 11:55:45:397 INFO 25452 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8301 (http) with context path ''
  48. 11:55:45:417 INFO 25452 --- [restartedMain] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP pipe-network-service 192.168.110.235:8301 register finished
  49. 11:55:45:718 INFO 25452 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  50. 11:55:45:721 INFO 25452 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  51. 11:55:45:879 INFO 25452 --- [restartedMain] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  52. 11:55:45:897 INFO 25452 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [b00a614a-f90c-44c6-b5d7-441fbaef19cd] Receive server push request, request = NotifySubscriberRequest, requestId = 598
  53. 11:55:45:899 INFO 25452 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [b00a614a-f90c-44c6-b5d7-441fbaef19cd] Ack server push request, request = NotifySubscriberRequest, requestId = 598
  54. 11:55:45:969 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingPOST_1
  55. 11:55:45:984 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_1
  56. 11:55:45:987 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_1
  57. 11:55:45:994 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_1
  58. 11:55:46:000 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingPOST_2
  59. 11:55:46:001 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingPOST_3
  60. 11:55:46:005 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_2
  61. 11:55:46:005 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_3
  62. 11:55:46:006 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_2
  63. 11:55:46:007 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_3
  64. 11:55:46:016 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_1
  65. 11:55:46:018 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_2
  66. 11:55:46:019 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_3
  67. 11:55:46:023 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_2
  68. 11:55:46:023 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_3
  69. 11:55:46:025 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getActivePointsUsingGET_1
  70. 11:55:46:025 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_4
  71. 11:55:46:026 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_5
  72. 11:55:46:027 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingPUT_1
  73. 11:55:46:030 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_1
  74. 11:55:46:031 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_4
  75. 11:55:46:032 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_5
  76. 11:55:46:034 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAlarmDataListUsingGET_1
  77. 11:55:46:035 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_6
  78. 11:55:46:035 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_7
  79. 11:55:46:040 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingPOST_1
  80. 11:55:46:042 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_4
  81. 11:55:46:042 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_5
  82. 11:55:46:043 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_4
  83. 11:55:46:043 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_5
  84. 11:55:46:045 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: customAlarmUsingPOST_1
  85. 11:55:46:045 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: simulateEnvironmentUsingGET_1
  86. 11:55:46:046 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: simulateGasUsingGET_1
  87. 11:55:46:047 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: simulateManholeUsingGET_1
  88. 11:55:46:048 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: cacheUsingGET_1
  89. 11:55:46:049 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: clearCacheAllUsingDELETE_1
  90. 11:55:46:050 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: clearCacheKeyUsingDELETE_1
  91. 11:55:46:051 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: clearCacheNameUsingDELETE_1
  92. 11:55:46:051 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getCacheKeysUsingGET_1
  93. 11:55:46:052 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getCacheValueUsingGET_1
  94. 11:55:46:053 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_1
  95. 11:55:46:054 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getCodeUsingGET_1
  96. 11:55:46:057 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveWarningThresholdUsingPOST_1
  97. 11:55:46:059 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: verifyCaseInfoUsingPOST_1
  98. 11:55:46:067 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_1
  99. 11:55:46:069 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_8
  100. 11:55:46:069 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_9
  101. 11:55:46:071 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: uploadFileUsingPOST_1
  102. 11:55:46:071 WARN 25452 --- [restartedMain] s.d.s.w.r.p.ParameterDataTypeReader : Trying to infer dataType java.util.List<org.springframework.web.multipart.MultipartFile>
  103. 11:55:46:072 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: uploadFilesUsingPOST_1
  104. 11:55:46:072 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: fileDownloadUsingGET_1
  105. 11:55:46:073 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resourceDownloadUsingGET_1
  106. 11:55:46:075 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportAbnormalDevicesUsingPOST_1
  107. 11:55:46:077 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAbnormalDevicePageUsingGET_1
  108. 11:55:46:078 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAbnormalGisPointsUsingGET_1
  109. 11:55:46:079 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAbnormalPointsUsingGET_1
  110. 11:55:46:080 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllDevicePointsUsingGET_1
  111. 11:55:46:081 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceDetailUsingGET_1
  112. 11:55:46:082 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getGisStatisticsUsingGET_1
  113. 11:55:46:084 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportDeviceLedgerUsingPOST_1
  114. 11:55:46:085 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDevicePageUsingGET_1
  115. 11:55:46:087 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getGisPointsUsingGET_1
  116. 11:55:46:087 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTypeStatisticsUsingGET_1
  117. 11:55:46:091 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: createMaintainOrderUsingPOST_1
  118. 11:55:46:093 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteMaintainRecordUsingDELETE_1
  119. 11:55:46:094 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportMaintainRecordsUsingPOST_1
  120. 11:55:46:095 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getMaintainRecordListUsingGET_1
  121. 11:55:46:097 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getMaintainRecordPageUsingGET_1
  122. 11:55:46:098 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getMyMaintainRecordPageUsingGET_1
  123. 11:55:46:099 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: importMaintainRecordsUsingPOST_1
  124. 11:55:46:102 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveMaintainRecordUsingPOST_1
  125. 11:55:46:102 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateMaintainRecordUsingPUT_1
  126. 11:55:46:104 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_1
  127. 11:55:46:111 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_6
  128. 11:55:46:111 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_7
  129. 11:55:46:112 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_10
  130. 11:55:46:112 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_11
  131. 11:55:46:113 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listByCategoryUsingGET_1
  132. 11:55:46:115 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_6
  133. 11:55:46:115 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_7
  134. 11:55:46:116 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_1
  135. 11:55:46:117 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_2
  136. 11:55:46:118 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_3
  137. 11:55:46:120 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_8
  138. 11:55:46:121 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_9
  139. 11:55:46:121 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_12
  140. 11:55:46:122 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_13
  141. 11:55:46:124 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_8
  142. 11:55:46:124 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_9
  143. 11:55:46:125 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_2
  144. 11:55:46:125 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_3
  145. 11:55:46:127 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: acceptUsingPUT_1
  146. 11:55:46:128 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_4
  147. 11:55:46:128 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_5
  148. 11:55:46:131 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_10
  149. 11:55:46:131 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_11
  150. 11:55:46:132 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_14
  151. 11:55:46:132 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_15
  152. 11:55:46:133 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: rejectUsingPUT_1
  153. 11:55:46:135 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_10
  154. 11:55:46:136 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_11
  155. 11:55:46:136 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_4
  156. 11:55:46:136 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_5
  157. 11:55:46:140 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addTrackLogUsingPOST_1
  158. 11:55:46:140 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: closeUsingPUT_1
  159. 11:55:46:141 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_6
  160. 11:55:46:141 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_7
  161. 11:55:46:144 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_12
  162. 11:55:46:144 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_13
  163. 11:55:46:145 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_16
  164. 11:55:46:145 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_17
  165. 11:55:46:145 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrackLogsUsingGET_1
  166. 11:55:46:146 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: releaseUsingPUT_1
  167. 11:55:46:148 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_12
  168. 11:55:46:148 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_13
  169. 11:55:46:150 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_6
  170. 11:55:46:150 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_7
  171. 11:55:46:151 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_8
  172. 11:55:46:151 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_9
  173. 11:55:46:153 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: doReportUsingPUT_1
  174. 11:55:46:157 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: doTransferUsingPUT_1
  175. 11:55:46:160 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_14
  176. 11:55:46:160 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_15
  177. 11:55:46:160 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_18
  178. 11:55:46:161 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_19
  179. 11:55:46:161 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTransferLogsUsingGET_1
  180. 11:55:46:162 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_14
  181. 11:55:46:162 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_15
  182. 11:55:46:163 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_8
  183. 11:55:46:163 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_9
  184. 11:55:46:164 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: closeUrgeUsingPUT_1
  185. 11:55:46:165 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_10
  186. 11:55:46:165 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_11
  187. 11:55:46:167 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: doUrgeUsingPOST_1
  188. 11:55:46:170 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_16
  189. 11:55:46:170 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_17
  190. 11:55:46:171 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_20
  191. 11:55:46:171 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_21
  192. 11:55:46:172 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getUrgeDetailsUsingGET_1
  193. 11:55:46:174 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_16
  194. 11:55:46:175 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_17
  195. 11:55:46:175 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_10
  196. 11:55:46:176 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_11
  197. 11:55:46:177 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_12
  198. 11:55:46:177 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_13
  199. 11:55:46:180 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_18
  200. 11:55:46:180 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_19
  201. 11:55:46:181 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_22
  202. 11:55:46:181 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_23
  203. 11:55:46:184 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_18
  204. 11:55:46:185 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_19
  205. 11:55:46:186 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_12
  206. 11:55:46:186 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_13
  207. 11:55:46:187 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: verifyUsingPUT_1
  208. 11:55:46:189 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: approveUsingPUT_1
  209. 11:55:46:189 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_14
  210. 11:55:46:190 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_15
  211. 11:55:46:192 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_20
  212. 11:55:46:193 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_21
  213. 11:55:46:194 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_24
  214. 11:55:46:194 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_25
  215. 11:55:46:195 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: publishUsingPUT_1
  216. 11:55:46:196 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: rejectUsingPUT_2
  217. 11:55:46:197 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: rejectUsingPUT_3
  218. 11:55:46:201 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_20
  219. 11:55:46:201 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_21
  220. 11:55:46:201 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: submitForApprovalUsingPUT_1
  221. 11:55:46:202 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: submitFromPlanUsingPOST_1
  222. 11:55:46:203 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_14
  223. 11:55:46:203 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_15
  224. 11:55:46:204 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_16
  225. 11:55:46:204 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_17
  226. 11:55:46:207 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_22
  227. 11:55:46:207 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_23
  228. 11:55:46:207 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_26
  229. 11:55:46:208 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_27
  230. 11:55:46:208 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listByApprovalIdUsingGET_1
  231. 11:55:46:210 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_22
  232. 11:55:46:210 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_23
  233. 11:55:46:211 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_16
  234. 11:55:46:211 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_17
  235. 11:55:46:212 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_18
  236. 11:55:46:212 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_19
  237. 11:55:46:215 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_24
  238. 11:55:46:215 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_25
  239. 11:55:46:215 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_28
  240. 11:55:46:216 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_29
  241. 11:55:46:217 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getCategoryTreeUsingGET_1
  242. 11:55:46:218 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_24
  243. 11:55:46:219 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_25
  244. 11:55:46:219 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_18
  245. 11:55:46:219 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_19
  246. 11:55:46:231 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: maintainPageUsingGET_1
  247. 11:55:46:234 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pointRelPageUsingGET_1
  248. 11:55:46:238 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statusPageUsingGET_1
  249. 11:55:46:240 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: testPageUsingGET_1
  250. 11:55:46:243 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: typePageUsingGET_1
  251. 11:55:46:250 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: basePageUsingGET_1
  252. 11:55:46:250 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: baseDeleteUsingDELETE_1
  253. 11:55:46:252 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: baseDeleteBatchUsingDELETE_1
  254. 11:55:46:253 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: baseGetByIdUsingGET_1
  255. 11:55:46:253 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: baseListUsingGET_1
  256. 11:55:46:257 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: baseSaveUsingPOST_1
  257. 11:55:46:258 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: baseUpdateUsingPUT_1
  258. 11:55:46:258 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: maintainDeleteUsingDELETE_1
  259. 11:55:46:259 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: maintainDeleteBatchUsingDELETE_1
  260. 11:55:46:260 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: maintainGetByIdUsingGET_1
  261. 11:55:46:261 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: maintainSaveUsingPOST_1
  262. 11:55:46:262 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: maintainUpdateUsingPUT_1
  263. 11:55:46:263 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pointRelByEquipmentUsingGET_1
  264. 11:55:46:264 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pointRelByPointUsingGET_1
  265. 11:55:46:264 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pointRelDeleteUsingDELETE_1
  266. 11:55:46:265 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pointRelDeleteBatchUsingDELETE_1
  267. 11:55:46:267 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pointRelSaveUsingPOST_1
  268. 11:55:46:267 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pointRelSaveBatchUsingPOST_1
  269. 11:55:46:268 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statusDeleteUsingDELETE_1
  270. 11:55:46:269 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statusGetByIdUsingGET_1
  271. 11:55:46:270 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statusSaveUsingPOST_1
  272. 11:55:46:271 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statusUpdateUsingPUT_1
  273. 11:55:46:272 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: testDeleteUsingDELETE_1
  274. 11:55:46:272 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: testDeleteBatchUsingDELETE_1
  275. 11:55:46:273 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: testGetByIdUsingGET_1
  276. 11:55:46:275 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: testSaveUsingPOST_1
  277. 11:55:46:275 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: testUpdateUsingPUT_1
  278. 11:55:46:276 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: typeDeleteUsingDELETE_1
  279. 11:55:46:277 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: typeDeleteBatchUsingDELETE_1
  280. 11:55:46:277 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: typeGetByIdUsingGET_1
  281. 11:55:46:278 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: typeListUsingGET_1
  282. 11:55:46:279 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: typeSaveUsingPOST_1
  283. 11:55:46:280 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: typeUpdateUsingPUT_1
  284. 11:55:46:281 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_30
  285. 11:55:46:281 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_31
  286. 11:55:46:281 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_1
  287. 11:55:46:286 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_1
  288. 11:55:46:287 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_1
  289. 11:55:46:287 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: boundEquipmentIdsUsingGET_1
  290. 11:55:46:288 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingDELETE_1
  291. 11:55:46:288 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_20
  292. 11:55:46:289 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_21
  293. 11:55:46:289 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_32
  294. 11:55:46:289 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_33
  295. 11:55:46:290 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_2
  296. 11:55:46:290 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_3
  297. 11:55:46:291 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_26
  298. 11:55:46:292 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_27
  299. 11:55:46:293 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_1
  300. 11:55:46:293 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_34
  301. 11:55:46:294 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_35
  302. 11:55:46:294 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_4
  303. 11:55:46:294 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_5
  304. 11:55:46:295 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: monthlyStatsUsingGET_1
  305. 11:55:46:296 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_2
  306. 11:55:46:296 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_3
  307. 11:55:46:306 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentPageUsingGET_1
  308. 11:55:46:309 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: historyPageUsingGET_1
  309. 11:55:46:310 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_4
  310. 11:55:46:310 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_5
  311. 11:55:46:310 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_22
  312. 11:55:46:310 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_23
  313. 11:55:46:311 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: finalApproveUsingPUT_1
  314. 11:55:46:312 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: firstApproveUsingPUT_1
  315. 11:55:46:313 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_36
  316. 11:55:46:313 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_37
  317. 11:55:46:318 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: publishUsingPOST_1
  318. 11:55:46:319 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_28
  319. 11:55:46:319 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_29
  320. 11:55:46:319 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: scopeUsersUsingGET_1
  321. 11:55:46:320 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_2
  322. 11:55:46:320 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_3
  323. 11:55:46:321 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateStatusUsingPUT_1
  324. 11:55:46:322 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_1
  325. 11:55:46:323 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_6
  326. 11:55:46:324 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_7
  327. 11:55:46:325 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_30
  328. 11:55:46:325 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_31
  329. 11:55:46:326 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_4
  330. 11:55:46:326 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_5
  331. 11:55:46:327 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_2
  332. 11:55:46:327 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_3
  333. 11:55:46:328 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_8
  334. 11:55:46:328 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_9
  335. 11:55:46:329 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_32
  336. 11:55:46:330 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_33
  337. 11:55:46:330 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_6
  338. 11:55:46:330 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_7
  339. 11:55:46:332 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePlanUsingDELETE_1
  340. 11:55:46:332 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteTemplateUsingDELETE_1
  341. 11:55:46:333 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: plansUsingGET_1
  342. 11:55:46:333 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resultUsingGET_1
  343. 11:55:46:335 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: savePlanUsingPOST_1
  344. 11:55:46:336 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveTemplateUsingPOST_1
  345. 11:55:46:336 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: templatesUsingGET_1
  346. 11:55:46:337 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updatePlanUsingPUT_1
  347. 11:55:46:337 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateTemplateUsingPUT_1
  348. 11:55:46:341 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addLogUsingPOST_1
  349. 11:55:46:342 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteEventUsingDELETE_1
  350. 11:55:46:342 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteProjectUsingDELETE_1
  351. 11:55:46:343 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteRoleUsingDELETE_1
  352. 11:55:46:343 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteSceneUsingDELETE_1
  353. 11:55:46:344 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteTaskUsingDELETE_1
  354. 11:55:46:344 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: eventUsingGET_1
  355. 11:55:46:345 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: logUsingGET_1
  356. 11:55:46:346 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: processUsingPOST_1
  357. 11:55:46:346 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: projectsUsingGET_1
  358. 11:55:46:347 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resultUsingGET_2
  359. 11:55:46:347 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resultUsingGET_3
  360. 11:55:46:347 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: roleUsingGET_1
  361. 11:55:46:348 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveEventUsingPOST_1
  362. 11:55:46:349 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveProjectUsingPOST_1
  363. 11:55:46:350 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveRoleUsingPOST_1
  364. 11:55:46:351 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveSceneUsingPOST_1
  365. 11:55:46:352 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveTaskUsingPOST_1
  366. 11:55:46:353 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: sceneUsingGET_1
  367. 11:55:46:353 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: taskUsingGET_1
  368. 11:55:46:355 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAlarmsUsingGET_1
  369. 11:55:46:356 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDailyStatsUsingGET_1
  370. 11:55:46:356 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_1
  371. 11:55:46:357 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestUsingGET_1
  372. 11:55:46:358 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendUsingGET_1
  373. 11:55:46:370 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addLeaderInstructionUsingPOST_1
  374. 11:55:46:371 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchWarningUsingDELETE_1
  375. 11:55:46:372 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteWarningUsingDELETE_1
  376. 11:55:46:372 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getArchiveUsingGET_1
  377. 11:55:46:373 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getArchiveListUsingGET_1
  378. 11:55:46:374 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAttachmentsUsingGET_1
  379. 11:55:46:375 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getCompletedWarningsUsingGET_1
  380. 11:55:46:376 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDashboardStatisticsUsingGET_1
  381. 11:55:46:376 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDisposalDetailUsingGET_1
  382. 11:55:46:377 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDisposalHistoryUsingGET_1
  383. 11:55:46:377 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDisposalListUsingGET_1
  384. 11:55:46:378 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDisposalProcessUsingGET_1
  385. 11:55:46:380 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLinkedAlarmsUsingGET_1
  386. 11:55:46:380 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getProcessDiagramUsingGET_1
  387. 11:55:46:381 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getProcessStatisticsUsingGET_1
  388. 11:55:46:382 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getProcessingWarningsUsingGET_1
  389. 11:55:46:383 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getStatisticsUsingGET_1
  390. 11:55:46:384 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTodoListUsingGET_1
  391. 11:55:46:385 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getWarningDetailUsingGET_1
  392. 11:55:46:385 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getWarningFullDetailUsingGET_1
  393. 11:55:46:387 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getWarningListUsingGET_1
  394. 11:55:46:388 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: linkAlarmsUsingPOST_1
  395. 11:55:46:389 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: publishWarningUsingPOST_1
  396. 11:55:46:389 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resolveWarningUsingPOST_1
  397. 11:55:46:390 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: returnWarningUsingPOST_1
  398. 11:55:46:392 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveWarningUsingPOST_1
  399. 11:55:46:393 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: searchWarningsUsingGET_1
  400. 11:55:46:394 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: supervisionWarningUsingPOST_1
  401. 11:55:46:395 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateWarningUsingPUT_1
  402. 11:55:46:396 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: upgradeWarningUsingPOST_1
  403. 11:55:46:399 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getBySpecialUsingGET_1
  404. 11:55:46:400 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getOverviewUsingGET_1
  405. 11:55:46:401 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getRangeUsingGET_1
  406. 11:55:46:403 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_1
  407. 11:55:46:405 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDisposeStatusStatUsingGET_1
  408. 11:55:46:409 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByTypeUsingGET_1
  409. 11:55:46:409 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getOverviewUsingGET_2
  410. 11:55:46:410 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getOverviewUsingGET_3
  411. 11:55:46:410 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getRangeUsingGET_2
  412. 11:55:46:411 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getRangeUsingGET_3
  413. 11:55:46:411 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_2
  414. 11:55:46:411 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_3
  415. 11:55:46:412 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTodayStatsUsingGET_1
  416. 11:55:46:413 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryTodayPageUsingGET_1
  417. 11:55:46:414 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendByDayUsingGET_1
  418. 11:55:46:415 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendByMonthUsingGET_1
  419. 11:55:46:419 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_6
  420. 11:55:46:420 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_7
  421. 11:55:46:420 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_2
  422. 11:55:46:420 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_3
  423. 11:55:46:421 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindPumpStationUsingPOST_1
  424. 11:55:46:421 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingDELETE_2
  425. 11:55:46:421 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingDELETE_3
  426. 11:55:46:422 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_24
  427. 11:55:46:422 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_25
  428. 11:55:46:422 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_38
  429. 11:55:46:423 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_39
  430. 11:55:46:423 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_10
  431. 11:55:46:423 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_11
  432. 11:55:46:425 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_34
  433. 11:55:46:425 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_35
  434. 11:55:46:426 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_8
  435. 11:55:46:426 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_9
  436. 11:55:46:428 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_1
  437. 11:55:46:428 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getStatsUsingGET_1
  438. 11:55:46:432 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_26
  439. 11:55:46:432 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_27
  440. 11:55:46:433 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_1
  441. 11:55:46:433 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_26
  442. 11:55:46:433 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_27
  443. 11:55:46:434 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByTopLevelTypeUsingGET_1
  444. 11:55:46:434 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_40
  445. 11:55:46:435 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_41
  446. 11:55:46:435 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getEquipmentByPointUsingGET_1
  447. 11:55:46:436 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getEquipmentDetailUsingGET_1
  448. 11:55:46:436 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_2
  449. 11:55:46:436 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_3
  450. 11:55:46:437 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_36
  451. 11:55:46:437 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_37
  452. 11:55:46:438 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_1
  453. 11:55:46:439 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: testEquipmentUsingPOST_1
  454. 11:55:46:439 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_20
  455. 11:55:46:440 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_21
  456. 11:55:46:440 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateEquipmentStatusUsingPUT_1
  457. 11:55:46:442 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_28
  458. 11:55:46:442 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_29
  459. 11:55:46:443 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_2
  460. 11:55:46:443 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_3
  461. 11:55:46:443 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_28
  462. 11:55:46:444 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_29
  463. 11:55:46:444 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_42
  464. 11:55:46:444 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_43
  465. 11:55:46:445 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_4
  466. 11:55:46:445 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_5
  467. 11:55:46:445 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_38
  468. 11:55:46:446 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_39
  469. 11:55:46:446 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_2
  470. 11:55:46:447 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_3
  471. 11:55:46:448 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_22
  472. 11:55:46:448 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_23
  473. 11:55:46:450 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_30
  474. 11:55:46:450 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_31
  475. 11:55:46:451 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_4
  476. 11:55:46:451 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_5
  477. 11:55:46:451 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_30
  478. 11:55:46:451 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_31
  479. 11:55:46:452 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_44
  480. 11:55:46:452 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_45
  481. 11:55:46:452 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_6
  482. 11:55:46:452 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_7
  483. 11:55:46:453 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_40
  484. 11:55:46:453 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_41
  485. 11:55:46:454 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_4
  486. 11:55:46:454 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_5
  487. 11:55:46:455 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_24
  488. 11:55:46:455 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_25
  489. 11:55:46:457 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_32
  490. 11:55:46:457 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_33
  491. 11:55:46:457 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_6
  492. 11:55:46:458 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_7
  493. 11:55:46:458 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_32
  494. 11:55:46:458 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_33
  495. 11:55:46:459 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_46
  496. 11:55:46:459 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_47
  497. 11:55:46:459 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_8
  498. 11:55:46:459 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_9
  499. 11:55:46:460 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_42
  500. 11:55:46:460 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_43
  501. 11:55:46:461 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_6
  502. 11:55:46:461 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_7
  503. 11:55:46:462 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_26
  504. 11:55:46:462 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_27
  505. 11:55:46:464 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAlarmCountsUsingGET_1
  506. 11:55:46:464 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAveragePressureUsingGET_1
  507. 11:55:46:465 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDailyStatsUsingGET_2
  508. 11:55:46:465 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDailyStatsUsingGET_3
  509. 11:55:46:465 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_2
  510. 11:55:46:466 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_3
  511. 11:55:46:466 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPressureDistributionUsingGET_1
  512. 11:55:46:467 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getSignalVsPressureUsingGET_1
  513. 11:55:46:470 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportFlowMonitorDataUsingGET_1
  514. 11:55:46:471 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getFlowMonitorPageUsingGET_1
  515. 11:55:46:471 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getFlowTrend24hUsingGET_1
  516. 11:55:46:473 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: dispatchUsingPOST_1
  517. 11:55:46:473 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: equipmentUsingGET_1
  518. 11:55:46:474 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: historyUsingGET_1
  519. 11:55:46:475 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resolveUsingPUT_1
  520. 11:55:46:475 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statsUsingGET_1
  521. 11:55:46:476 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: summaryUsingGET_1
  522. 11:55:46:479 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_34
  523. 11:55:46:479 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_35
  524. 11:55:46:480 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePointRelUsingDELETE_1
  525. 11:55:46:481 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findFullByPageUsingGET_1
  526. 11:55:46:482 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAbnormalListUsingGET_1
  527. 11:55:46:483 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getEquipmentStatusUsingGET_1
  528. 11:55:46:483 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPointRelByEquipmentUsingGET_1
  529. 11:55:46:484 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPointRelByPointUsingGET_1
  530. 11:55:46:484 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_44
  531. 11:55:46:485 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_45
  532. 11:55:46:486 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveDeviceRelUsingPOST_1
  533. 11:55:46:486 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: savePointRelUsingPOST_1
  534. 11:55:46:487 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: savePointRelBatchUsingPOST_1
  535. 11:55:46:488 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_28
  536. 11:55:46:488 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_29
  537. 11:55:46:490 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_36
  538. 11:55:46:490 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_37
  539. 11:55:46:491 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteDeviceRelUsingDELETE_1
  540. 11:55:46:494 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_34
  541. 11:55:46:494 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_35
  542. 11:55:46:495 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_48
  543. 11:55:46:495 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_49
  544. 11:55:46:495 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_12
  545. 11:55:46:496 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_13
  546. 11:55:46:496 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listDevicesUsingGET_1
  547. 11:55:46:496 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionsUsingGET_1
  548. 11:55:46:498 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_46
  549. 11:55:46:499 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_47
  550. 11:55:46:500 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveDeviceRelUsingPOST_2
  551. 11:55:46:500 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveDeviceRelUsingPOST_3
  552. 11:55:46:501 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveDeviceRelBatchUsingPOST_1
  553. 11:55:46:501 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_30
  554. 11:55:46:502 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_31
  555. 11:55:46:503 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPointsUsingGET_1
  556. 11:55:46:504 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendUsingGET_2
  557. 11:55:46:504 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendUsingGET_3
  558. 11:55:46:506 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAlarmsUsingGET_2
  559. 11:55:46:506 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAlarmsUsingGET_3
  560. 11:55:46:506 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDailyStatsUsingGET_4
  561. 11:55:46:507 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDailyStatsUsingGET_5
  562. 11:55:46:507 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_4
  563. 11:55:46:507 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_5
  564. 11:55:46:507 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataUsingGET_1
  565. 11:55:46:508 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestWithAlarmUsingGET_1
  566. 11:55:46:508 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getOnlineRateUsingGET_1
  567. 11:55:46:509 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendUsingGET_4
  568. 11:55:46:509 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendUsingGET_5
  569. 11:55:46:510 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_38
  570. 11:55:46:510 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_39
  571. 11:55:46:513 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_36
  572. 11:55:46:513 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_37
  573. 11:55:46:514 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_50
  574. 11:55:46:514 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_51
  575. 11:55:46:516 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_48
  576. 11:55:46:516 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_49
  577. 11:55:46:517 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_32
  578. 11:55:46:517 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_33
  579. 11:55:46:518 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_40
  580. 11:55:46:519 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_41
  581. 11:55:46:521 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_38
  582. 11:55:46:521 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_39
  583. 11:55:46:521 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_52
  584. 11:55:46:522 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_53
  585. 11:55:46:522 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionsUsingGET_2
  586. 11:55:46:522 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionsUsingGET_3
  587. 11:55:46:525 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_50
  588. 11:55:46:525 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_51
  589. 11:55:46:526 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_34
  590. 11:55:46:526 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_35
  591. 11:55:46:527 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportDataUsingGET_1
  592. 11:55:46:528 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_42
  593. 11:55:46:528 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_43
  594. 11:55:46:529 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteDeviceRelUsingDELETE_2
  595. 11:55:46:529 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteDeviceRelUsingDELETE_3
  596. 11:55:46:531 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_40
  597. 11:55:46:532 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_41
  598. 11:55:46:532 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_54
  599. 11:55:46:532 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_55
  600. 11:55:46:533 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listByNetworkIdUsingGET_1
  601. 11:55:46:533 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listDevicesUsingGET_2
  602. 11:55:46:534 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listDevicesUsingGET_3
  603. 11:55:46:534 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionsUsingGET_4
  604. 11:55:46:548 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionsUsingGET_5
  605. 11:55:46:550 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_52
  606. 11:55:46:551 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_53
  607. 11:55:46:551 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveDeviceRelUsingPOST_4
  608. 11:55:46:551 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveDeviceRelUsingPOST_5
  609. 11:55:46:552 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveDeviceRelBatchUsingPOST_2
  610. 11:55:46:552 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveDeviceRelBatchUsingPOST_3
  611. 11:55:46:552 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_36
  612. 11:55:46:553 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_37
  613. 11:55:46:554 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_44
  614. 11:55:46:554 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_45
  615. 11:55:46:556 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_42
  616. 11:55:46:556 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_43
  617. 11:55:46:557 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_56
  618. 11:55:46:557 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_57
  619. 11:55:46:557 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listByNetworkIdUsingGET_2
  620. 11:55:46:557 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listByNetworkIdUsingGET_3
  621. 11:55:46:559 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_54
  622. 11:55:46:559 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_55
  623. 11:55:46:559 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statsUsingGET_2
  624. 11:55:46:560 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statsUsingGET_3
  625. 11:55:46:560 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_38
  626. 11:55:46:560 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_39
  627. 11:55:46:561 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getEquipmentsUsingGET_1
  628. 11:55:46:562 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getManholesUsingGET_1
  629. 11:55:46:562 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPipeLinesUsingGET_1
  630. 11:55:46:564 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_46
  631. 11:55:46:564 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_47
  632. 11:55:46:564 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportDataUsingGET_2
  633. 11:55:46:565 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportDataUsingGET_3
  634. 11:55:46:565 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_58
  635. 11:55:46:565 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_59
  636. 11:55:46:566 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getMapPointsUsingGET_1
  637. 11:55:46:568 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_8
  638. 11:55:46:568 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_9
  639. 11:55:46:571 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_56
  640. 11:55:46:572 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_57
  641. 11:55:46:572 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsByLevelUsingGET_1
  642. 11:55:46:573 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsByRegionUsingGET_1
  643. 11:55:46:574 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsByStatusUsingGET_1
  644. 11:55:46:574 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsByTypeUsingGET_1
  645. 11:55:46:575 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsOverviewUsingGET_1
  646. 11:55:46:575 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsStatusTimelineUsingGET_1
  647. 11:55:46:576 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsTypeTimelineUsingGET_1
  648. 11:55:46:577 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: submitUsingPUT_1
  649. 11:55:46:577 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_40
  650. 11:55:46:577 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_41
  651. 11:55:46:580 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportLeakageMonitorDataUsingGET_1
  652. 11:55:46:581 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLeakageMonitorPageUsingGET_1
  653. 11:55:46:581 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLeakageTrend24hUsingGET_1
  654. 11:55:46:587 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryByDateUsingPOST_1
  655. 11:55:46:592 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: abnormalTerminalTrendUsingPOST_1
  656. 11:55:46:595 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: caseRateTrendUsingPOST_1
  657. 11:55:46:598 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: batchDispatchUsingPOST_1
  658. 11:55:46:600 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: processTaskUsingPOST_1
  659. 11:55:46:606 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_2
  660. 11:55:46:606 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_3
  661. 11:55:46:609 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_60
  662. 11:55:46:609 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_61
  663. 11:55:46:614 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllImeiCardNumbersUsingGET_1
  664. 11:55:46:615 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataByImeiUsingGET_1
  665. 11:55:46:616 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getOverallStatisticsUsingGET_1
  666. 11:55:46:617 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryAlarmDataUsingGET_1
  667. 11:55:46:618 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_4
  668. 11:55:46:618 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_5
  669. 11:55:46:619 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statAlarmTrendByHourUsingGET_1
  670. 11:55:46:621 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statManholeByDeviceUsingGET_1
  671. 11:55:46:622 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statTemperatureTrendByHourUsingGET_1
  672. 11:55:46:627 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveWarningThresholdUsingPOST_2
  673. 11:55:46:627 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveWarningThresholdUsingPOST_3
  674. 11:55:46:628 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateDeviceStatusUsingPOST_1
  675. 11:55:46:636 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_4
  676. 11:55:46:636 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_5
  677. 11:55:46:637 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_62
  678. 11:55:46:637 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_63
  679. 11:55:46:640 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getManholeDataListUsingPOST_1
  680. 11:55:46:643 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: countByTypeUsingPOST_1
  681. 11:55:46:643 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_1
  682. 11:55:46:646 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_44
  683. 11:55:46:646 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_45
  684. 11:55:46:646 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_4
  685. 11:55:46:647 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_5
  686. 11:55:46:647 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_8
  687. 11:55:46:647 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_9
  688. 11:55:46:648 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_48
  689. 11:55:46:648 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_49
  690. 11:55:46:648 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_64
  691. 11:55:46:649 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_65
  692. 11:55:46:650 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_10
  693. 11:55:46:650 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_11
  694. 11:55:46:651 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPointDetailUsingGET_1
  695. 11:55:46:652 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPointsByNetworkUsingGET_1
  696. 11:55:46:653 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_58
  697. 11:55:46:653 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_59
  698. 11:55:46:654 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_8
  699. 11:55:46:654 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_9
  700. 11:55:46:655 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: unbindEquipmentUsingPOST_1
  701. 11:55:46:656 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_42
  702. 11:55:46:656 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_43
  703. 11:55:46:658 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllDeviceCodesUsingGET_1
  704. 11:55:46:659 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataByDeviceUsingGET_1
  705. 11:55:46:659 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryAbnormalDataUsingGET_1
  706. 11:55:46:660 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_6
  707. 11:55:46:660 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_7
  708. 11:55:46:660 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statPowerByDeviceUsingGET_1
  709. 11:55:46:661 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statPowerTrendByHourUsingGET_1
  710. 11:55:46:663 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_46
  711. 11:55:46:663 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_47
  712. 11:55:46:664 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_10
  713. 11:55:46:664 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_11
  714. 11:55:46:664 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_50
  715. 11:55:46:665 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_51
  716. 11:55:46:665 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_66
  717. 11:55:46:666 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_67
  718. 11:55:46:666 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_12
  719. 11:55:46:666 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_13
  720. 11:55:46:667 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_60
  721. 11:55:46:667 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_61
  722. 11:55:46:668 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_10
  723. 11:55:46:668 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_11
  724. 11:55:46:669 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_44
  725. 11:55:46:669 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_45
  726. 11:55:46:675 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_10
  727. 11:55:46:675 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_11
  728. 11:55:46:676 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_6
  729. 11:55:46:676 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_7
  730. 11:55:46:677 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: boundEquipmentIdsUsingGET_2
  731. 11:55:46:677 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: boundEquipmentIdsUsingGET_3
  732. 11:55:46:678 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingDELETE_4
  733. 11:55:46:678 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingDELETE_5
  734. 11:55:46:679 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_52
  735. 11:55:46:680 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_53
  736. 11:55:46:680 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_68
  737. 11:55:46:681 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_69
  738. 11:55:46:681 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_14
  739. 11:55:46:681 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_15
  740. 11:55:46:684 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_62
  741. 11:55:46:684 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_63
  742. 11:55:46:685 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_10
  743. 11:55:46:686 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_11
  744. 11:55:46:687 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: dispatchUsingPOST_2
  745. 11:55:46:688 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: dispatchUsingPOST_3
  746. 11:55:46:688 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: equipmentUsingGET_2
  747. 11:55:46:689 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: equipmentUsingGET_3
  748. 11:55:46:690 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: historyUsingGET_2
  749. 11:55:46:690 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: historyUsingGET_3
  750. 11:55:46:690 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resolveUsingPUT_2
  751. 11:55:46:691 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resolveUsingPUT_3
  752. 11:55:46:691 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statsUsingGET_4
  753. 11:55:46:692 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statsUsingGET_5
  754. 11:55:46:693 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getHistoryUsingGET_1
  755. 11:55:46:693 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPointsUsingGET_2
  756. 11:55:46:693 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPointsUsingGET_3
  757. 11:55:46:694 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendUsingGET_6
  758. 11:55:46:694 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendUsingGET_7
  759. 11:55:46:697 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportPressureMonitorDataUsingGET_1
  760. 11:55:46:698 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPressureMonitorPageUsingGET_1
  761. 11:55:46:698 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPressureTrend24hUsingGET_1
  762. 11:55:46:700 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllDeviceCodesUsingGET_2
  763. 11:55:46:700 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllDeviceCodesUsingGET_3
  764. 11:55:46:701 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_6
  765. 11:55:46:701 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_7
  766. 11:55:46:701 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataByDeviceUsingGET_2
  767. 11:55:46:701 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataByDeviceUsingGET_3
  768. 11:55:46:702 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryAbnormalDataUsingGET_2
  769. 11:55:46:702 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryAbnormalDataUsingGET_3
  770. 11:55:46:703 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_8
  771. 11:55:46:703 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_9
  772. 11:55:46:704 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statFlowTrendByHourUsingGET_1
  773. 11:55:46:705 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statRadarByDeviceUsingGET_1
  774. 11:55:46:706 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getFlowHistoryUsingGET_1
  775. 11:55:46:706 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getGasAlarmLatestUsingGET_1
  776. 11:55:46:707 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPointsWithLatestDataUsingGET_1
  777. 11:55:46:708 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPressureHistoryUsingGET_1
  778. 11:55:46:709 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getVideoListUsingGET_1
  779. 11:55:46:710 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_54
  780. 11:55:46:710 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_55
  781. 11:55:46:714 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_48
  782. 11:55:46:714 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_49
  783. 11:55:46:715 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_70
  784. 11:55:46:715 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_71
  785. 11:55:46:716 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getFourColorMapUsingGET_1
  786. 11:55:46:718 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_64
  787. 11:55:46:719 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_65
  788. 11:55:46:720 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_46
  789. 11:55:46:720 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_47
  790. 11:55:46:721 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_2
  791. 11:55:46:721 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_3
  792. 11:55:46:724 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_1
  793. 11:55:46:725 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_1
  794. 11:55:46:725 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getConfigKeyUsingGET_1
  795. 11:55:46:726 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_4
  796. 11:55:46:726 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_5
  797. 11:55:46:726 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: refreshCacheUsingDELETE_1
  798. 11:55:46:727 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_1
  799. 11:55:46:732 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_16
  800. 11:55:46:732 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_17
  801. 11:55:46:733 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_2
  802. 11:55:46:733 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_3
  803. 11:55:46:737 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_2
  804. 11:55:46:737 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_3
  805. 11:55:46:738 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_2
  806. 11:55:46:738 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_3
  807. 11:55:46:739 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: excludeChildUsingGET_1
  808. 11:55:46:739 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_6
  809. 11:55:46:740 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_7
  810. 11:55:46:744 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_18
  811. 11:55:46:744 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_19
  812. 11:55:46:745 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_2
  813. 11:55:46:745 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_3
  814. 11:55:46:748 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_4
  815. 11:55:46:748 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_5
  816. 11:55:46:748 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: dictTypeUsingGET_1
  817. 11:55:46:749 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_4
  818. 11:55:46:749 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_5
  819. 11:55:46:749 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_8
  820. 11:55:46:750 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_9
  821. 11:55:46:750 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_4
  822. 11:55:46:750 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_5
  823. 11:55:46:754 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_20
  824. 11:55:46:754 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_21
  825. 11:55:46:755 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_4
  826. 11:55:46:755 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_5
  827. 11:55:46:758 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_6
  828. 11:55:46:759 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_7
  829. 11:55:46:759 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_6
  830. 11:55:46:759 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_7
  831. 11:55:46:760 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_10
  832. 11:55:46:760 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_11
  833. 11:55:46:760 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionselectUsingGET_1
  834. 11:55:46:761 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: refreshCacheUsingDELETE_2
  835. 11:55:46:761 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: refreshCacheUsingDELETE_3
  836. 11:55:46:761 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_6
  837. 11:55:46:761 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_7
  838. 11:55:46:764 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_22
  839. 11:55:46:764 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_23
  840. 11:55:46:765 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_6
  841. 11:55:46:765 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_7
  842. 11:55:46:766 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingGET_1
  843. 11:55:46:766 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingHEAD_1
  844. 11:55:46:767 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingPOST_1
  845. 11:55:46:767 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingPUT_1
  846. 11:55:46:767 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingPATCH_1
  847. 11:55:46:767 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingDELETE_1
  848. 11:55:46:767 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingOPTIONS_1
  849. 11:55:46:767 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingTRACE_1
  850. 11:55:46:768 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_12
  851. 11:55:46:768 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_13
  852. 11:55:46:769 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getRoutersUsingGET_1
  853. 11:55:46:770 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: loginUsingPOST_1
  854. 11:55:46:771 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: loginNoNeedAuthUsingPOST_1
  855. 11:55:46:772 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: cleanUsingDELETE_1
  856. 11:55:46:772 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_8
  857. 11:55:46:773 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_9
  858. 11:55:46:773 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: unlockUsingGET_1
  859. 11:55:46:776 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_24
  860. 11:55:46:777 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_25
  861. 11:55:46:778 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_8
  862. 11:55:46:778 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_9
  863. 11:55:46:784 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_8
  864. 11:55:46:784 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_9
  865. 11:55:46:785 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_8
  866. 11:55:46:785 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_9
  867. 11:55:46:786 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_14
  868. 11:55:46:786 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_15
  869. 11:55:46:791 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_26
  870. 11:55:46:791 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_27
  871. 11:55:46:792 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_10
  872. 11:55:46:792 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_11
  873. 11:55:46:793 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: roleMenuTreeselectUsingGET_1
  874. 11:55:46:795 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: treeselectUsingGET_1
  875. 11:55:46:797 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_10
  876. 11:55:46:798 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_11
  877. 11:55:46:798 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_10
  878. 11:55:46:798 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_11
  879. 11:55:46:799 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_16
  880. 11:55:46:799 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_17
  881. 11:55:46:799 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_12
  882. 11:55:46:800 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_13
  883. 11:55:46:802 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_28
  884. 11:55:46:802 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_29
  885. 11:55:46:803 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: cleanUsingDELETE_2
  886. 11:55:46:804 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: cleanUsingDELETE_3
  887. 11:55:46:804 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_14
  888. 11:55:46:804 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_15
  889. 11:55:46:808 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_30
  890. 11:55:46:808 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_31
  891. 11:55:46:809 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_10
  892. 11:55:46:810 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_11
  893. 11:55:46:812 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_12
  894. 11:55:46:812 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_13
  895. 11:55:46:813 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_12
  896. 11:55:46:813 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_13
  897. 11:55:46:813 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_18
  898. 11:55:46:814 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_19
  899. 11:55:46:814 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionselectUsingGET_2
  900. 11:55:46:814 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionselectUsingGET_3
  901. 11:55:46:815 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_16
  902. 11:55:46:815 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_17
  903. 11:55:46:819 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_32
  904. 11:55:46:819 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_33
  905. 11:55:46:820 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_12
  906. 11:55:46:821 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_13
  907. 11:55:46:823 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: avatarUsingPOST_1
  908. 11:55:46:824 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: profileUsingGET_1
  909. 11:55:46:830 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateProfileUsingPUT_1
  910. 11:55:46:831 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updatePwdUsingPUT_1
  911. 11:55:46:832 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: registerUsingPOST_1
  912. 11:55:46:835 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_14
  913. 11:55:46:836 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_15
  914. 11:55:46:837 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: cancelAuthUserUsingPUT_1
  915. 11:55:46:838 WARN 25452 --- [restartedMain] s.d.s.w.r.p.ParameterDataTypeReader : Trying to infer dataType java.lang.Long[]
  916. 11:55:46:838 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: cancelAuthUserAllUsingPUT_1
  917. 11:55:46:838 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: changeStatusUsingPUT_1
  918. 11:55:46:839 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: dataScopeUsingPUT_1
  919. 11:55:46:839 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deptTreeUsingGET_1
  920. 11:55:46:840 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_14
  921. 11:55:46:840 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_15
  922. 11:55:46:841 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_20
  923. 11:55:46:841 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_21
  924. 11:55:46:841 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionselectUsingGET_4
  925. 11:55:46:842 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionselectUsingGET_5
  926. 11:55:46:842 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_18
  927. 11:55:46:842 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_19
  928. 11:55:46:843 WARN 25452 --- [restartedMain] s.d.s.w.r.p.ParameterDataTypeReader : Trying to infer dataType java.lang.Long[]
  929. 11:55:46:843 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectAuthUserAllUsingPUT_1
  930. 11:55:46:850 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: allocatedListUsingGET_1
  931. 11:55:46:852 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_34
  932. 11:55:46:852 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_35
  933. 11:55:46:855 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: unallocatedListUsingGET_1
  934. 11:55:46:856 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_14
  935. 11:55:46:857 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_15
  936. 11:55:46:859 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_16
  937. 11:55:46:860 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_17
  938. 11:55:46:860 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: authRoleUsingGET_1
  939. 11:55:46:861 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: changeStatusUsingPUT_2
  940. 11:55:46:861 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: changeStatusUsingPUT_3
  941. 11:55:46:862 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deptTreeUsingGET_2
  942. 11:55:46:862 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deptTreeUsingGET_3
  943. 11:55:46:863 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_16
  944. 11:55:46:863 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_17
  945. 11:55:46:864 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_22
  946. 11:55:46:864 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_23
  947. 11:55:46:864 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_24
  948. 11:55:46:864 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_25
  949. 11:55:46:865 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: importDataUsingPOST_1
  950. 11:55:46:865 WARN 25452 --- [restartedMain] s.d.s.w.r.p.ParameterDataTypeReader : Trying to infer dataType java.lang.Long[]
  951. 11:55:46:865 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: insertAuthRoleUsingPUT_1
  952. 11:55:46:866 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_20
  953. 11:55:46:866 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_21
  954. 11:55:46:867 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resetPwdUsingPUT_1
  955. 11:55:46:869 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_36
  956. 11:55:46:869 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_37
  957. 11:55:46:871 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_16
  958. 11:55:46:872 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_17
  959. 11:55:46:872 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: importTemplateUsingPOST_1
  960. 11:55:46:874 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: forceLogoutUsingDELETE_1
  961. 11:55:46:875 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_38
  962. 11:55:46:875 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_39
  963. 11:55:46:878 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllDeviceCodesUsingGET_4
  964. 11:55:46:878 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllDeviceCodesUsingGET_5
  965. 11:55:46:878 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_8
  966. 11:55:46:879 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_9
  967. 11:55:46:879 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataByDeviceUsingGET_4
  968. 11:55:46:880 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataByDeviceUsingGET_5
  969. 11:55:46:881 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryAbnormalDataUsingGET_4
  970. 11:55:46:881 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryAbnormalDataUsingGET_5
  971. 11:55:46:882 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_10
  972. 11:55:46:882 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_11
  973. 11:55:46:883 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statTelemetryByDeviceUsingGET_1
  974. 11:55:46:885 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statTelemetryTrendByHourUsingGET_1
  975. 11:55:46:888 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleFaultUsingPOST_1
  976. 11:55:46:895 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_6
  977. 11:55:46:895 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_7
  978. 11:55:46:897 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_72
  979. 11:55:46:897 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_73
  980. 11:55:46:901 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getUserUsingGET_1
  981. 11:55:46:902 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_4
  982. 11:55:46:903 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_5
  983. 11:55:46:918 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_66
  984. 11:55:46:918 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_67
  985. 11:55:46:920 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_12
  986. 11:55:46:920 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_13
  987. 11:55:46:921 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: userListUsingGET_1
  988. 11:55:46:925 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addWarningItemUsingPOST_1
  989. 11:55:46:925 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: generateItemCodeUsingGET_1
  990. 11:55:46:926 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getItemDetailUsingGET_1
  991. 11:55:46:927 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryWarningItemsUsingGET_1
  992. 11:55:46:928 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateItemStatusUsingPUT_1
  993. 11:55:46:929 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateWarningItemUsingPUT_1
  994. 11:55:46:932 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addWarningReasonUsingPOST_1
  995. 11:55:46:933 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getReasonDetailUsingGET_1
  996. 11:55:46:933 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getReasonsByTypeAndLevelUsingGET_1
  997. 11:55:46:934 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryWarningReasonsUsingGET_1
  998. 11:55:46:934 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateReasonStatusUsingPUT_1
  999. 11:55:46:935 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateWarningReasonUsingPUT_1
  1000. 11:55:46:936 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_2
  1001. 11:55:46:938 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_3
  1002. 11:55:46:938 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_50
  1003. 11:55:46:938 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_51
  1004. 11:55:46:939 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_74
  1005. 11:55:46:939 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_75
  1006. 11:55:46:940 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getWarningThresholdListUsingGET_1
  1007. 11:55:46:943 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_68
  1008. 11:55:46:943 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_69
  1009. 11:55:46:944 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_6
  1010. 11:55:46:945 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_7
  1011. 11:55:46:947 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllDeviceCodesUsingGET_6
  1012. 11:55:46:948 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllDeviceCodesUsingGET_7
  1013. 11:55:46:948 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataByDeviceUsingGET_6
  1014. 11:55:46:949 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataByDeviceUsingGET_7
  1015. 11:55:46:950 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_12
  1016. 11:55:46:950 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_13
  1017. 11:55:46:951 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectOverLimitDataUsingGET_1
  1018. 11:55:46:952 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsByDeviceUsingGET_1
  1019. 11:55:46:953 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsOnlineDeviceUsingGET_1
  1020. 11:55:46:960 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_18
  1021. 11:55:46:960 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_19
  1022. 11:55:46:961 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_1
  1023. 11:55:46:965 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_76
  1024. 11:55:46:965 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_77
  1025. 11:55:46:965 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestPipeUsingGET_1
  1026. 11:55:46:966 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getOverallStatisticsUsingGET_2
  1027. 11:55:46:966 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getOverallStatisticsUsingGET_3
  1028. 11:55:46:967 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_12
  1029. 11:55:46:967 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_13
  1030. 11:55:46:968 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_1
  1031. 11:55:46:968 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_22
  1032. 11:55:46:969 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_23
  1033. 11:55:46:970 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_1
  1034. 11:55:46:970 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statPipeByMaterialUsingGET_1
  1035. 11:55:46:971 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statPipeByStatusUsingGET_1
  1036. 11:55:46:971 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_14
  1037. 11:55:46:971 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_15
  1038. 11:55:46:977 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_20
  1039. 11:55:46:977 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_21
  1040. 11:55:46:978 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_2
  1041. 11:55:46:979 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_3
  1042. 11:55:46:979 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_78
  1043. 11:55:46:980 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_79
  1044. 11:55:46:981 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_14
  1045. 11:55:46:981 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_15
  1046. 11:55:46:982 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_2
  1047. 11:55:46:983 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_3
  1048. 11:55:46:983 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_24
  1049. 11:55:46:984 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_25
  1050. 11:55:46:984 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_2
  1051. 11:55:46:985 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_3
  1052. 11:55:46:986 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_16
  1053. 11:55:46:986 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_17
  1054. 11:55:46:994 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_22
  1055. 11:55:46:994 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_23
  1056. 11:55:46:995 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_4
  1057. 11:55:46:996 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_5
  1058. 11:55:46:996 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_80
  1059. 11:55:46:997 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_81
  1060. 11:55:46:998 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_16
  1061. 11:55:46:998 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_17
  1062. 11:55:47:000 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_4
  1063. 11:55:47:000 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_5
  1064. 11:55:47:001 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_26
  1065. 11:55:47:001 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_27
  1066. 11:55:47:002 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_4
  1067. 11:55:47:002 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_5
  1068. 11:55:47:003 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_18
  1069. 11:55:47:003 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_19
  1070. 11:55:47:009 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_24
  1071. 11:55:47:010 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_25
  1072. 11:55:47:010 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_6
  1073. 11:55:47:010 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_7
  1074. 11:55:47:011 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_82
  1075. 11:55:47:011 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_83
  1076. 11:55:47:012 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_18
  1077. 11:55:47:013 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_19
  1078. 11:55:47:014 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_6
  1079. 11:55:47:014 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_7
  1080. 11:55:47:015 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_28
  1081. 11:55:47:016 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_29
  1082. 11:55:47:016 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_6
  1083. 11:55:47:017 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_7
  1084. 11:55:47:018 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_20
  1085. 11:55:47:018 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_21
  1086. 11:55:47:023 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_26
  1087. 11:55:47:024 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_27
  1088. 11:55:47:024 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_8
  1089. 11:55:47:024 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_9
  1090. 11:55:47:025 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_84
  1091. 11:55:47:025 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_85
  1092. 11:55:47:026 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_20
  1093. 11:55:47:026 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_21
  1094. 11:55:47:027 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_8
  1095. 11:55:47:027 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_9
  1096. 11:55:47:028 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_30
  1097. 11:55:47:028 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_31
  1098. 11:55:47:029 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_8
  1099. 11:55:47:030 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_9
  1100. 11:55:47:030 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_22
  1101. 11:55:47:031 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_23
  1102. 11:55:47:036 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_14
  1103. 11:55:47:036 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_15
  1104. 11:55:47:037 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_8
  1105. 11:55:47:037 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_9
  1106. 11:55:47:037 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingDELETE_6
  1107. 11:55:47:038 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingDELETE_7
  1108. 11:55:47:038 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_56
  1109. 11:55:47:038 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_57
  1110. 11:55:47:039 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_86
  1111. 11:55:47:039 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_87
  1112. 11:55:47:039 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_40
  1113. 11:55:47:039 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_41
  1114. 11:55:47:041 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_70
  1115. 11:55:47:041 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_71
  1116. 11:55:47:042 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_24
  1117. 11:55:47:042 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_25
  1118. 11:55:47:045 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addWorkOrderUsingPOST_1
  1119. 11:55:47:047 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: operWorkOrderUsingPOST_1
  1120. 11:55:47:056 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_8
  1121. 11:55:47:057 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_9
  1122. 11:55:47:059 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findFinishedPageUsingPOST_1
  1123. 11:55:47:062 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findProcessingPageUsingPOST_1
  1124. 11:55:47:064 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_88
  1125. 11:55:47:064 INFO 25452 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_89
  1126. 11:55:47:068 INFO 25452 --- [restartedMain] o.s.s.quartz.SchedulerFactoryBean : Starting Quartz Scheduler now
  1127. 11:55:47:068 INFO 25452 --- [restartedMain] org.quartz.core.QuartzScheduler : Scheduler quartzScheduler_$_NON_CLUSTERED started.
  1128. 11:55:47:077 INFO 25452 --- [restartedMain] com.zksy.ZksyApplication : Started ZksyApplication in 26.09 seconds (JVM running for 27.255)
  1129. 11:55:47:082 INFO 25452 --- [restartedMain] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=pipe-network-service.yaml, group=DEFAULT_GROUP
  1130. 11:55:47:083 INFO 25452 --- [restartedMain] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=pipe-network-service-druid.yaml, group=DEFAULT_GROUP
  1131. 11:55:47:083 INFO 25452 --- [restartedMain] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=pipe-network-service, group=DEFAULT_GROUP
  1132. 11:58:42:714 WARN 25452 --- [Thread-8] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  1133. 11:58:42:714 WARN 25452 --- [Thread-4] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  1134. 11:58:42:714 WARN 25452 --- [Thread-8] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  1135. 11:58:42:715 WARN 25452 --- [Thread-4] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  1136. 11:58:42:717 INFO 25452 --- [SpringApplicationShutdownHook] org.quartz.core.QuartzScheduler : Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1137. 11:58:43:173 INFO 25452 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  1138. 11:58:43:190 INFO 25452 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  1139. 11:58:43:498 INFO 25452 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  1140. 11:58:43:498 INFO 25452 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@32592082[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  1141. 11:58:43:498 INFO 25452 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1784605879688_172.16.102.252_59289
  1142. 11:58:43:511 INFO 25452 --- [nacos-grpc-client-executor-46] c.a.n.c.remote.client.grpc.GrpcClient : [1784605879688_172.16.102.252_59289]Ignore complete event,isRunning:false,isAbandon=false
  1143. 11:58:43:518 INFO 25452 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@71dde395[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 47]
  1144. 11:58:43:526 INFO 25452 --- [SpringApplicationShutdownHook] o.s.s.quartz.SchedulerFactoryBean : Shutting down Quartz Scheduler
  1145. 11:58:43:526 INFO 25452 --- [SpringApplicationShutdownHook] org.quartz.core.QuartzScheduler : Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  1146. 11:58:43:526 INFO 25452 --- [SpringApplicationShutdownHook] org.quartz.core.QuartzScheduler : Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  1147. 11:58:43:526 INFO 25452 --- [SpringApplicationShutdownHook] org.quartz.core.QuartzScheduler : Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  1148. 11:58:43:526 INFO 25452 --- [SpringApplicationShutdownHook] sys-user : ====关闭后台任务任务线程池====
  1149. 11:58:43:527 WARN 25452 --- [SpringApplicationShutdownHook] .s.c.a.CommonAnnotationBeanPostProcessor : Destroy method on bean with name 'shutdownManager' threw an exception: java.lang.ExceptionInInitializerError
  1150. 11:58:43:532 INFO 25452 --- [SpringApplicationShutdownHook] com.alibaba.druid.pool.DruidDataSource : {dataSource-1} closing ...
  1151. 11:58:43:538 INFO 25452 --- [SpringApplicationShutdownHook] com.alibaba.druid.pool.DruidDataSource : {dataSource-1} closed
  1152. 14:00:27:144 INFO 30232 --- [restartedMain] com.zksy.ZksyApplication : The following 1 profile is active: "druid"
  1153. 14:00:28:204 INFO 30232 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode!
  1154. 14:00:28:206 INFO 30232 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  1155. 14:00:28:289 INFO 30232 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 70 ms. Found 0 Redis repository interfaces.
  1156. 14:00:28:584 INFO 30232 --- [restartedMain] o.s.cloud.context.scope.GenericScope : BeanFactory id=3c481e74-3e90-36f2-b128-9d5c934cbba4
  1157. 14:00:29:397 INFO 30232 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8301 (http)
  1158. 14:00:29:408 INFO 30232 --- [restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  1159. 14:00:29:408 INFO 30232 --- [restartedMain] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.106]
  1160. 14:00:29:429 WARN 30232 --- [restartedMain] o.a.c.webresources.DirResourceSet : Disabled the global canonical file name cache to protect against CVE-2024-56337 when starting the WebResourceSet at [C:\Users\Administrator\AppData\Local\Temp\tomcat-docbase.8301.11016196317672471043] which is part of the web application []
  1161. 14:00:29:535 INFO 30232 --- [restartedMain] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  1162. 14:00:29:535 INFO 30232 --- [restartedMain] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 2383 ms
  1163. 14:00:29:964 DEBUG 30232 --- [restartedMain] c.z.f.s.f.JwtAuthenticationTokenFilter : Filter 'jwtAuthenticationTokenFilter' configured for use
  1164. 14:00:31:249 INFO 30232 --- [restartedMain] com.alibaba.druid.pool.DruidDataSource : {dataSource-1} inited
  1165. 14:00:31:818 WARN 30232 --- [restartedMain] c.b.m.core.injector.DefaultSqlInjector : class com.zksy.base.domain.AlarmAssignDetail ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method.
  1166. 14:00:31:829 WARN 30232 --- [restartedMain] c.b.m.core.injector.DefaultSqlInjector : class com.zksy.base.domain.AlarmAssignList ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method.
  1167. 14:00:37:031 INFO 30232 --- [restartedMain] c.a.c.sentinel.SentinelWebMvcConfigurer : [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
  1168. 14:00:37:493 INFO 30232 --- [restartedMain] c.z.s.impl.MinioFileStorageServiceImpl : 初始化MinIO成功
  1169. 14:00:37:668 INFO 30232 --- [restartedMain] org.quartz.impl.StdSchedulerFactory : Using default implementation for ThreadExecutor
  1170. 14:00:37:675 INFO 30232 --- [restartedMain] org.quartz.core.SchedulerSignalerImpl : Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  1171. 14:00:37:675 INFO 30232 --- [restartedMain] org.quartz.core.QuartzScheduler : Quartz Scheduler v.2.3.2 created.
  1172. 14:00:37:675 INFO 30232 --- [restartedMain] org.quartz.simpl.RAMJobStore : RAMJobStore initialized.
  1173. 14:00:37:677 INFO 30232 --- [restartedMain] org.quartz.core.QuartzScheduler : Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  1174. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  1175. NOT STARTED.
  1176. Currently in standby mode.
  1177. Number of jobs executed: 0
  1178. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  1179. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  1180. 14:00:37:677 INFO 30232 --- [restartedMain] org.quartz.impl.StdSchedulerFactory : Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  1181. 14:00:37:677 INFO 30232 --- [restartedMain] org.quartz.impl.StdSchedulerFactory : Quartz scheduler version: 2.3.2
  1182. 14:00:37:677 INFO 30232 --- [restartedMain] org.quartz.core.QuartzScheduler : JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@3848e2d1
  1183. 14:00:37:760 INFO 30232 --- [restartedMain] c.z.s.impl.MinioFileStorageServiceImpl : 初始化MinIO成功
  1184. 14:00:38:233 INFO 30232 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.session.DisableEncodeUrlFilter@31b0f756, org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@2b94b3ee, org.springframework.security.web.context.SecurityContextPersistenceFilter@50717a62, org.springframework.security.web.header.HeaderWriterFilter@35ec8e05, org.springframework.web.filter.CorsFilter@6f76f8bf, org.springframework.security.web.authentication.logout.LogoutFilter@4032e5ba, org.springframework.web.filter.CorsFilter@6f76f8bf, com.zksy.framework.security.filter.JwtAuthenticationTokenFilter@223bedb4, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@54004456, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@7699ca4c, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@25ea0725, org.springframework.security.web.session.SessionManagementFilter@3581c2fa, org.springframework.security.web.access.ExceptionTranslationFilter@131a7022, org.springframework.security.web.access.intercept.AuthorizationFilter@16c4bba4]
  1185. 14:00:38:548 INFO 30232 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729
  1186. 14:00:39:141 INFO 30232 --- [restartedMain] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  1187. 14:00:39:864 WARN 30232 --- [restartedMain] iguration$LoadBalancerCaffeineWarnLogger : Spring Cloud LoadBalancer is currently working with the default cache. While this cache implementation is useful for development and tests, it's recommended to use Caffeine cache in production.You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath.
  1188. 14:00:40:022 INFO 30232 --- [restartedMain] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of 2bb9057a-453b-4de7-82e6-c59c39034b45
  1189. 14:00:40:022 INFO 30232 --- [restartedMain] com.alibaba.nacos.common.remote.client : [2bb9057a-453b-4de7-82e6-c59c39034b45] RpcClient init label, labels = {module=naming, source=sdk}
  1190. 14:00:40:024 INFO 30232 --- [restartedMain] com.alibaba.nacos.common.remote.client : [2bb9057a-453b-4de7-82e6-c59c39034b45] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  1191. 14:00:40:024 INFO 30232 --- [restartedMain] com.alibaba.nacos.common.remote.client : [2bb9057a-453b-4de7-82e6-c59c39034b45] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  1192. 14:00:40:025 INFO 30232 --- [restartedMain] com.alibaba.nacos.common.remote.client : [2bb9057a-453b-4de7-82e6-c59c39034b45] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  1193. 14:00:40:025 INFO 30232 --- [restartedMain] com.alibaba.nacos.common.remote.client : [2bb9057a-453b-4de7-82e6-c59c39034b45] Try to connect to server on start up, server: {serverIp = '172.16.102.52', server main port = 8848}
  1194. 14:00:40:174 INFO 30232 --- [restartedMain] com.alibaba.nacos.common.remote.client : [2bb9057a-453b-4de7-82e6-c59c39034b45] Success to connect to server [172.16.102.52:8848] on start up, connectionId = 1784613374571_172.16.102.252_61251
  1195. 14:00:40:174 INFO 30232 --- [restartedMain] com.alibaba.nacos.common.remote.client : [2bb9057a-453b-4de7-82e6-c59c39034b45] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  1196. 14:00:40:174 INFO 30232 --- [restartedMain] com.alibaba.nacos.common.remote.client : [2bb9057a-453b-4de7-82e6-c59c39034b45] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$490/0x0000000800455840
  1197. 14:00:40:174 INFO 30232 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [2bb9057a-453b-4de7-82e6-c59c39034b45] Notify connected event to listeners.
  1198. 14:00:40:224 INFO 30232 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8301 (http) with context path ''
  1199. 14:00:40:244 INFO 30232 --- [restartedMain] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP pipe-network-service 192.168.110.235:8301 register finished
  1200. 14:00:40:547 INFO 30232 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  1201. 14:00:40:549 INFO 30232 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  1202. 14:00:40:679 INFO 30232 --- [restartedMain] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  1203. 14:00:40:729 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingPOST_1
  1204. 14:00:40:741 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_1
  1205. 14:00:40:743 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_1
  1206. 14:00:40:748 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_1
  1207. 14:00:40:755 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingPOST_2
  1208. 14:00:40:755 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingPOST_3
  1209. 14:00:40:759 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_2
  1210. 14:00:40:759 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_3
  1211. 14:00:40:760 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_2
  1212. 14:00:40:760 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_3
  1213. 14:00:40:769 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_1
  1214. 14:00:40:771 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_2
  1215. 14:00:40:772 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_3
  1216. 14:00:40:775 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_2
  1217. 14:00:40:776 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_3
  1218. 14:00:40:777 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getActivePointsUsingGET_1
  1219. 14:00:40:777 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_4
  1220. 14:00:40:778 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_5
  1221. 14:00:40:779 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingPUT_1
  1222. 14:00:40:782 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_1
  1223. 14:00:40:784 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_4
  1224. 14:00:40:784 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_5
  1225. 14:00:40:786 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAlarmDataListUsingGET_1
  1226. 14:00:40:787 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_6
  1227. 14:00:40:787 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_7
  1228. 14:00:40:792 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingPOST_1
  1229. 14:00:40:792 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_4
  1230. 14:00:40:793 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_5
  1231. 14:00:40:794 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_4
  1232. 14:00:40:794 INFO 30232 --- [nacos-grpc-client-executor-7] com.alibaba.nacos.common.remote.client : [2bb9057a-453b-4de7-82e6-c59c39034b45] Receive server push request, request = NotifySubscriberRequest, requestId = 603
  1233. 14:00:40:794 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_5
  1234. 14:00:40:796 INFO 30232 --- [nacos-grpc-client-executor-7] com.alibaba.nacos.common.remote.client : [2bb9057a-453b-4de7-82e6-c59c39034b45] Ack server push request, request = NotifySubscriberRequest, requestId = 603
  1235. 14:00:40:797 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: customAlarmUsingPOST_1
  1236. 14:00:40:798 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: simulateEnvironmentUsingGET_1
  1237. 14:00:40:799 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: simulateGasUsingGET_1
  1238. 14:00:40:800 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: simulateManholeUsingGET_1
  1239. 14:00:40:802 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: cacheUsingGET_1
  1240. 14:00:40:803 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: clearCacheAllUsingDELETE_1
  1241. 14:00:40:804 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: clearCacheKeyUsingDELETE_1
  1242. 14:00:40:805 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: clearCacheNameUsingDELETE_1
  1243. 14:00:40:806 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getCacheKeysUsingGET_1
  1244. 14:00:40:807 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getCacheValueUsingGET_1
  1245. 14:00:40:807 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_1
  1246. 14:00:40:809 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getCodeUsingGET_1
  1247. 14:00:40:812 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveWarningThresholdUsingPOST_1
  1248. 14:00:40:814 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: verifyCaseInfoUsingPOST_1
  1249. 14:00:40:822 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_1
  1250. 14:00:40:823 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_8
  1251. 14:00:40:824 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_9
  1252. 14:00:40:826 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: uploadFileUsingPOST_1
  1253. 14:00:40:826 WARN 30232 --- [restartedMain] s.d.s.w.r.p.ParameterDataTypeReader : Trying to infer dataType java.util.List<org.springframework.web.multipart.MultipartFile>
  1254. 14:00:40:827 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: uploadFilesUsingPOST_1
  1255. 14:00:40:828 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: fileDownloadUsingGET_1
  1256. 14:00:40:828 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resourceDownloadUsingGET_1
  1257. 14:00:40:831 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportAbnormalDevicesUsingPOST_1
  1258. 14:00:40:832 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAbnormalDevicePageUsingGET_1
  1259. 14:00:40:833 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAbnormalGisPointsUsingGET_1
  1260. 14:00:40:834 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAbnormalPointsUsingGET_1
  1261. 14:00:40:835 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllDevicePointsUsingGET_1
  1262. 14:00:40:836 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceDetailUsingGET_1
  1263. 14:00:40:836 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getGisStatisticsUsingGET_1
  1264. 14:00:40:839 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportDeviceLedgerUsingPOST_1
  1265. 14:00:40:840 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDevicePageUsingGET_1
  1266. 14:00:40:841 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getGisPointsUsingGET_1
  1267. 14:00:40:842 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTypeStatisticsUsingGET_1
  1268. 14:00:40:847 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: createMaintainOrderUsingPOST_1
  1269. 14:00:40:848 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteMaintainRecordUsingDELETE_1
  1270. 14:00:40:848 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportMaintainRecordsUsingPOST_1
  1271. 14:00:40:849 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getMaintainRecordListUsingGET_1
  1272. 14:00:40:850 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getMaintainRecordPageUsingGET_1
  1273. 14:00:40:851 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getMyMaintainRecordPageUsingGET_1
  1274. 14:00:40:852 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: importMaintainRecordsUsingPOST_1
  1275. 14:00:40:855 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveMaintainRecordUsingPOST_1
  1276. 14:00:40:856 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateMaintainRecordUsingPUT_1
  1277. 14:00:40:858 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_1
  1278. 14:00:40:864 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_6
  1279. 14:00:40:864 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_7
  1280. 14:00:40:865 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_10
  1281. 14:00:40:865 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_11
  1282. 14:00:40:866 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listByCategoryUsingGET_1
  1283. 14:00:40:868 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_6
  1284. 14:00:40:868 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_7
  1285. 14:00:40:869 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_1
  1286. 14:00:40:871 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_2
  1287. 14:00:40:871 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_3
  1288. 14:00:40:873 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_8
  1289. 14:00:40:874 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_9
  1290. 14:00:40:874 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_12
  1291. 14:00:40:874 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_13
  1292. 14:00:40:877 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_8
  1293. 14:00:40:877 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_9
  1294. 14:00:40:878 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_2
  1295. 14:00:40:878 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_3
  1296. 14:00:40:880 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: acceptUsingPUT_1
  1297. 14:00:40:880 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_4
  1298. 14:00:40:880 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_5
  1299. 14:00:40:883 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_10
  1300. 14:00:40:883 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_11
  1301. 14:00:40:884 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_14
  1302. 14:00:40:884 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_15
  1303. 14:00:40:885 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: rejectUsingPUT_1
  1304. 14:00:40:887 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_10
  1305. 14:00:40:887 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_11
  1306. 14:00:40:887 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_4
  1307. 14:00:40:888 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_5
  1308. 14:00:40:891 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addTrackLogUsingPOST_1
  1309. 14:00:40:892 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: closeUsingPUT_1
  1310. 14:00:40:892 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_6
  1311. 14:00:40:892 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_7
  1312. 14:00:40:895 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_12
  1313. 14:00:40:895 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_13
  1314. 14:00:40:895 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_16
  1315. 14:00:40:897 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_17
  1316. 14:00:40:897 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrackLogsUsingGET_1
  1317. 14:00:40:898 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: releaseUsingPUT_1
  1318. 14:00:40:900 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_12
  1319. 14:00:40:901 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_13
  1320. 14:00:40:901 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_6
  1321. 14:00:40:901 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_7
  1322. 14:00:40:903 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_8
  1323. 14:00:40:903 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_9
  1324. 14:00:40:905 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: doReportUsingPUT_1
  1325. 14:00:40:908 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: doTransferUsingPUT_1
  1326. 14:00:40:911 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_14
  1327. 14:00:40:911 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_15
  1328. 14:00:40:912 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_18
  1329. 14:00:40:912 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_19
  1330. 14:00:40:913 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTransferLogsUsingGET_1
  1331. 14:00:40:913 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_14
  1332. 14:00:40:913 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_15
  1333. 14:00:40:914 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_8
  1334. 14:00:40:914 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_9
  1335. 14:00:40:916 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: closeUrgeUsingPUT_1
  1336. 14:00:40:916 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_10
  1337. 14:00:40:916 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_11
  1338. 14:00:40:918 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: doUrgeUsingPOST_1
  1339. 14:00:40:921 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_16
  1340. 14:00:40:921 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_17
  1341. 14:00:40:922 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_20
  1342. 14:00:40:922 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_21
  1343. 14:00:40:923 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getUrgeDetailsUsingGET_1
  1344. 14:00:40:927 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_16
  1345. 14:00:40:927 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_17
  1346. 14:00:40:928 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_10
  1347. 14:00:40:928 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_11
  1348. 14:00:40:930 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_12
  1349. 14:00:40:930 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_13
  1350. 14:00:40:932 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_18
  1351. 14:00:40:933 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_19
  1352. 14:00:40:933 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_22
  1353. 14:00:40:933 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_23
  1354. 14:00:40:936 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_18
  1355. 14:00:40:936 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_19
  1356. 14:00:40:937 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_12
  1357. 14:00:40:937 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_13
  1358. 14:00:40:937 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: verifyUsingPUT_1
  1359. 14:00:40:940 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: approveUsingPUT_1
  1360. 14:00:40:940 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_14
  1361. 14:00:40:940 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_15
  1362. 14:00:40:943 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_20
  1363. 14:00:40:943 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_21
  1364. 14:00:40:944 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_24
  1365. 14:00:40:944 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_25
  1366. 14:00:40:945 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: publishUsingPUT_1
  1367. 14:00:40:945 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: rejectUsingPUT_2
  1368. 14:00:40:945 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: rejectUsingPUT_3
  1369. 14:00:40:949 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_20
  1370. 14:00:40:949 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_21
  1371. 14:00:40:949 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: submitForApprovalUsingPUT_1
  1372. 14:00:40:950 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: submitFromPlanUsingPOST_1
  1373. 14:00:40:951 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_14
  1374. 14:00:40:951 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_15
  1375. 14:00:40:952 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_16
  1376. 14:00:40:953 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_17
  1377. 14:00:40:955 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_22
  1378. 14:00:40:955 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_23
  1379. 14:00:40:956 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_26
  1380. 14:00:40:956 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_27
  1381. 14:00:40:957 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listByApprovalIdUsingGET_1
  1382. 14:00:40:958 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_22
  1383. 14:00:40:959 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_23
  1384. 14:00:40:959 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_16
  1385. 14:00:40:960 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_17
  1386. 14:00:40:961 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_18
  1387. 14:00:40:961 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_19
  1388. 14:00:40:963 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_24
  1389. 14:00:40:964 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_25
  1390. 14:00:40:964 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_28
  1391. 14:00:40:964 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_29
  1392. 14:00:40:965 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getCategoryTreeUsingGET_1
  1393. 14:00:40:967 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_24
  1394. 14:00:40:967 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_25
  1395. 14:00:40:968 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_18
  1396. 14:00:40:968 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_19
  1397. 14:00:40:980 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: maintainPageUsingGET_1
  1398. 14:00:40:983 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pointRelPageUsingGET_1
  1399. 14:00:40:985 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statusPageUsingGET_1
  1400. 14:00:40:989 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: testPageUsingGET_1
  1401. 14:00:40:992 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: typePageUsingGET_1
  1402. 14:00:41:000 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: basePageUsingGET_1
  1403. 14:00:41:001 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: baseDeleteUsingDELETE_1
  1404. 14:00:41:002 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: baseDeleteBatchUsingDELETE_1
  1405. 14:00:41:003 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: baseGetByIdUsingGET_1
  1406. 14:00:41:003 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: baseListUsingGET_1
  1407. 14:00:41:007 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: baseSaveUsingPOST_1
  1408. 14:00:41:008 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: baseUpdateUsingPUT_1
  1409. 14:00:41:009 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: maintainDeleteUsingDELETE_1
  1410. 14:00:41:010 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: maintainDeleteBatchUsingDELETE_1
  1411. 14:00:41:010 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: maintainGetByIdUsingGET_1
  1412. 14:00:41:012 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: maintainSaveUsingPOST_1
  1413. 14:00:41:013 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: maintainUpdateUsingPUT_1
  1414. 14:00:41:014 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pointRelByEquipmentUsingGET_1
  1415. 14:00:41:015 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pointRelByPointUsingGET_1
  1416. 14:00:41:016 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pointRelDeleteUsingDELETE_1
  1417. 14:00:41:016 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pointRelDeleteBatchUsingDELETE_1
  1418. 14:00:41:018 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pointRelSaveUsingPOST_1
  1419. 14:00:41:019 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pointRelSaveBatchUsingPOST_1
  1420. 14:00:41:020 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statusDeleteUsingDELETE_1
  1421. 14:00:41:020 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statusGetByIdUsingGET_1
  1422. 14:00:41:022 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statusSaveUsingPOST_1
  1423. 14:00:41:023 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statusUpdateUsingPUT_1
  1424. 14:00:41:024 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: testDeleteUsingDELETE_1
  1425. 14:00:41:024 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: testDeleteBatchUsingDELETE_1
  1426. 14:00:41:025 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: testGetByIdUsingGET_1
  1427. 14:00:41:027 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: testSaveUsingPOST_1
  1428. 14:00:41:029 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: testUpdateUsingPUT_1
  1429. 14:00:41:030 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: typeDeleteUsingDELETE_1
  1430. 14:00:41:030 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: typeDeleteBatchUsingDELETE_1
  1431. 14:00:41:031 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: typeGetByIdUsingGET_1
  1432. 14:00:41:045 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: typeListUsingGET_1
  1433. 14:00:41:047 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: typeSaveUsingPOST_1
  1434. 14:00:41:048 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: typeUpdateUsingPUT_1
  1435. 14:00:41:049 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_30
  1436. 14:00:41:049 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_31
  1437. 14:00:41:050 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_1
  1438. 14:00:41:055 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_1
  1439. 14:00:41:055 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_1
  1440. 14:00:41:056 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: boundEquipmentIdsUsingGET_1
  1441. 14:00:41:057 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingDELETE_1
  1442. 14:00:41:057 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_20
  1443. 14:00:41:058 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_21
  1444. 14:00:41:058 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_32
  1445. 14:00:41:058 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_33
  1446. 14:00:41:059 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_2
  1447. 14:00:41:059 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_3
  1448. 14:00:41:061 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_26
  1449. 14:00:41:061 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_27
  1450. 14:00:41:061 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_1
  1451. 14:00:41:063 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_34
  1452. 14:00:41:063 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_35
  1453. 14:00:41:064 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_4
  1454. 14:00:41:064 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_5
  1455. 14:00:41:065 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: monthlyStatsUsingGET_1
  1456. 14:00:41:066 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_2
  1457. 14:00:41:066 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_3
  1458. 14:00:41:077 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentPageUsingGET_1
  1459. 14:00:41:079 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: historyPageUsingGET_1
  1460. 14:00:41:081 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_4
  1461. 14:00:41:081 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_5
  1462. 14:00:41:081 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_22
  1463. 14:00:41:081 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_23
  1464. 14:00:41:082 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: finalApproveUsingPUT_1
  1465. 14:00:41:083 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: firstApproveUsingPUT_1
  1466. 14:00:41:083 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_36
  1467. 14:00:41:083 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_37
  1468. 14:00:41:088 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: publishUsingPOST_1
  1469. 14:00:41:089 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_28
  1470. 14:00:41:089 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_29
  1471. 14:00:41:090 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: scopeUsersUsingGET_1
  1472. 14:00:41:090 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_2
  1473. 14:00:41:091 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_3
  1474. 14:00:41:092 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateStatusUsingPUT_1
  1475. 14:00:41:093 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_1
  1476. 14:00:41:094 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_6
  1477. 14:00:41:094 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_7
  1478. 14:00:41:096 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_30
  1479. 14:00:41:096 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_31
  1480. 14:00:41:097 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_4
  1481. 14:00:41:097 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_5
  1482. 14:00:41:098 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_2
  1483. 14:00:41:098 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_3
  1484. 14:00:41:099 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_8
  1485. 14:00:41:099 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_9
  1486. 14:00:41:101 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_32
  1487. 14:00:41:101 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_33
  1488. 14:00:41:101 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_6
  1489. 14:00:41:102 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_7
  1490. 14:00:41:103 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePlanUsingDELETE_1
  1491. 14:00:41:104 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteTemplateUsingDELETE_1
  1492. 14:00:41:104 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: plansUsingGET_1
  1493. 14:00:41:105 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resultUsingGET_1
  1494. 14:00:41:106 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: savePlanUsingPOST_1
  1495. 14:00:41:107 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveTemplateUsingPOST_1
  1496. 14:00:41:108 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: templatesUsingGET_1
  1497. 14:00:41:108 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updatePlanUsingPUT_1
  1498. 14:00:41:109 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateTemplateUsingPUT_1
  1499. 14:00:41:113 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addLogUsingPOST_1
  1500. 14:00:41:114 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteEventUsingDELETE_1
  1501. 14:00:41:115 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteProjectUsingDELETE_1
  1502. 14:00:41:116 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteRoleUsingDELETE_1
  1503. 14:00:41:117 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteSceneUsingDELETE_1
  1504. 14:00:41:117 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteTaskUsingDELETE_1
  1505. 14:00:41:118 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: eventUsingGET_1
  1506. 14:00:41:119 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: logUsingGET_1
  1507. 14:00:41:120 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: processUsingPOST_1
  1508. 14:00:41:120 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: projectsUsingGET_1
  1509. 14:00:41:121 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resultUsingGET_2
  1510. 14:00:41:121 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resultUsingGET_3
  1511. 14:00:41:122 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: roleUsingGET_1
  1512. 14:00:41:123 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveEventUsingPOST_1
  1513. 14:00:41:124 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveProjectUsingPOST_1
  1514. 14:00:41:126 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveRoleUsingPOST_1
  1515. 14:00:41:126 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveSceneUsingPOST_1
  1516. 14:00:41:127 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveTaskUsingPOST_1
  1517. 14:00:41:128 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: sceneUsingGET_1
  1518. 14:00:41:129 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: taskUsingGET_1
  1519. 14:00:41:131 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAlarmsUsingGET_1
  1520. 14:00:41:131 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDailyStatsUsingGET_1
  1521. 14:00:41:132 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_1
  1522. 14:00:41:132 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestUsingGET_1
  1523. 14:00:41:133 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendUsingGET_1
  1524. 14:00:41:146 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addLeaderInstructionUsingPOST_1
  1525. 14:00:41:146 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchWarningUsingDELETE_1
  1526. 14:00:41:147 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteWarningUsingDELETE_1
  1527. 14:00:41:147 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getArchiveUsingGET_1
  1528. 14:00:41:148 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getArchiveListUsingGET_1
  1529. 14:00:41:149 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAttachmentsUsingGET_1
  1530. 14:00:41:150 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getCompletedWarningsUsingGET_1
  1531. 14:00:41:151 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDashboardStatisticsUsingGET_1
  1532. 14:00:41:152 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDisposalDetailUsingGET_1
  1533. 14:00:41:152 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDisposalHistoryUsingGET_1
  1534. 14:00:41:153 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDisposalListUsingGET_1
  1535. 14:00:41:153 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDisposalProcessUsingGET_1
  1536. 14:00:41:154 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLinkedAlarmsUsingGET_1
  1537. 14:00:41:154 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getProcessDiagramUsingGET_1
  1538. 14:00:41:155 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getProcessStatisticsUsingGET_1
  1539. 14:00:41:157 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getProcessingWarningsUsingGET_1
  1540. 14:00:41:157 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getStatisticsUsingGET_1
  1541. 14:00:41:158 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTodoListUsingGET_1
  1542. 14:00:41:159 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getWarningDetailUsingGET_1
  1543. 14:00:41:160 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getWarningFullDetailUsingGET_1
  1544. 14:00:41:161 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getWarningListUsingGET_1
  1545. 14:00:41:162 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: linkAlarmsUsingPOST_1
  1546. 14:00:41:162 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: publishWarningUsingPOST_1
  1547. 14:00:41:163 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resolveWarningUsingPOST_1
  1548. 14:00:41:164 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: returnWarningUsingPOST_1
  1549. 14:00:41:165 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveWarningUsingPOST_1
  1550. 14:00:41:167 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: searchWarningsUsingGET_1
  1551. 14:00:41:168 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: supervisionWarningUsingPOST_1
  1552. 14:00:41:168 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateWarningUsingPUT_1
  1553. 14:00:41:169 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: upgradeWarningUsingPOST_1
  1554. 14:00:41:173 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getBySpecialUsingGET_1
  1555. 14:00:41:174 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getOverviewUsingGET_1
  1556. 14:00:41:174 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getRangeUsingGET_1
  1557. 14:00:41:176 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_1
  1558. 14:00:41:177 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDisposeStatusStatUsingGET_1
  1559. 14:00:41:181 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByTypeUsingGET_1
  1560. 14:00:41:182 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getOverviewUsingGET_2
  1561. 14:00:41:182 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getOverviewUsingGET_3
  1562. 14:00:41:183 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getRangeUsingGET_2
  1563. 14:00:41:183 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getRangeUsingGET_3
  1564. 14:00:41:184 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_2
  1565. 14:00:41:184 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_3
  1566. 14:00:41:186 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTodayStatsUsingGET_1
  1567. 14:00:41:188 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryTodayPageUsingGET_1
  1568. 14:00:41:190 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendByDayUsingGET_1
  1569. 14:00:41:191 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendByMonthUsingGET_1
  1570. 14:00:41:194 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_6
  1571. 14:00:41:194 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_7
  1572. 14:00:41:195 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_2
  1573. 14:00:41:195 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_3
  1574. 14:00:41:197 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindPumpStationUsingPOST_1
  1575. 14:00:41:197 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingDELETE_2
  1576. 14:00:41:197 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingDELETE_3
  1577. 14:00:41:198 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_24
  1578. 14:00:41:198 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_25
  1579. 14:00:41:199 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_38
  1580. 14:00:41:199 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_39
  1581. 14:00:41:199 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_10
  1582. 14:00:41:199 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_11
  1583. 14:00:41:201 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_34
  1584. 14:00:41:202 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_35
  1585. 14:00:41:203 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_8
  1586. 14:00:41:203 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_9
  1587. 14:00:41:205 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_1
  1588. 14:00:41:206 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getStatsUsingGET_1
  1589. 14:00:41:210 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_26
  1590. 14:00:41:210 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_27
  1591. 14:00:41:211 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_1
  1592. 14:00:41:211 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_26
  1593. 14:00:41:212 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_27
  1594. 14:00:41:212 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByTopLevelTypeUsingGET_1
  1595. 14:00:41:213 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_40
  1596. 14:00:41:213 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_41
  1597. 14:00:41:214 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getEquipmentByPointUsingGET_1
  1598. 14:00:41:214 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getEquipmentDetailUsingGET_1
  1599. 14:00:41:215 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_2
  1600. 14:00:41:215 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_3
  1601. 14:00:41:217 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_36
  1602. 14:00:41:217 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_37
  1603. 14:00:41:218 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_1
  1604. 14:00:41:219 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: testEquipmentUsingPOST_1
  1605. 14:00:41:220 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_20
  1606. 14:00:41:220 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_21
  1607. 14:00:41:222 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateEquipmentStatusUsingPUT_1
  1608. 14:00:41:225 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_28
  1609. 14:00:41:225 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_29
  1610. 14:00:41:226 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_2
  1611. 14:00:41:226 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_3
  1612. 14:00:41:226 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_28
  1613. 14:00:41:226 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_29
  1614. 14:00:41:227 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_42
  1615. 14:00:41:227 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_43
  1616. 14:00:41:228 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_4
  1617. 14:00:41:228 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_5
  1618. 14:00:41:229 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_38
  1619. 14:00:41:229 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_39
  1620. 14:00:41:230 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_2
  1621. 14:00:41:231 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_3
  1622. 14:00:41:231 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_22
  1623. 14:00:41:232 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_23
  1624. 14:00:41:235 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_30
  1625. 14:00:41:235 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_31
  1626. 14:00:41:236 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_4
  1627. 14:00:41:236 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_5
  1628. 14:00:41:237 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_30
  1629. 14:00:41:237 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_31
  1630. 14:00:41:237 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_44
  1631. 14:00:41:237 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_45
  1632. 14:00:41:238 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_6
  1633. 14:00:41:238 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_7
  1634. 14:00:41:238 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_40
  1635. 14:00:41:239 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_41
  1636. 14:00:41:239 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_4
  1637. 14:00:41:240 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_5
  1638. 14:00:41:240 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_24
  1639. 14:00:41:240 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_25
  1640. 14:00:41:243 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_32
  1641. 14:00:41:243 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_33
  1642. 14:00:41:244 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_6
  1643. 14:00:41:244 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_7
  1644. 14:00:41:245 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_32
  1645. 14:00:41:245 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_33
  1646. 14:00:41:245 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_46
  1647. 14:00:41:246 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_47
  1648. 14:00:41:246 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_8
  1649. 14:00:41:246 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_9
  1650. 14:00:41:247 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_42
  1651. 14:00:41:247 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_43
  1652. 14:00:41:247 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_6
  1653. 14:00:41:248 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_7
  1654. 14:00:41:248 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_26
  1655. 14:00:41:248 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_27
  1656. 14:00:41:250 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAlarmCountsUsingGET_1
  1657. 14:00:41:251 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAveragePressureUsingGET_1
  1658. 14:00:41:252 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDailyStatsUsingGET_2
  1659. 14:00:41:252 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDailyStatsUsingGET_3
  1660. 14:00:41:252 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_2
  1661. 14:00:41:252 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_3
  1662. 14:00:41:253 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPressureDistributionUsingGET_1
  1663. 14:00:41:254 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getSignalVsPressureUsingGET_1
  1664. 14:00:41:258 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportFlowMonitorDataUsingGET_1
  1665. 14:00:41:259 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getFlowMonitorPageUsingGET_1
  1666. 14:00:41:260 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getFlowTrend24hUsingGET_1
  1667. 14:00:41:262 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: dispatchUsingPOST_1
  1668. 14:00:41:263 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: equipmentUsingGET_1
  1669. 14:00:41:264 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: historyUsingGET_1
  1670. 14:00:41:265 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resolveUsingPUT_1
  1671. 14:00:41:265 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statsUsingGET_1
  1672. 14:00:41:266 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: summaryUsingGET_1
  1673. 14:00:41:270 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_34
  1674. 14:00:41:270 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_35
  1675. 14:00:41:271 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePointRelUsingDELETE_1
  1676. 14:00:41:272 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findFullByPageUsingGET_1
  1677. 14:00:41:272 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAbnormalListUsingGET_1
  1678. 14:00:41:273 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getEquipmentStatusUsingGET_1
  1679. 14:00:41:274 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPointRelByEquipmentUsingGET_1
  1680. 14:00:41:274 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPointRelByPointUsingGET_1
  1681. 14:00:41:275 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_44
  1682. 14:00:41:275 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_45
  1683. 14:00:41:276 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveDeviceRelUsingPOST_1
  1684. 14:00:41:277 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: savePointRelUsingPOST_1
  1685. 14:00:41:278 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: savePointRelBatchUsingPOST_1
  1686. 14:00:41:279 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_28
  1687. 14:00:41:279 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_29
  1688. 14:00:41:281 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_36
  1689. 14:00:41:282 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_37
  1690. 14:00:41:282 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteDeviceRelUsingDELETE_1
  1691. 14:00:41:285 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_34
  1692. 14:00:41:285 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_35
  1693. 14:00:41:286 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_48
  1694. 14:00:41:286 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_49
  1695. 14:00:41:286 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_12
  1696. 14:00:41:287 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_13
  1697. 14:00:41:287 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listDevicesUsingGET_1
  1698. 14:00:41:288 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionsUsingGET_1
  1699. 14:00:41:305 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_46
  1700. 14:00:41:305 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_47
  1701. 14:00:41:307 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveDeviceRelUsingPOST_2
  1702. 14:00:41:307 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveDeviceRelUsingPOST_3
  1703. 14:00:41:307 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveDeviceRelBatchUsingPOST_1
  1704. 14:00:41:308 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_30
  1705. 14:00:41:308 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_31
  1706. 14:00:41:309 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPointsUsingGET_1
  1707. 14:00:41:309 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendUsingGET_2
  1708. 14:00:41:310 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendUsingGET_3
  1709. 14:00:41:312 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAlarmsUsingGET_2
  1710. 14:00:41:313 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAlarmsUsingGET_3
  1711. 14:00:41:313 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDailyStatsUsingGET_4
  1712. 14:00:41:314 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDailyStatsUsingGET_5
  1713. 14:00:41:314 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_4
  1714. 14:00:41:315 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_5
  1715. 14:00:41:315 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataUsingGET_1
  1716. 14:00:41:317 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestWithAlarmUsingGET_1
  1717. 14:00:41:318 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getOnlineRateUsingGET_1
  1718. 14:00:41:319 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendUsingGET_4
  1719. 14:00:41:319 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendUsingGET_5
  1720. 14:00:41:320 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_38
  1721. 14:00:41:321 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_39
  1722. 14:00:41:324 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_36
  1723. 14:00:41:325 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_37
  1724. 14:00:41:325 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_50
  1725. 14:00:41:326 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_51
  1726. 14:00:41:329 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_48
  1727. 14:00:41:329 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_49
  1728. 14:00:41:330 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_32
  1729. 14:00:41:330 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_33
  1730. 14:00:41:333 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_40
  1731. 14:00:41:333 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_41
  1732. 14:00:41:336 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_38
  1733. 14:00:41:337 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_39
  1734. 14:00:41:337 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_52
  1735. 14:00:41:337 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_53
  1736. 14:00:41:337 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionsUsingGET_2
  1737. 14:00:41:337 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionsUsingGET_3
  1738. 14:00:41:340 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_50
  1739. 14:00:41:340 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_51
  1740. 14:00:41:341 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_34
  1741. 14:00:41:341 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_35
  1742. 14:00:41:342 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportDataUsingGET_1
  1743. 14:00:41:344 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_42
  1744. 14:00:41:344 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_43
  1745. 14:00:41:345 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteDeviceRelUsingDELETE_2
  1746. 14:00:41:345 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteDeviceRelUsingDELETE_3
  1747. 14:00:41:348 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_40
  1748. 14:00:41:348 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_41
  1749. 14:00:41:349 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_54
  1750. 14:00:41:349 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_55
  1751. 14:00:41:350 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listByNetworkIdUsingGET_1
  1752. 14:00:41:350 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listDevicesUsingGET_2
  1753. 14:00:41:350 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listDevicesUsingGET_3
  1754. 14:00:41:351 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionsUsingGET_4
  1755. 14:00:41:351 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionsUsingGET_5
  1756. 14:00:41:353 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_52
  1757. 14:00:41:353 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_53
  1758. 14:00:41:354 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveDeviceRelUsingPOST_4
  1759. 14:00:41:354 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveDeviceRelUsingPOST_5
  1760. 14:00:41:355 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveDeviceRelBatchUsingPOST_2
  1761. 14:00:41:355 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveDeviceRelBatchUsingPOST_3
  1762. 14:00:41:356 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_36
  1763. 14:00:41:356 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_37
  1764. 14:00:41:357 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_44
  1765. 14:00:41:358 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_45
  1766. 14:00:41:360 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_42
  1767. 14:00:41:360 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_43
  1768. 14:00:41:361 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_56
  1769. 14:00:41:361 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_57
  1770. 14:00:41:361 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listByNetworkIdUsingGET_2
  1771. 14:00:41:362 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listByNetworkIdUsingGET_3
  1772. 14:00:41:364 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_54
  1773. 14:00:41:364 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_55
  1774. 14:00:41:365 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statsUsingGET_2
  1775. 14:00:41:365 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statsUsingGET_3
  1776. 14:00:41:366 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_38
  1777. 14:00:41:366 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_39
  1778. 14:00:41:369 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getEquipmentsUsingGET_1
  1779. 14:00:41:369 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getManholesUsingGET_1
  1780. 14:00:41:370 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPipeLinesUsingGET_1
  1781. 14:00:41:374 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_46
  1782. 14:00:41:374 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_47
  1783. 14:00:41:375 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportDataUsingGET_2
  1784. 14:00:41:375 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportDataUsingGET_3
  1785. 14:00:41:376 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_58
  1786. 14:00:41:376 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_59
  1787. 14:00:41:377 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getMapPointsUsingGET_1
  1788. 14:00:41:380 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_8
  1789. 14:00:41:381 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_9
  1790. 14:00:41:384 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_56
  1791. 14:00:41:384 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_57
  1792. 14:00:41:385 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsByLevelUsingGET_1
  1793. 14:00:41:385 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsByRegionUsingGET_1
  1794. 14:00:41:386 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsByStatusUsingGET_1
  1795. 14:00:41:386 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsByTypeUsingGET_1
  1796. 14:00:41:387 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsOverviewUsingGET_1
  1797. 14:00:41:388 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsStatusTimelineUsingGET_1
  1798. 14:00:41:388 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsTypeTimelineUsingGET_1
  1799. 14:00:41:389 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: submitUsingPUT_1
  1800. 14:00:41:390 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_40
  1801. 14:00:41:390 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_41
  1802. 14:00:41:393 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportLeakageMonitorDataUsingGET_1
  1803. 14:00:41:395 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLeakageMonitorPageUsingGET_1
  1804. 14:00:41:396 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLeakageTrend24hUsingGET_1
  1805. 14:00:41:401 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryByDateUsingPOST_1
  1806. 14:00:41:404 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: abnormalTerminalTrendUsingPOST_1
  1807. 14:00:41:407 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: caseRateTrendUsingPOST_1
  1808. 14:00:41:411 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: batchDispatchUsingPOST_1
  1809. 14:00:41:413 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: processTaskUsingPOST_1
  1810. 14:00:41:421 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_2
  1811. 14:00:41:421 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_3
  1812. 14:00:41:423 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_60
  1813. 14:00:41:423 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_61
  1814. 14:00:41:427 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllImeiCardNumbersUsingGET_1
  1815. 14:00:41:428 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataByImeiUsingGET_1
  1816. 14:00:41:429 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getOverallStatisticsUsingGET_1
  1817. 14:00:41:430 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryAlarmDataUsingGET_1
  1818. 14:00:41:431 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_4
  1819. 14:00:41:431 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_5
  1820. 14:00:41:432 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statAlarmTrendByHourUsingGET_1
  1821. 14:00:41:433 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statManholeByDeviceUsingGET_1
  1822. 14:00:41:434 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statTemperatureTrendByHourUsingGET_1
  1823. 14:00:41:438 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveWarningThresholdUsingPOST_2
  1824. 14:00:41:438 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveWarningThresholdUsingPOST_3
  1825. 14:00:41:440 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateDeviceStatusUsingPOST_1
  1826. 14:00:41:450 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_4
  1827. 14:00:41:451 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_5
  1828. 14:00:41:453 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_62
  1829. 14:00:41:453 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_63
  1830. 14:00:41:457 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getManholeDataListUsingPOST_1
  1831. 14:00:41:460 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: countByTypeUsingPOST_1
  1832. 14:00:41:462 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_1
  1833. 14:00:41:466 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_44
  1834. 14:00:41:466 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_45
  1835. 14:00:41:466 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_4
  1836. 14:00:41:466 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_5
  1837. 14:00:41:467 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_8
  1838. 14:00:41:467 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_9
  1839. 14:00:41:467 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_48
  1840. 14:00:41:467 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_49
  1841. 14:00:41:468 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_64
  1842. 14:00:41:468 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_65
  1843. 14:00:41:469 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_10
  1844. 14:00:41:469 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_11
  1845. 14:00:41:470 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPointDetailUsingGET_1
  1846. 14:00:41:470 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPointsByNetworkUsingGET_1
  1847. 14:00:41:471 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_58
  1848. 14:00:41:472 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_59
  1849. 14:00:41:472 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_8
  1850. 14:00:41:473 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_9
  1851. 14:00:41:475 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: unbindEquipmentUsingPOST_1
  1852. 14:00:41:475 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_42
  1853. 14:00:41:475 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_43
  1854. 14:00:41:479 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllDeviceCodesUsingGET_1
  1855. 14:00:41:480 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataByDeviceUsingGET_1
  1856. 14:00:41:481 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryAbnormalDataUsingGET_1
  1857. 14:00:41:482 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_6
  1858. 14:00:41:482 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_7
  1859. 14:00:41:483 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statPowerByDeviceUsingGET_1
  1860. 14:00:41:483 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statPowerTrendByHourUsingGET_1
  1861. 14:00:41:486 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_46
  1862. 14:00:41:486 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_47
  1863. 14:00:41:487 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_10
  1864. 14:00:41:487 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_11
  1865. 14:00:41:488 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_50
  1866. 14:00:41:488 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_51
  1867. 14:00:41:488 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_66
  1868. 14:00:41:489 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_67
  1869. 14:00:41:490 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_12
  1870. 14:00:41:490 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_13
  1871. 14:00:41:490 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_60
  1872. 14:00:41:491 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_61
  1873. 14:00:41:491 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_10
  1874. 14:00:41:492 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_11
  1875. 14:00:41:492 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_44
  1876. 14:00:41:493 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_45
  1877. 14:00:41:497 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_10
  1878. 14:00:41:497 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_11
  1879. 14:00:41:497 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_6
  1880. 14:00:41:498 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_7
  1881. 14:00:41:498 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: boundEquipmentIdsUsingGET_2
  1882. 14:00:41:498 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: boundEquipmentIdsUsingGET_3
  1883. 14:00:41:499 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingDELETE_4
  1884. 14:00:41:500 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingDELETE_5
  1885. 14:00:41:500 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_52
  1886. 14:00:41:500 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_53
  1887. 14:00:41:501 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_68
  1888. 14:00:41:501 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_69
  1889. 14:00:41:501 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_14
  1890. 14:00:41:501 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_15
  1891. 14:00:41:503 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_62
  1892. 14:00:41:503 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_63
  1893. 14:00:41:504 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_10
  1894. 14:00:41:504 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_11
  1895. 14:00:41:506 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: dispatchUsingPOST_2
  1896. 14:00:41:506 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: dispatchUsingPOST_3
  1897. 14:00:41:506 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: equipmentUsingGET_2
  1898. 14:00:41:507 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: equipmentUsingGET_3
  1899. 14:00:41:507 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: historyUsingGET_2
  1900. 14:00:41:507 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: historyUsingGET_3
  1901. 14:00:41:508 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resolveUsingPUT_2
  1902. 14:00:41:508 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resolveUsingPUT_3
  1903. 14:00:41:508 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statsUsingGET_4
  1904. 14:00:41:509 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statsUsingGET_5
  1905. 14:00:41:510 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getHistoryUsingGET_1
  1906. 14:00:41:511 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPointsUsingGET_2
  1907. 14:00:41:511 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPointsUsingGET_3
  1908. 14:00:41:511 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendUsingGET_6
  1909. 14:00:41:511 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendUsingGET_7
  1910. 14:00:41:515 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportPressureMonitorDataUsingGET_1
  1911. 14:00:41:516 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPressureMonitorPageUsingGET_1
  1912. 14:00:41:517 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPressureTrend24hUsingGET_1
  1913. 14:00:41:520 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllDeviceCodesUsingGET_2
  1914. 14:00:41:520 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllDeviceCodesUsingGET_3
  1915. 14:00:41:521 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_6
  1916. 14:00:41:521 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_7
  1917. 14:00:41:522 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataByDeviceUsingGET_2
  1918. 14:00:41:522 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataByDeviceUsingGET_3
  1919. 14:00:41:523 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryAbnormalDataUsingGET_2
  1920. 14:00:41:523 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryAbnormalDataUsingGET_3
  1921. 14:00:41:523 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_8
  1922. 14:00:41:524 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_9
  1923. 14:00:41:525 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statFlowTrendByHourUsingGET_1
  1924. 14:00:41:525 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statRadarByDeviceUsingGET_1
  1925. 14:00:41:526 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getFlowHistoryUsingGET_1
  1926. 14:00:41:527 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getGasAlarmLatestUsingGET_1
  1927. 14:00:41:528 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPointsWithLatestDataUsingGET_1
  1928. 14:00:41:528 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPressureHistoryUsingGET_1
  1929. 14:00:41:529 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getVideoListUsingGET_1
  1930. 14:00:41:531 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_54
  1931. 14:00:41:531 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_55
  1932. 14:00:41:536 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_48
  1933. 14:00:41:536 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_49
  1934. 14:00:41:537 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_70
  1935. 14:00:41:538 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_71
  1936. 14:00:41:538 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getFourColorMapUsingGET_1
  1937. 14:00:41:542 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_64
  1938. 14:00:41:542 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_65
  1939. 14:00:41:543 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_46
  1940. 14:00:41:544 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_47
  1941. 14:00:41:544 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_2
  1942. 14:00:41:545 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_3
  1943. 14:00:41:547 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_1
  1944. 14:00:41:548 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_1
  1945. 14:00:41:549 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getConfigKeyUsingGET_1
  1946. 14:00:41:549 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_4
  1947. 14:00:41:549 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_5
  1948. 14:00:41:550 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: refreshCacheUsingDELETE_1
  1949. 14:00:41:550 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_1
  1950. 14:00:41:556 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_16
  1951. 14:00:41:557 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_17
  1952. 14:00:41:558 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_2
  1953. 14:00:41:558 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_3
  1954. 14:00:41:561 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_2
  1955. 14:00:41:561 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_3
  1956. 14:00:41:562 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_2
  1957. 14:00:41:562 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_3
  1958. 14:00:41:563 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: excludeChildUsingGET_1
  1959. 14:00:41:563 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_6
  1960. 14:00:41:563 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_7
  1961. 14:00:41:568 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_18
  1962. 14:00:41:568 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_19
  1963. 14:00:41:569 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_2
  1964. 14:00:41:569 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_3
  1965. 14:00:41:571 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_4
  1966. 14:00:41:572 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_5
  1967. 14:00:41:572 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: dictTypeUsingGET_1
  1968. 14:00:41:573 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_4
  1969. 14:00:41:573 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_5
  1970. 14:00:41:573 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_8
  1971. 14:00:41:574 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_9
  1972. 14:00:41:574 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_4
  1973. 14:00:41:574 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_5
  1974. 14:00:41:578 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_20
  1975. 14:00:41:579 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_21
  1976. 14:00:41:580 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_4
  1977. 14:00:41:580 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_5
  1978. 14:00:41:585 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_6
  1979. 14:00:41:585 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_7
  1980. 14:00:41:585 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_6
  1981. 14:00:41:586 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_7
  1982. 14:00:41:586 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_10
  1983. 14:00:41:586 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_11
  1984. 14:00:41:587 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionselectUsingGET_1
  1985. 14:00:41:587 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: refreshCacheUsingDELETE_2
  1986. 14:00:41:587 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: refreshCacheUsingDELETE_3
  1987. 14:00:41:587 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_6
  1988. 14:00:41:588 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_7
  1989. 14:00:41:591 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_22
  1990. 14:00:41:591 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_23
  1991. 14:00:41:592 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_6
  1992. 14:00:41:592 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_7
  1993. 14:00:41:593 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingGET_1
  1994. 14:00:41:593 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingHEAD_1
  1995. 14:00:41:593 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingPOST_1
  1996. 14:00:41:593 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingPUT_1
  1997. 14:00:41:593 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingPATCH_1
  1998. 14:00:41:593 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingDELETE_1
  1999. 14:00:41:593 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingOPTIONS_1
  2000. 14:00:41:594 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingTRACE_1
  2001. 14:00:41:595 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_12
  2002. 14:00:41:595 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_13
  2003. 14:00:41:596 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getRoutersUsingGET_1
  2004. 14:00:41:597 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: loginUsingPOST_1
  2005. 14:00:41:599 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: loginNoNeedAuthUsingPOST_1
  2006. 14:00:41:601 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: cleanUsingDELETE_1
  2007. 14:00:41:602 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_8
  2008. 14:00:41:603 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_9
  2009. 14:00:41:604 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: unlockUsingGET_1
  2010. 14:00:41:608 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_24
  2011. 14:00:41:608 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_25
  2012. 14:00:41:610 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_8
  2013. 14:00:41:610 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_9
  2014. 14:00:41:615 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_8
  2015. 14:00:41:616 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_9
  2016. 14:00:41:617 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_8
  2017. 14:00:41:617 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_9
  2018. 14:00:41:618 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_14
  2019. 14:00:41:618 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_15
  2020. 14:00:41:622 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_26
  2021. 14:00:41:622 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_27
  2022. 14:00:41:623 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_10
  2023. 14:00:41:623 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_11
  2024. 14:00:41:624 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: roleMenuTreeselectUsingGET_1
  2025. 14:00:41:625 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: treeselectUsingGET_1
  2026. 14:00:41:627 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_10
  2027. 14:00:41:627 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_11
  2028. 14:00:41:628 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_10
  2029. 14:00:41:628 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_11
  2030. 14:00:41:629 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_16
  2031. 14:00:41:629 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_17
  2032. 14:00:41:629 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_12
  2033. 14:00:41:629 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_13
  2034. 14:00:41:632 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_28
  2035. 14:00:41:632 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_29
  2036. 14:00:41:633 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: cleanUsingDELETE_2
  2037. 14:00:41:634 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: cleanUsingDELETE_3
  2038. 14:00:41:634 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_14
  2039. 14:00:41:634 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_15
  2040. 14:00:41:638 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_30
  2041. 14:00:41:638 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_31
  2042. 14:00:41:639 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_10
  2043. 14:00:41:639 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_11
  2044. 14:00:41:641 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_12
  2045. 14:00:41:642 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_13
  2046. 14:00:41:642 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_12
  2047. 14:00:41:642 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_13
  2048. 14:00:41:643 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_18
  2049. 14:00:41:643 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_19
  2050. 14:00:41:643 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionselectUsingGET_2
  2051. 14:00:41:643 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionselectUsingGET_3
  2052. 14:00:41:644 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_16
  2053. 14:00:41:644 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_17
  2054. 14:00:41:647 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_32
  2055. 14:00:41:647 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_33
  2056. 14:00:41:648 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_12
  2057. 14:00:41:648 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_13
  2058. 14:00:41:649 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: avatarUsingPOST_1
  2059. 14:00:41:649 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: profileUsingGET_1
  2060. 14:00:41:655 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateProfileUsingPUT_1
  2061. 14:00:41:655 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updatePwdUsingPUT_1
  2062. 14:00:41:657 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: registerUsingPOST_1
  2063. 14:00:41:660 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_14
  2064. 14:00:41:660 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_15
  2065. 14:00:41:661 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: cancelAuthUserUsingPUT_1
  2066. 14:00:41:661 WARN 30232 --- [restartedMain] s.d.s.w.r.p.ParameterDataTypeReader : Trying to infer dataType java.lang.Long[]
  2067. 14:00:41:661 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: cancelAuthUserAllUsingPUT_1
  2068. 14:00:41:662 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: changeStatusUsingPUT_1
  2069. 14:00:41:663 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: dataScopeUsingPUT_1
  2070. 14:00:41:663 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deptTreeUsingGET_1
  2071. 14:00:41:664 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_14
  2072. 14:00:41:664 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_15
  2073. 14:00:41:664 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_20
  2074. 14:00:41:664 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_21
  2075. 14:00:41:665 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionselectUsingGET_4
  2076. 14:00:41:665 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionselectUsingGET_5
  2077. 14:00:41:665 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_18
  2078. 14:00:41:665 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_19
  2079. 14:00:41:666 WARN 30232 --- [restartedMain] s.d.s.w.r.p.ParameterDataTypeReader : Trying to infer dataType java.lang.Long[]
  2080. 14:00:41:666 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectAuthUserAllUsingPUT_1
  2081. 14:00:41:674 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: allocatedListUsingGET_1
  2082. 14:00:41:675 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_34
  2083. 14:00:41:675 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_35
  2084. 14:00:41:677 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: unallocatedListUsingGET_1
  2085. 14:00:41:678 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_14
  2086. 14:00:41:678 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_15
  2087. 14:00:41:681 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_16
  2088. 14:00:41:681 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_17
  2089. 14:00:41:681 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: authRoleUsingGET_1
  2090. 14:00:41:682 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: changeStatusUsingPUT_2
  2091. 14:00:41:682 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: changeStatusUsingPUT_3
  2092. 14:00:41:683 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deptTreeUsingGET_2
  2093. 14:00:41:683 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deptTreeUsingGET_3
  2094. 14:00:41:684 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_16
  2095. 14:00:41:684 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_17
  2096. 14:00:41:685 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_22
  2097. 14:00:41:685 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_23
  2098. 14:00:41:685 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_24
  2099. 14:00:41:685 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_25
  2100. 14:00:41:686 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: importDataUsingPOST_1
  2101. 14:00:41:687 WARN 30232 --- [restartedMain] s.d.s.w.r.p.ParameterDataTypeReader : Trying to infer dataType java.lang.Long[]
  2102. 14:00:41:687 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: insertAuthRoleUsingPUT_1
  2103. 14:00:41:687 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_20
  2104. 14:00:41:687 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_21
  2105. 14:00:41:688 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resetPwdUsingPUT_1
  2106. 14:00:41:690 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_36
  2107. 14:00:41:690 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_37
  2108. 14:00:41:692 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_16
  2109. 14:00:41:692 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_17
  2110. 14:00:41:693 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: importTemplateUsingPOST_1
  2111. 14:00:41:694 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: forceLogoutUsingDELETE_1
  2112. 14:00:41:695 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_38
  2113. 14:00:41:695 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_39
  2114. 14:00:41:697 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllDeviceCodesUsingGET_4
  2115. 14:00:41:697 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllDeviceCodesUsingGET_5
  2116. 14:00:41:697 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_8
  2117. 14:00:41:697 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_9
  2118. 14:00:41:697 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataByDeviceUsingGET_4
  2119. 14:00:41:697 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataByDeviceUsingGET_5
  2120. 14:00:41:698 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryAbnormalDataUsingGET_4
  2121. 14:00:41:698 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryAbnormalDataUsingGET_5
  2122. 14:00:41:698 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_10
  2123. 14:00:41:699 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_11
  2124. 14:00:41:699 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statTelemetryByDeviceUsingGET_1
  2125. 14:00:41:700 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statTelemetryTrendByHourUsingGET_1
  2126. 14:00:41:702 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleFaultUsingPOST_1
  2127. 14:00:41:707 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_6
  2128. 14:00:41:707 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_7
  2129. 14:00:41:708 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_72
  2130. 14:00:41:708 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_73
  2131. 14:00:41:711 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getUserUsingGET_1
  2132. 14:00:41:712 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_4
  2133. 14:00:41:713 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_5
  2134. 14:00:41:716 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_66
  2135. 14:00:41:716 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_67
  2136. 14:00:41:717 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_12
  2137. 14:00:41:717 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_13
  2138. 14:00:41:719 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: userListUsingGET_1
  2139. 14:00:41:722 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addWarningItemUsingPOST_1
  2140. 14:00:41:723 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: generateItemCodeUsingGET_1
  2141. 14:00:41:724 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getItemDetailUsingGET_1
  2142. 14:00:41:725 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryWarningItemsUsingGET_1
  2143. 14:00:41:725 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateItemStatusUsingPUT_1
  2144. 14:00:41:726 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateWarningItemUsingPUT_1
  2145. 14:00:41:729 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addWarningReasonUsingPOST_1
  2146. 14:00:41:730 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getReasonDetailUsingGET_1
  2147. 14:00:41:730 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getReasonsByTypeAndLevelUsingGET_1
  2148. 14:00:41:731 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryWarningReasonsUsingGET_1
  2149. 14:00:41:732 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateReasonStatusUsingPUT_1
  2150. 14:00:41:733 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateWarningReasonUsingPUT_1
  2151. 14:00:41:734 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_2
  2152. 14:00:41:734 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_3
  2153. 14:00:41:735 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_50
  2154. 14:00:41:735 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_51
  2155. 14:00:41:735 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_74
  2156. 14:00:41:735 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_75
  2157. 14:00:41:736 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getWarningThresholdListUsingGET_1
  2158. 14:00:41:737 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_68
  2159. 14:00:41:738 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_69
  2160. 14:00:41:738 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_6
  2161. 14:00:41:738 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_7
  2162. 14:00:41:740 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllDeviceCodesUsingGET_6
  2163. 14:00:41:740 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllDeviceCodesUsingGET_7
  2164. 14:00:41:741 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataByDeviceUsingGET_6
  2165. 14:00:41:741 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataByDeviceUsingGET_7
  2166. 14:00:41:741 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_12
  2167. 14:00:41:742 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_13
  2168. 14:00:41:742 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectOverLimitDataUsingGET_1
  2169. 14:00:41:743 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsByDeviceUsingGET_1
  2170. 14:00:41:743 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsOnlineDeviceUsingGET_1
  2171. 14:00:41:748 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_18
  2172. 14:00:41:749 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_19
  2173. 14:00:41:749 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_1
  2174. 14:00:41:750 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_76
  2175. 14:00:41:750 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_77
  2176. 14:00:41:750 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestPipeUsingGET_1
  2177. 14:00:41:751 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getOverallStatisticsUsingGET_2
  2178. 14:00:41:751 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getOverallStatisticsUsingGET_3
  2179. 14:00:41:752 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_12
  2180. 14:00:41:752 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_13
  2181. 14:00:41:753 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_1
  2182. 14:00:41:753 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_22
  2183. 14:00:41:754 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_23
  2184. 14:00:41:754 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_1
  2185. 14:00:41:755 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statPipeByMaterialUsingGET_1
  2186. 14:00:41:755 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statPipeByStatusUsingGET_1
  2187. 14:00:41:756 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_14
  2188. 14:00:41:756 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_15
  2189. 14:00:41:761 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_20
  2190. 14:00:41:761 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_21
  2191. 14:00:41:761 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_2
  2192. 14:00:41:762 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_3
  2193. 14:00:41:762 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_78
  2194. 14:00:41:762 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_79
  2195. 14:00:41:763 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_14
  2196. 14:00:41:763 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_15
  2197. 14:00:41:764 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_2
  2198. 14:00:41:764 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_3
  2199. 14:00:41:765 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_24
  2200. 14:00:41:765 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_25
  2201. 14:00:41:765 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_2
  2202. 14:00:41:766 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_3
  2203. 14:00:41:766 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_16
  2204. 14:00:41:766 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_17
  2205. 14:00:41:771 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_22
  2206. 14:00:41:772 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_23
  2207. 14:00:41:772 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_4
  2208. 14:00:41:772 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_5
  2209. 14:00:41:772 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_80
  2210. 14:00:41:772 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_81
  2211. 14:00:41:773 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_16
  2212. 14:00:41:773 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_17
  2213. 14:00:41:774 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_4
  2214. 14:00:41:774 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_5
  2215. 14:00:41:774 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_26
  2216. 14:00:41:774 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_27
  2217. 14:00:41:775 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_4
  2218. 14:00:41:775 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_5
  2219. 14:00:41:777 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_18
  2220. 14:00:41:777 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_19
  2221. 14:00:41:781 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_24
  2222. 14:00:41:781 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_25
  2223. 14:00:41:781 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_6
  2224. 14:00:41:782 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_7
  2225. 14:00:41:782 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_82
  2226. 14:00:41:782 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_83
  2227. 14:00:41:783 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_18
  2228. 14:00:41:783 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_19
  2229. 14:00:41:784 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_6
  2230. 14:00:41:785 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_7
  2231. 14:00:41:786 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_28
  2232. 14:00:41:786 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_29
  2233. 14:00:41:787 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_6
  2234. 14:00:41:787 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_7
  2235. 14:00:41:788 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_20
  2236. 14:00:41:788 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_21
  2237. 14:00:41:795 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_26
  2238. 14:00:41:795 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_27
  2239. 14:00:41:795 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_8
  2240. 14:00:41:796 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_9
  2241. 14:00:41:797 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_84
  2242. 14:00:41:797 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_85
  2243. 14:00:41:798 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_20
  2244. 14:00:41:799 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_21
  2245. 14:00:41:800 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_8
  2246. 14:00:41:800 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_9
  2247. 14:00:41:801 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_30
  2248. 14:00:41:801 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_31
  2249. 14:00:41:802 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_8
  2250. 14:00:41:802 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_9
  2251. 14:00:41:803 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_22
  2252. 14:00:41:803 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_23
  2253. 14:00:41:808 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_14
  2254. 14:00:41:808 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_15
  2255. 14:00:41:808 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_8
  2256. 14:00:41:809 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_9
  2257. 14:00:41:809 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingDELETE_6
  2258. 14:00:41:809 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingDELETE_7
  2259. 14:00:41:810 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_56
  2260. 14:00:41:810 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_57
  2261. 14:00:41:810 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_86
  2262. 14:00:41:810 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_87
  2263. 14:00:41:811 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_40
  2264. 14:00:41:811 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_41
  2265. 14:00:41:812 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_70
  2266. 14:00:41:813 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_71
  2267. 14:00:41:813 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_24
  2268. 14:00:41:813 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_25
  2269. 14:00:41:817 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addWorkOrderUsingPOST_1
  2270. 14:00:41:818 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: operWorkOrderUsingPOST_1
  2271. 14:00:41:825 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_8
  2272. 14:00:41:825 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_9
  2273. 14:00:41:827 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findFinishedPageUsingPOST_1
  2274. 14:00:41:829 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findProcessingPageUsingPOST_1
  2275. 14:00:41:831 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_88
  2276. 14:00:41:831 INFO 30232 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_89
  2277. 14:00:41:835 INFO 30232 --- [restartedMain] o.s.s.quartz.SchedulerFactoryBean : Starting Quartz Scheduler now
  2278. 14:00:41:835 INFO 30232 --- [restartedMain] org.quartz.core.QuartzScheduler : Scheduler quartzScheduler_$_NON_CLUSTERED started.
  2279. 14:00:41:844 INFO 30232 --- [restartedMain] com.zksy.ZksyApplication : Started ZksyApplication in 17.842 seconds (JVM running for 18.891)
  2280. 14:00:41:850 INFO 30232 --- [restartedMain] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=pipe-network-service.yaml, group=DEFAULT_GROUP
  2281. 14:00:41:851 INFO 30232 --- [restartedMain] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=pipe-network-service-druid.yaml, group=DEFAULT_GROUP
  2282. 14:00:41:851 INFO 30232 --- [restartedMain] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=pipe-network-service, group=DEFAULT_GROUP
  2283. 14:01:31:262 WARN 30232 --- [Thread-4] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  2284. 14:01:31:262 WARN 30232 --- [Thread-8] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  2285. 14:01:31:263 WARN 30232 --- [Thread-8] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  2286. 14:01:31:263 WARN 30232 --- [Thread-4] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  2287. 14:01:31:265 INFO 30232 --- [SpringApplicationShutdownHook] org.quartz.core.QuartzScheduler : Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2288. 14:01:31:703 INFO 30232 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  2289. 14:01:31:721 INFO 30232 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  2290. 14:01:32:031 INFO 30232 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  2291. 14:01:32:031 INFO 30232 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@443ef4b6[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  2292. 14:01:32:031 INFO 30232 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1784613374571_172.16.102.252_61251
  2293. 14:01:32:035 INFO 30232 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@3f3c0ba[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 21]
  2294. 14:01:32:041 INFO 30232 --- [SpringApplicationShutdownHook] o.s.s.quartz.SchedulerFactoryBean : Shutting down Quartz Scheduler
  2295. 14:01:32:042 INFO 30232 --- [SpringApplicationShutdownHook] org.quartz.core.QuartzScheduler : Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  2296. 14:01:32:042 INFO 30232 --- [SpringApplicationShutdownHook] org.quartz.core.QuartzScheduler : Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  2297. 14:01:32:042 INFO 30232 --- [SpringApplicationShutdownHook] org.quartz.core.QuartzScheduler : Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  2298. 14:01:32:042 INFO 30232 --- [SpringApplicationShutdownHook] sys-user : ====关闭后台任务任务线程池====
  2299. 14:01:32:043 WARN 30232 --- [SpringApplicationShutdownHook] .s.c.a.CommonAnnotationBeanPostProcessor : Destroy method on bean with name 'shutdownManager' threw an exception: java.lang.ExceptionInInitializerError
  2300. 14:01:32:048 INFO 30232 --- [SpringApplicationShutdownHook] com.alibaba.druid.pool.DruidDataSource : {dataSource-1} closing ...
  2301. 14:01:32:055 INFO 30232 --- [SpringApplicationShutdownHook] com.alibaba.druid.pool.DruidDataSource : {dataSource-1} closed
  2302. 14:01:37:492 INFO 27660 --- [restartedMain] com.zksy.ZksyApplication : The following 1 profile is active: "dev"
  2303. 14:01:38:457 INFO 27660 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode!
  2304. 14:01:38:458 INFO 27660 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  2305. 14:01:38:541 INFO 27660 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 72 ms. Found 0 Redis repository interfaces.
  2306. 14:01:38:809 INFO 27660 --- [restartedMain] o.s.cloud.context.scope.GenericScope : BeanFactory id=3c481e74-3e90-36f2-b128-9d5c934cbba4
  2307. 14:01:39:604 INFO 27660 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8301 (http)
  2308. 14:01:39:616 INFO 27660 --- [restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  2309. 14:01:39:616 INFO 27660 --- [restartedMain] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.106]
  2310. 14:01:39:631 WARN 27660 --- [restartedMain] o.a.c.webresources.DirResourceSet : Disabled the global canonical file name cache to protect against CVE-2024-56337 when starting the WebResourceSet at [C:\Users\Administrator\AppData\Local\Temp\tomcat-docbase.8301.1809090815539850576] which is part of the web application []
  2311. 14:01:39:732 INFO 27660 --- [restartedMain] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  2312. 14:01:39:732 INFO 27660 --- [restartedMain] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 2233 ms
  2313. 14:01:40:113 DEBUG 27660 --- [restartedMain] c.z.f.s.f.JwtAuthenticationTokenFilter : Filter 'jwtAuthenticationTokenFilter' configured for use
  2314. 14:01:40:594 INFO 27660 --- [restartedMain] com.alibaba.druid.pool.DruidDataSource : {dataSource-1} inited
  2315. 14:01:41:123 WARN 27660 --- [restartedMain] c.b.m.core.injector.DefaultSqlInjector : class com.zksy.base.domain.AlarmAssignDetail ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method.
  2316. 14:01:41:134 WARN 27660 --- [restartedMain] c.b.m.core.injector.DefaultSqlInjector : class com.zksy.base.domain.AlarmAssignList ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method.
  2317. 14:01:42:811 WARN 27660 --- [restartedMain] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'equipmentStatusController': Unsatisfied dependency expressed through field 'service'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'equipmentStatusServiceImpl': Unsatisfied dependency expressed through field 'sysUserService'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysUserServiceImpl': Unsatisfied dependency expressed through field 'configService'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysConfigServiceImpl': Invocation of init method failed; nested exception is org.springframework.jdbc.BadSqlGrammarException:
  2318. ### Error querying database. Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2319. Position: 8 At Line: 1, Line Position: 8
  2320. ### The error may exist in file [E:\workSpace\pipe-ner-server\pipe-network-service\zksy-system\target\classes\mapper\system\SysConfigMapper.xml]
  2321. ### The error may involve com.zksy.system.mapper.SysConfigMapper.selectConfigList-Inline
  2322. ### The error occurred while setting parameters
  2323. ### SQL: select config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark from sys_config
  2324. ### Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2325. Position: 8 At Line: 1, Line Position: 8
  2326. ; bad SQL grammar []; nested exception is com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2327. Position: 8 At Line: 1, Line Position: 8
  2328. 14:01:42:811 INFO 27660 --- [restartedMain] com.alibaba.druid.pool.DruidDataSource : {dataSource-1} closing ...
  2329. 14:01:42:813 INFO 27660 --- [restartedMain] com.alibaba.druid.pool.DruidDataSource : {dataSource-1} closed
  2330. 14:01:42:829 INFO 27660 --- [restartedMain] o.apache.catalina.core.StandardService : Stopping service [Tomcat]
  2331. 14:01:42:840 INFO 27660 --- [restartedMain] ConditionEvaluationReportLoggingListener :
  2332. Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
  2333. 14:01:42:868 ERROR 27660 --- [restartedMain] o.s.boot.SpringApplication : Application run failed
  2334. org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'equipmentStatusController': Unsatisfied dependency expressed through field 'service'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'equipmentStatusServiceImpl': Unsatisfied dependency expressed through field 'sysUserService'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysUserServiceImpl': Unsatisfied dependency expressed through field 'configService'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysConfigServiceImpl': Invocation of init method failed; nested exception is org.springframework.jdbc.BadSqlGrammarException:
  2335. ### Error querying database. Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2336. Position: 8 At Line: 1, Line Position: 8
  2337. ### The error may exist in file [E:\workSpace\pipe-ner-server\pipe-network-service\zksy-system\target\classes\mapper\system\SysConfigMapper.xml]
  2338. ### The error may involve com.zksy.system.mapper.SysConfigMapper.selectConfigList-Inline
  2339. ### The error occurred while setting parameters
  2340. ### SQL: select config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark from sys_config
  2341. ### Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2342. Position: 8 At Line: 1, Line Position: 8
  2343. ; bad SQL grammar []; nested exception is com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2344. Position: 8 At Line: 1, Line Position: 8
  2345. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:713) ~[spring-beans-5.3.39.jar:5.3.39]
  2346. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:693) ~[spring-beans-5.3.39.jar:5.3.39]
  2347. at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) ~[spring-beans-5.3.39.jar:5.3.39]
  2348. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:408) ~[spring-beans-5.3.39.jar:5.3.39]
  2349. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) ~[spring-beans-5.3.39.jar:5.3.39]
  2350. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) ~[spring-beans-5.3.39.jar:5.3.39]
  2351. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.39.jar:5.3.39]
  2352. at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:336) ~[spring-beans-5.3.39.jar:5.3.39]
  2353. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.39.jar:5.3.39]
  2354. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:334) ~[spring-beans-5.3.39.jar:5.3.39]
  2355. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:209) ~[spring-beans-5.3.39.jar:5.3.39]
  2356. at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955) ~[spring-beans-5.3.39.jar:5.3.39]
  2357. at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:932) ~[spring-context-5.3.39.jar:5.3.39]
  2358. at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:591) ~[spring-context-5.3.39.jar:5.3.39]
  2359. at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) ~[spring-boot-2.7.12.jar:2.7.12]
  2360. at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) ~[spring-boot-2.7.12.jar:2.7.12]
  2361. at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) ~[spring-boot-2.7.12.jar:2.7.12]
  2362. at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) ~[spring-boot-2.7.12.jar:2.7.12]
  2363. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) ~[spring-boot-2.7.12.jar:2.7.12]
  2364. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) ~[spring-boot-2.7.12.jar:2.7.12]
  2365. at com.zksy.ZksyApplication.main(ZksyApplication.java:19) ~[classes/:na]
  2366. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
  2367. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
  2368. at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
  2369. at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
  2370. at org.springframework.boot.devtools.restart.RestartLauncher.run(RestartLauncher.java:49) ~[spring-boot-devtools-2.7.12.jar:2.7.12]
  2371. Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'equipmentStatusServiceImpl': Unsatisfied dependency expressed through field 'sysUserService'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysUserServiceImpl': Unsatisfied dependency expressed through field 'configService'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysConfigServiceImpl': Invocation of init method failed; nested exception is org.springframework.jdbc.BadSqlGrammarException:
  2372. ### Error querying database. Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2373. Position: 8 At Line: 1, Line Position: 8
  2374. ### The error may exist in file [E:\workSpace\pipe-ner-server\pipe-network-service\zksy-system\target\classes\mapper\system\SysConfigMapper.xml]
  2375. ### The error may involve com.zksy.system.mapper.SysConfigMapper.selectConfigList-Inline
  2376. ### The error occurred while setting parameters
  2377. ### SQL: select config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark from sys_config
  2378. ### Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2379. Position: 8 At Line: 1, Line Position: 8
  2380. ; bad SQL grammar []; nested exception is com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2381. Position: 8 At Line: 1, Line Position: 8
  2382. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:713) ~[spring-beans-5.3.39.jar:5.3.39]
  2383. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:693) ~[spring-beans-5.3.39.jar:5.3.39]
  2384. at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) ~[spring-beans-5.3.39.jar:5.3.39]
  2385. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:408) ~[spring-beans-5.3.39.jar:5.3.39]
  2386. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) ~[spring-beans-5.3.39.jar:5.3.39]
  2387. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) ~[spring-beans-5.3.39.jar:5.3.39]
  2388. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.39.jar:5.3.39]
  2389. at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:336) ~[spring-beans-5.3.39.jar:5.3.39]
  2390. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.39.jar:5.3.39]
  2391. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:334) ~[spring-beans-5.3.39.jar:5.3.39]
  2392. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:209) ~[spring-beans-5.3.39.jar:5.3.39]
  2393. at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) ~[spring-beans-5.3.39.jar:5.3.39]
  2394. at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) ~[spring-beans-5.3.39.jar:5.3.39]
  2395. at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) ~[spring-beans-5.3.39.jar:5.3.39]
  2396. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:710) ~[spring-beans-5.3.39.jar:5.3.39]
  2397. ... 25 common frames omitted
  2398. Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysUserServiceImpl': Unsatisfied dependency expressed through field 'configService'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysConfigServiceImpl': Invocation of init method failed; nested exception is org.springframework.jdbc.BadSqlGrammarException:
  2399. ### Error querying database. Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2400. Position: 8 At Line: 1, Line Position: 8
  2401. ### The error may exist in file [E:\workSpace\pipe-ner-server\pipe-network-service\zksy-system\target\classes\mapper\system\SysConfigMapper.xml]
  2402. ### The error may involve com.zksy.system.mapper.SysConfigMapper.selectConfigList-Inline
  2403. ### The error occurred while setting parameters
  2404. ### SQL: select config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark from sys_config
  2405. ### Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2406. Position: 8 At Line: 1, Line Position: 8
  2407. ; bad SQL grammar []; nested exception is com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2408. Position: 8 At Line: 1, Line Position: 8
  2409. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:713) ~[spring-beans-5.3.39.jar:5.3.39]
  2410. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:693) ~[spring-beans-5.3.39.jar:5.3.39]
  2411. at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) ~[spring-beans-5.3.39.jar:5.3.39]
  2412. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:408) ~[spring-beans-5.3.39.jar:5.3.39]
  2413. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) ~[spring-beans-5.3.39.jar:5.3.39]
  2414. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) ~[spring-beans-5.3.39.jar:5.3.39]
  2415. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.39.jar:5.3.39]
  2416. at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:336) ~[spring-beans-5.3.39.jar:5.3.39]
  2417. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.39.jar:5.3.39]
  2418. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:334) ~[spring-beans-5.3.39.jar:5.3.39]
  2419. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:209) ~[spring-beans-5.3.39.jar:5.3.39]
  2420. at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) ~[spring-beans-5.3.39.jar:5.3.39]
  2421. at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) ~[spring-beans-5.3.39.jar:5.3.39]
  2422. at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) ~[spring-beans-5.3.39.jar:5.3.39]
  2423. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:710) ~[spring-beans-5.3.39.jar:5.3.39]
  2424. ... 39 common frames omitted
  2425. Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysConfigServiceImpl': Invocation of init method failed; nested exception is org.springframework.jdbc.BadSqlGrammarException:
  2426. ### Error querying database. Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2427. Position: 8 At Line: 1, Line Position: 8
  2428. ### The error may exist in file [E:\workSpace\pipe-ner-server\pipe-network-service\zksy-system\target\classes\mapper\system\SysConfigMapper.xml]
  2429. ### The error may involve com.zksy.system.mapper.SysConfigMapper.selectConfigList-Inline
  2430. ### The error occurred while setting parameters
  2431. ### SQL: select config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark from sys_config
  2432. ### Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2433. Position: 8 At Line: 1, Line Position: 8
  2434. ; bad SQL grammar []; nested exception is com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2435. Position: 8 At Line: 1, Line Position: 8
  2436. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:160) ~[spring-beans-5.3.39.jar:5.3.39]
  2437. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyBeanPostProcessorsBeforeInitialization(AbstractAutowireCapableBeanFactory.java:440) ~[spring-beans-5.3.39.jar:5.3.39]
  2438. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1796) ~[spring-beans-5.3.39.jar:5.3.39]
  2439. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:620) ~[spring-beans-5.3.39.jar:5.3.39]
  2440. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.39.jar:5.3.39]
  2441. at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:336) ~[spring-beans-5.3.39.jar:5.3.39]
  2442. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.39.jar:5.3.39]
  2443. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:334) ~[spring-beans-5.3.39.jar:5.3.39]
  2444. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:209) ~[spring-beans-5.3.39.jar:5.3.39]
  2445. at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) ~[spring-beans-5.3.39.jar:5.3.39]
  2446. at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) ~[spring-beans-5.3.39.jar:5.3.39]
  2447. at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) ~[spring-beans-5.3.39.jar:5.3.39]
  2448. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:710) ~[spring-beans-5.3.39.jar:5.3.39]
  2449. ... 53 common frames omitted
  2450. Caused by: org.springframework.jdbc.BadSqlGrammarException:
  2451. ### Error querying database. Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2452. Position: 8 At Line: 1, Line Position: 8
  2453. ### The error may exist in file [E:\workSpace\pipe-ner-server\pipe-network-service\zksy-system\target\classes\mapper\system\SysConfigMapper.xml]
  2454. ### The error may involve com.zksy.system.mapper.SysConfigMapper.selectConfigList-Inline
  2455. ### The error occurred while setting parameters
  2456. ### SQL: select config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark from sys_config
  2457. ### Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2458. Position: 8 At Line: 1, Line Position: 8
  2459. ; bad SQL grammar []; nested exception is com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2460. Position: 8 At Line: 1, Line Position: 8
  2461. at org.springframework.jdbc.support.SQLStateSQLExceptionTranslator.doTranslate(SQLStateSQLExceptionTranslator.java:101) ~[spring-jdbc-5.3.39.jar:5.3.39]
  2462. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73) ~[spring-jdbc-5.3.39.jar:5.3.39]
  2463. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:82) ~[spring-jdbc-5.3.39.jar:5.3.39]
  2464. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:82) ~[spring-jdbc-5.3.39.jar:5.3.39]
  2465. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:92) ~[mybatis-spring-2.1.2.jar:2.1.2]
  2466. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:439) ~[mybatis-spring-2.1.2.jar:2.1.2]
  2467. at com.sun.proxy.$Proxy150.selectList(Unknown Source) ~[na:na]
  2468. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) ~[mybatis-spring-2.1.2.jar:2.1.2]
  2469. at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:164) ~[mybatis-plus-core-3.5.7.jar:3.5.7]
  2470. at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) ~[mybatis-plus-core-3.5.7.jar:3.5.7]
  2471. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:152) ~[mybatis-plus-core-3.5.7.jar:3.5.7]
  2472. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) ~[mybatis-plus-core-3.5.7.jar:3.5.7]
  2473. at com.sun.proxy.$Proxy225.selectConfigList(Unknown Source) ~[na:na]
  2474. at com.zksy.system.service.impl.SysConfigServiceImpl.loadingConfigCache(SysConfigServiceImpl.java:177) ~[classes/:na]
  2475. at com.zksy.system.service.impl.SysConfigServiceImpl.init(SysConfigServiceImpl.java:40) ~[classes/:na]
  2476. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
  2477. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
  2478. at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
  2479. at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
  2480. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleElement.invoke(InitDestroyAnnotationBeanPostProcessor.java:389) ~[spring-beans-5.3.39.jar:5.3.39]
  2481. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMetadata.invokeInitMethods(InitDestroyAnnotationBeanPostProcessor.java:333) ~[spring-beans-5.3.39.jar:5.3.39]
  2482. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:157) ~[spring-beans-5.3.39.jar:5.3.39]
  2483. ... 65 common frames omitted
  2484. Caused by: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2485. Position: 8 At Line: 1, Line Position: 8
  2486. at com.kingbase8.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:3551) ~[kingbase8-8.6.0.jar:na]
  2487. at com.kingbase8.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2993) ~[kingbase8-8.6.0.jar:na]
  2488. at com.kingbase8.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:405) ~[kingbase8-8.6.0.jar:na]
  2489. at com.kingbase8.jdbc.KbStatement.executeInternal_(KbStatement.java:784) ~[kingbase8-8.6.0.jar:na]
  2490. at com.kingbase8.jdbc.KbStatement.execute(KbStatement.java:676) ~[kingbase8-8.6.0.jar:na]
  2491. at com.kingbase8.jdbc.KbPreparedStatement.executeWithFlags(KbPreparedStatement.java:286) ~[kingbase8-8.6.0.jar:na]
  2492. at com.kingbase8.jdbc.KbPreparedStatement.execute(KbPreparedStatement.java:265) ~[kingbase8-8.6.0.jar:na]
  2493. at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3462) ~[druid-1.2.23.jar:na]
  2494. at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) ~[druid-1.2.23.jar:na]
  2495. at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3460) ~[druid-1.2.23.jar:na]
  2496. at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:158) ~[druid-1.2.23.jar:na]
  2497. at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) ~[druid-1.2.23.jar:na]
  2498. at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:65) ~[mybatis-3.5.16.jar:3.5.16]
  2499. at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:80) ~[mybatis-3.5.16.jar:3.5.16]
  2500. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
  2501. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
  2502. at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
  2503. at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
  2504. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61) ~[mybatis-3.5.16.jar:3.5.16]
  2505. at com.sun.proxy.$Proxy227.query(Unknown Source) ~[na:na]
  2506. at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:65) ~[mybatis-3.5.16.jar:3.5.16]
  2507. at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:336) ~[mybatis-3.5.16.jar:3.5.16]
  2508. at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:158) ~[mybatis-3.5.16.jar:3.5.16]
  2509. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:110) ~[mybatis-3.5.16.jar:3.5.16]
  2510. at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) ~[mybatis-plus-extension-3.5.7.jar:3.5.7]
  2511. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:59) ~[mybatis-3.5.16.jar:3.5.16]
  2512. at com.sun.proxy.$Proxy226.query(Unknown Source) ~[na:na]
  2513. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:154) ~[mybatis-3.5.16.jar:3.5.16]
  2514. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:147) ~[mybatis-3.5.16.jar:3.5.16]
  2515. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:142) ~[mybatis-3.5.16.jar:3.5.16]
  2516. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
  2517. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
  2518. at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
  2519. at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
  2520. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:425) ~[mybatis-spring-2.1.2.jar:2.1.2]
  2521. ... 81 common frames omitted
  2522. 14:01:43:827 WARN 27660 --- [Thread-4] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  2523. 14:01:43:827 WARN 27660 --- [Thread-8] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  2524. 14:56:27:059 INFO 16648 --- [restartedMain] com.zksy.ZksyApplication : The following 1 profile is active: "dev"
  2525. 14:56:28:091 INFO 16648 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode!
  2526. 14:56:28:093 INFO 16648 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  2527. 14:56:28:193 INFO 16648 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 88 ms. Found 0 Redis repository interfaces.
  2528. 14:56:28:475 INFO 16648 --- [restartedMain] o.s.cloud.context.scope.GenericScope : BeanFactory id=3c481e74-3e90-36f2-b128-9d5c934cbba4
  2529. 14:56:29:250 INFO 16648 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8301 (http)
  2530. 14:56:29:260 INFO 16648 --- [restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  2531. 14:56:29:261 INFO 16648 --- [restartedMain] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.106]
  2532. 14:56:29:274 WARN 16648 --- [restartedMain] o.a.c.webresources.DirResourceSet : Disabled the global canonical file name cache to protect against CVE-2024-56337 when starting the WebResourceSet at [C:\Users\Administrator\AppData\Local\Temp\tomcat-docbase.8301.13423058125795446830] which is part of the web application []
  2533. 14:56:29:369 INFO 16648 --- [restartedMain] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  2534. 14:56:29:369 INFO 16648 --- [restartedMain] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 2301 ms
  2535. 14:56:29:756 DEBUG 16648 --- [restartedMain] c.z.f.s.f.JwtAuthenticationTokenFilter : Filter 'jwtAuthenticationTokenFilter' configured for use
  2536. 14:56:30:254 INFO 16648 --- [restartedMain] com.alibaba.druid.pool.DruidDataSource : {dataSource-1} inited
  2537. 14:56:30:823 WARN 16648 --- [restartedMain] c.b.m.core.injector.DefaultSqlInjector : class com.zksy.base.domain.AlarmAssignDetail ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method.
  2538. 14:56:30:835 WARN 16648 --- [restartedMain] c.b.m.core.injector.DefaultSqlInjector : class com.zksy.base.domain.AlarmAssignList ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method.
  2539. 14:56:32:568 WARN 16648 --- [restartedMain] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'equipmentStatusController': Unsatisfied dependency expressed through field 'service'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'equipmentStatusServiceImpl': Unsatisfied dependency expressed through field 'sysUserService'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysUserServiceImpl': Unsatisfied dependency expressed through field 'configService'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysConfigServiceImpl': Invocation of init method failed; nested exception is org.springframework.jdbc.BadSqlGrammarException:
  2540. ### Error querying database. Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2541. Position: 8 At Line: 1, Line Position: 8
  2542. ### The error may exist in file [E:\workSpace\pipe-ner-server\pipe-network-service\zksy-system\target\classes\mapper\system\SysConfigMapper.xml]
  2543. ### The error may involve com.zksy.system.mapper.SysConfigMapper.selectConfigList-Inline
  2544. ### The error occurred while setting parameters
  2545. ### SQL: select config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark from sys_config
  2546. ### Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2547. Position: 8 At Line: 1, Line Position: 8
  2548. ; bad SQL grammar []; nested exception is com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2549. Position: 8 At Line: 1, Line Position: 8
  2550. 14:56:32:570 INFO 16648 --- [restartedMain] com.alibaba.druid.pool.DruidDataSource : {dataSource-1} closing ...
  2551. 14:56:32:571 INFO 16648 --- [restartedMain] com.alibaba.druid.pool.DruidDataSource : {dataSource-1} closed
  2552. 14:56:32:588 INFO 16648 --- [restartedMain] o.apache.catalina.core.StandardService : Stopping service [Tomcat]
  2553. 14:56:32:601 INFO 16648 --- [restartedMain] ConditionEvaluationReportLoggingListener :
  2554. Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
  2555. 14:56:32:642 ERROR 16648 --- [restartedMain] o.s.boot.SpringApplication : Application run failed
  2556. org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'equipmentStatusController': Unsatisfied dependency expressed through field 'service'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'equipmentStatusServiceImpl': Unsatisfied dependency expressed through field 'sysUserService'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysUserServiceImpl': Unsatisfied dependency expressed through field 'configService'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysConfigServiceImpl': Invocation of init method failed; nested exception is org.springframework.jdbc.BadSqlGrammarException:
  2557. ### Error querying database. Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2558. Position: 8 At Line: 1, Line Position: 8
  2559. ### The error may exist in file [E:\workSpace\pipe-ner-server\pipe-network-service\zksy-system\target\classes\mapper\system\SysConfigMapper.xml]
  2560. ### The error may involve com.zksy.system.mapper.SysConfigMapper.selectConfigList-Inline
  2561. ### The error occurred while setting parameters
  2562. ### SQL: select config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark from sys_config
  2563. ### Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2564. Position: 8 At Line: 1, Line Position: 8
  2565. ; bad SQL grammar []; nested exception is com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2566. Position: 8 At Line: 1, Line Position: 8
  2567. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:713) ~[spring-beans-5.3.39.jar:5.3.39]
  2568. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:693) ~[spring-beans-5.3.39.jar:5.3.39]
  2569. at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) ~[spring-beans-5.3.39.jar:5.3.39]
  2570. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:408) ~[spring-beans-5.3.39.jar:5.3.39]
  2571. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) ~[spring-beans-5.3.39.jar:5.3.39]
  2572. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) ~[spring-beans-5.3.39.jar:5.3.39]
  2573. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.39.jar:5.3.39]
  2574. at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:336) ~[spring-beans-5.3.39.jar:5.3.39]
  2575. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.39.jar:5.3.39]
  2576. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:334) ~[spring-beans-5.3.39.jar:5.3.39]
  2577. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:209) ~[spring-beans-5.3.39.jar:5.3.39]
  2578. at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955) ~[spring-beans-5.3.39.jar:5.3.39]
  2579. at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:932) ~[spring-context-5.3.39.jar:5.3.39]
  2580. at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:591) ~[spring-context-5.3.39.jar:5.3.39]
  2581. at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) ~[spring-boot-2.7.12.jar:2.7.12]
  2582. at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) ~[spring-boot-2.7.12.jar:2.7.12]
  2583. at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) ~[spring-boot-2.7.12.jar:2.7.12]
  2584. at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) ~[spring-boot-2.7.12.jar:2.7.12]
  2585. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) ~[spring-boot-2.7.12.jar:2.7.12]
  2586. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) ~[spring-boot-2.7.12.jar:2.7.12]
  2587. at com.zksy.ZksyApplication.main(ZksyApplication.java:19) ~[classes/:na]
  2588. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
  2589. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
  2590. at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
  2591. at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
  2592. at org.springframework.boot.devtools.restart.RestartLauncher.run(RestartLauncher.java:49) ~[spring-boot-devtools-2.7.12.jar:2.7.12]
  2593. Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'equipmentStatusServiceImpl': Unsatisfied dependency expressed through field 'sysUserService'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysUserServiceImpl': Unsatisfied dependency expressed through field 'configService'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysConfigServiceImpl': Invocation of init method failed; nested exception is org.springframework.jdbc.BadSqlGrammarException:
  2594. ### Error querying database. Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2595. Position: 8 At Line: 1, Line Position: 8
  2596. ### The error may exist in file [E:\workSpace\pipe-ner-server\pipe-network-service\zksy-system\target\classes\mapper\system\SysConfigMapper.xml]
  2597. ### The error may involve com.zksy.system.mapper.SysConfigMapper.selectConfigList-Inline
  2598. ### The error occurred while setting parameters
  2599. ### SQL: select config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark from sys_config
  2600. ### Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2601. Position: 8 At Line: 1, Line Position: 8
  2602. ; bad SQL grammar []; nested exception is com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2603. Position: 8 At Line: 1, Line Position: 8
  2604. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:713) ~[spring-beans-5.3.39.jar:5.3.39]
  2605. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:693) ~[spring-beans-5.3.39.jar:5.3.39]
  2606. at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) ~[spring-beans-5.3.39.jar:5.3.39]
  2607. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:408) ~[spring-beans-5.3.39.jar:5.3.39]
  2608. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) ~[spring-beans-5.3.39.jar:5.3.39]
  2609. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) ~[spring-beans-5.3.39.jar:5.3.39]
  2610. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.39.jar:5.3.39]
  2611. at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:336) ~[spring-beans-5.3.39.jar:5.3.39]
  2612. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.39.jar:5.3.39]
  2613. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:334) ~[spring-beans-5.3.39.jar:5.3.39]
  2614. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:209) ~[spring-beans-5.3.39.jar:5.3.39]
  2615. at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) ~[spring-beans-5.3.39.jar:5.3.39]
  2616. at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) ~[spring-beans-5.3.39.jar:5.3.39]
  2617. at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) ~[spring-beans-5.3.39.jar:5.3.39]
  2618. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:710) ~[spring-beans-5.3.39.jar:5.3.39]
  2619. ... 25 common frames omitted
  2620. Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysUserServiceImpl': Unsatisfied dependency expressed through field 'configService'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysConfigServiceImpl': Invocation of init method failed; nested exception is org.springframework.jdbc.BadSqlGrammarException:
  2621. ### Error querying database. Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2622. Position: 8 At Line: 1, Line Position: 8
  2623. ### The error may exist in file [E:\workSpace\pipe-ner-server\pipe-network-service\zksy-system\target\classes\mapper\system\SysConfigMapper.xml]
  2624. ### The error may involve com.zksy.system.mapper.SysConfigMapper.selectConfigList-Inline
  2625. ### The error occurred while setting parameters
  2626. ### SQL: select config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark from sys_config
  2627. ### Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2628. Position: 8 At Line: 1, Line Position: 8
  2629. ; bad SQL grammar []; nested exception is com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2630. Position: 8 At Line: 1, Line Position: 8
  2631. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:713) ~[spring-beans-5.3.39.jar:5.3.39]
  2632. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:693) ~[spring-beans-5.3.39.jar:5.3.39]
  2633. at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) ~[spring-beans-5.3.39.jar:5.3.39]
  2634. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:408) ~[spring-beans-5.3.39.jar:5.3.39]
  2635. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) ~[spring-beans-5.3.39.jar:5.3.39]
  2636. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) ~[spring-beans-5.3.39.jar:5.3.39]
  2637. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.39.jar:5.3.39]
  2638. at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:336) ~[spring-beans-5.3.39.jar:5.3.39]
  2639. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.39.jar:5.3.39]
  2640. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:334) ~[spring-beans-5.3.39.jar:5.3.39]
  2641. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:209) ~[spring-beans-5.3.39.jar:5.3.39]
  2642. at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) ~[spring-beans-5.3.39.jar:5.3.39]
  2643. at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) ~[spring-beans-5.3.39.jar:5.3.39]
  2644. at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) ~[spring-beans-5.3.39.jar:5.3.39]
  2645. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:710) ~[spring-beans-5.3.39.jar:5.3.39]
  2646. ... 39 common frames omitted
  2647. Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysConfigServiceImpl': Invocation of init method failed; nested exception is org.springframework.jdbc.BadSqlGrammarException:
  2648. ### Error querying database. Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2649. Position: 8 At Line: 1, Line Position: 8
  2650. ### The error may exist in file [E:\workSpace\pipe-ner-server\pipe-network-service\zksy-system\target\classes\mapper\system\SysConfigMapper.xml]
  2651. ### The error may involve com.zksy.system.mapper.SysConfigMapper.selectConfigList-Inline
  2652. ### The error occurred while setting parameters
  2653. ### SQL: select config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark from sys_config
  2654. ### Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2655. Position: 8 At Line: 1, Line Position: 8
  2656. ; bad SQL grammar []; nested exception is com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2657. Position: 8 At Line: 1, Line Position: 8
  2658. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:160) ~[spring-beans-5.3.39.jar:5.3.39]
  2659. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyBeanPostProcessorsBeforeInitialization(AbstractAutowireCapableBeanFactory.java:440) ~[spring-beans-5.3.39.jar:5.3.39]
  2660. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1796) ~[spring-beans-5.3.39.jar:5.3.39]
  2661. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:620) ~[spring-beans-5.3.39.jar:5.3.39]
  2662. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.39.jar:5.3.39]
  2663. at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:336) ~[spring-beans-5.3.39.jar:5.3.39]
  2664. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.39.jar:5.3.39]
  2665. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:334) ~[spring-beans-5.3.39.jar:5.3.39]
  2666. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:209) ~[spring-beans-5.3.39.jar:5.3.39]
  2667. at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) ~[spring-beans-5.3.39.jar:5.3.39]
  2668. at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) ~[spring-beans-5.3.39.jar:5.3.39]
  2669. at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) ~[spring-beans-5.3.39.jar:5.3.39]
  2670. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:710) ~[spring-beans-5.3.39.jar:5.3.39]
  2671. ... 53 common frames omitted
  2672. Caused by: org.springframework.jdbc.BadSqlGrammarException:
  2673. ### Error querying database. Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2674. Position: 8 At Line: 1, Line Position: 8
  2675. ### The error may exist in file [E:\workSpace\pipe-ner-server\pipe-network-service\zksy-system\target\classes\mapper\system\SysConfigMapper.xml]
  2676. ### The error may involve com.zksy.system.mapper.SysConfigMapper.selectConfigList-Inline
  2677. ### The error occurred while setting parameters
  2678. ### SQL: select config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark from sys_config
  2679. ### Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2680. Position: 8 At Line: 1, Line Position: 8
  2681. ; bad SQL grammar []; nested exception is com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2682. Position: 8 At Line: 1, Line Position: 8
  2683. at org.springframework.jdbc.support.SQLStateSQLExceptionTranslator.doTranslate(SQLStateSQLExceptionTranslator.java:101) ~[spring-jdbc-5.3.39.jar:5.3.39]
  2684. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73) ~[spring-jdbc-5.3.39.jar:5.3.39]
  2685. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:82) ~[spring-jdbc-5.3.39.jar:5.3.39]
  2686. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:82) ~[spring-jdbc-5.3.39.jar:5.3.39]
  2687. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:92) ~[mybatis-spring-2.1.2.jar:2.1.2]
  2688. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:439) ~[mybatis-spring-2.1.2.jar:2.1.2]
  2689. at com.sun.proxy.$Proxy150.selectList(Unknown Source) ~[na:na]
  2690. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) ~[mybatis-spring-2.1.2.jar:2.1.2]
  2691. at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:164) ~[mybatis-plus-core-3.5.7.jar:3.5.7]
  2692. at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) ~[mybatis-plus-core-3.5.7.jar:3.5.7]
  2693. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:152) ~[mybatis-plus-core-3.5.7.jar:3.5.7]
  2694. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) ~[mybatis-plus-core-3.5.7.jar:3.5.7]
  2695. at com.sun.proxy.$Proxy225.selectConfigList(Unknown Source) ~[na:na]
  2696. at com.zksy.system.service.impl.SysConfigServiceImpl.loadingConfigCache(SysConfigServiceImpl.java:177) ~[classes/:na]
  2697. at com.zksy.system.service.impl.SysConfigServiceImpl.init(SysConfigServiceImpl.java:40) ~[classes/:na]
  2698. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
  2699. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
  2700. at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
  2701. at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
  2702. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleElement.invoke(InitDestroyAnnotationBeanPostProcessor.java:389) ~[spring-beans-5.3.39.jar:5.3.39]
  2703. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMetadata.invokeInitMethods(InitDestroyAnnotationBeanPostProcessor.java:333) ~[spring-beans-5.3.39.jar:5.3.39]
  2704. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:157) ~[spring-beans-5.3.39.jar:5.3.39]
  2705. ... 65 common frames omitted
  2706. Caused by: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2707. Position: 8 At Line: 1, Line Position: 8
  2708. at com.kingbase8.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:3551) ~[kingbase8-8.6.0.jar:na]
  2709. at com.kingbase8.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2993) ~[kingbase8-8.6.0.jar:na]
  2710. at com.kingbase8.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:405) ~[kingbase8-8.6.0.jar:na]
  2711. at com.kingbase8.jdbc.KbStatement.executeInternal_(KbStatement.java:784) ~[kingbase8-8.6.0.jar:na]
  2712. at com.kingbase8.jdbc.KbStatement.execute(KbStatement.java:676) ~[kingbase8-8.6.0.jar:na]
  2713. at com.kingbase8.jdbc.KbPreparedStatement.executeWithFlags(KbPreparedStatement.java:286) ~[kingbase8-8.6.0.jar:na]
  2714. at com.kingbase8.jdbc.KbPreparedStatement.execute(KbPreparedStatement.java:265) ~[kingbase8-8.6.0.jar:na]
  2715. at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3462) ~[druid-1.2.23.jar:na]
  2716. at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) ~[druid-1.2.23.jar:na]
  2717. at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3460) ~[druid-1.2.23.jar:na]
  2718. at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:158) ~[druid-1.2.23.jar:na]
  2719. at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) ~[druid-1.2.23.jar:na]
  2720. at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:65) ~[mybatis-3.5.16.jar:3.5.16]
  2721. at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:80) ~[mybatis-3.5.16.jar:3.5.16]
  2722. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
  2723. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
  2724. at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
  2725. at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
  2726. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61) ~[mybatis-3.5.16.jar:3.5.16]
  2727. at com.sun.proxy.$Proxy227.query(Unknown Source) ~[na:na]
  2728. at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:65) ~[mybatis-3.5.16.jar:3.5.16]
  2729. at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:336) ~[mybatis-3.5.16.jar:3.5.16]
  2730. at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:158) ~[mybatis-3.5.16.jar:3.5.16]
  2731. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:110) ~[mybatis-3.5.16.jar:3.5.16]
  2732. at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) ~[mybatis-plus-extension-3.5.7.jar:3.5.7]
  2733. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:59) ~[mybatis-3.5.16.jar:3.5.16]
  2734. at com.sun.proxy.$Proxy226.query(Unknown Source) ~[na:na]
  2735. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:154) ~[mybatis-3.5.16.jar:3.5.16]
  2736. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:147) ~[mybatis-3.5.16.jar:3.5.16]
  2737. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:142) ~[mybatis-3.5.16.jar:3.5.16]
  2738. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
  2739. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
  2740. at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
  2741. at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
  2742. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:425) ~[mybatis-spring-2.1.2.jar:2.1.2]
  2743. ... 81 common frames omitted
  2744. 14:56:33:585 WARN 16648 --- [Thread-8] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  2745. 14:56:33:585 WARN 16648 --- [Thread-4] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  2746. 14:56:33:585 WARN 16648 --- [Thread-8] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  2747. 15:53:45:357 INFO 22864 --- [restartedMain] com.zksy.ZksyApplication : The following 1 profile is active: "dev"
  2748. 15:53:46:380 INFO 22864 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode!
  2749. 15:53:46:382 INFO 22864 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  2750. 15:53:46:465 INFO 22864 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 72 ms. Found 0 Redis repository interfaces.
  2751. 15:53:46:735 INFO 22864 --- [restartedMain] o.s.cloud.context.scope.GenericScope : BeanFactory id=3c481e74-3e90-36f2-b128-9d5c934cbba4
  2752. 15:53:47:542 INFO 22864 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8301 (http)
  2753. 15:53:47:553 INFO 22864 --- [restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  2754. 15:53:47:553 INFO 22864 --- [restartedMain] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.106]
  2755. 15:53:47:566 WARN 22864 --- [restartedMain] o.a.c.webresources.DirResourceSet : Disabled the global canonical file name cache to protect against CVE-2024-56337 when starting the WebResourceSet at [C:\Users\Administrator\AppData\Local\Temp\tomcat-docbase.8301.1756742728516081779] which is part of the web application []
  2756. 15:53:47:659 INFO 22864 --- [restartedMain] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  2757. 15:53:47:660 INFO 22864 --- [restartedMain] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 2295 ms
  2758. 15:53:48:055 DEBUG 22864 --- [restartedMain] c.z.f.s.f.JwtAuthenticationTokenFilter : Filter 'jwtAuthenticationTokenFilter' configured for use
  2759. 15:53:48:543 INFO 22864 --- [restartedMain] com.alibaba.druid.pool.DruidDataSource : {dataSource-1} inited
  2760. 15:53:49:124 WARN 22864 --- [restartedMain] c.b.m.core.injector.DefaultSqlInjector : class com.zksy.base.domain.AlarmAssignDetail ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method.
  2761. 15:53:49:134 WARN 22864 --- [restartedMain] c.b.m.core.injector.DefaultSqlInjector : class com.zksy.base.domain.AlarmAssignList ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method.
  2762. 15:53:50:805 WARN 22864 --- [restartedMain] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'equipmentStatusController': Unsatisfied dependency expressed through field 'service'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'equipmentStatusServiceImpl': Unsatisfied dependency expressed through field 'sysUserService'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysUserServiceImpl': Unsatisfied dependency expressed through field 'configService'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysConfigServiceImpl': Invocation of init method failed; nested exception is org.springframework.jdbc.BadSqlGrammarException:
  2763. ### Error querying database. Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2764. Position: 8 At Line: 1, Line Position: 8
  2765. ### The error may exist in file [E:\workSpace\pipe-ner-server\pipe-network-service\zksy-system\target\classes\mapper\system\SysConfigMapper.xml]
  2766. ### The error may involve com.zksy.system.mapper.SysConfigMapper.selectConfigList-Inline
  2767. ### The error occurred while setting parameters
  2768. ### SQL: select config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark from sys_config
  2769. ### Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2770. Position: 8 At Line: 1, Line Position: 8
  2771. ; bad SQL grammar []; nested exception is com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2772. Position: 8 At Line: 1, Line Position: 8
  2773. 15:53:50:806 INFO 22864 --- [restartedMain] com.alibaba.druid.pool.DruidDataSource : {dataSource-1} closing ...
  2774. 15:53:50:807 INFO 22864 --- [restartedMain] com.alibaba.druid.pool.DruidDataSource : {dataSource-1} closed
  2775. 15:53:50:825 INFO 22864 --- [restartedMain] o.apache.catalina.core.StandardService : Stopping service [Tomcat]
  2776. 15:53:50:837 INFO 22864 --- [restartedMain] ConditionEvaluationReportLoggingListener :
  2777. Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
  2778. 15:53:50:864 ERROR 22864 --- [restartedMain] o.s.boot.SpringApplication : Application run failed
  2779. org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'equipmentStatusController': Unsatisfied dependency expressed through field 'service'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'equipmentStatusServiceImpl': Unsatisfied dependency expressed through field 'sysUserService'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysUserServiceImpl': Unsatisfied dependency expressed through field 'configService'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysConfigServiceImpl': Invocation of init method failed; nested exception is org.springframework.jdbc.BadSqlGrammarException:
  2780. ### Error querying database. Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2781. Position: 8 At Line: 1, Line Position: 8
  2782. ### The error may exist in file [E:\workSpace\pipe-ner-server\pipe-network-service\zksy-system\target\classes\mapper\system\SysConfigMapper.xml]
  2783. ### The error may involve com.zksy.system.mapper.SysConfigMapper.selectConfigList-Inline
  2784. ### The error occurred while setting parameters
  2785. ### SQL: select config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark from sys_config
  2786. ### Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2787. Position: 8 At Line: 1, Line Position: 8
  2788. ; bad SQL grammar []; nested exception is com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2789. Position: 8 At Line: 1, Line Position: 8
  2790. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:713) ~[spring-beans-5.3.39.jar:5.3.39]
  2791. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:693) ~[spring-beans-5.3.39.jar:5.3.39]
  2792. at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) ~[spring-beans-5.3.39.jar:5.3.39]
  2793. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:408) ~[spring-beans-5.3.39.jar:5.3.39]
  2794. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) ~[spring-beans-5.3.39.jar:5.3.39]
  2795. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) ~[spring-beans-5.3.39.jar:5.3.39]
  2796. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.39.jar:5.3.39]
  2797. at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:336) ~[spring-beans-5.3.39.jar:5.3.39]
  2798. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.39.jar:5.3.39]
  2799. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:334) ~[spring-beans-5.3.39.jar:5.3.39]
  2800. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:209) ~[spring-beans-5.3.39.jar:5.3.39]
  2801. at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955) ~[spring-beans-5.3.39.jar:5.3.39]
  2802. at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:932) ~[spring-context-5.3.39.jar:5.3.39]
  2803. at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:591) ~[spring-context-5.3.39.jar:5.3.39]
  2804. at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) ~[spring-boot-2.7.12.jar:2.7.12]
  2805. at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) ~[spring-boot-2.7.12.jar:2.7.12]
  2806. at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) ~[spring-boot-2.7.12.jar:2.7.12]
  2807. at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) ~[spring-boot-2.7.12.jar:2.7.12]
  2808. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) ~[spring-boot-2.7.12.jar:2.7.12]
  2809. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) ~[spring-boot-2.7.12.jar:2.7.12]
  2810. at com.zksy.ZksyApplication.main(ZksyApplication.java:19) ~[classes/:na]
  2811. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
  2812. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
  2813. at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
  2814. at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
  2815. at org.springframework.boot.devtools.restart.RestartLauncher.run(RestartLauncher.java:49) ~[spring-boot-devtools-2.7.12.jar:2.7.12]
  2816. Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'equipmentStatusServiceImpl': Unsatisfied dependency expressed through field 'sysUserService'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysUserServiceImpl': Unsatisfied dependency expressed through field 'configService'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysConfigServiceImpl': Invocation of init method failed; nested exception is org.springframework.jdbc.BadSqlGrammarException:
  2817. ### Error querying database. Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2818. Position: 8 At Line: 1, Line Position: 8
  2819. ### The error may exist in file [E:\workSpace\pipe-ner-server\pipe-network-service\zksy-system\target\classes\mapper\system\SysConfigMapper.xml]
  2820. ### The error may involve com.zksy.system.mapper.SysConfigMapper.selectConfigList-Inline
  2821. ### The error occurred while setting parameters
  2822. ### SQL: select config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark from sys_config
  2823. ### Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2824. Position: 8 At Line: 1, Line Position: 8
  2825. ; bad SQL grammar []; nested exception is com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2826. Position: 8 At Line: 1, Line Position: 8
  2827. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:713) ~[spring-beans-5.3.39.jar:5.3.39]
  2828. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:693) ~[spring-beans-5.3.39.jar:5.3.39]
  2829. at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) ~[spring-beans-5.3.39.jar:5.3.39]
  2830. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:408) ~[spring-beans-5.3.39.jar:5.3.39]
  2831. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) ~[spring-beans-5.3.39.jar:5.3.39]
  2832. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) ~[spring-beans-5.3.39.jar:5.3.39]
  2833. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.39.jar:5.3.39]
  2834. at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:336) ~[spring-beans-5.3.39.jar:5.3.39]
  2835. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.39.jar:5.3.39]
  2836. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:334) ~[spring-beans-5.3.39.jar:5.3.39]
  2837. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:209) ~[spring-beans-5.3.39.jar:5.3.39]
  2838. at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) ~[spring-beans-5.3.39.jar:5.3.39]
  2839. at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) ~[spring-beans-5.3.39.jar:5.3.39]
  2840. at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) ~[spring-beans-5.3.39.jar:5.3.39]
  2841. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:710) ~[spring-beans-5.3.39.jar:5.3.39]
  2842. ... 25 common frames omitted
  2843. Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysUserServiceImpl': Unsatisfied dependency expressed through field 'configService'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysConfigServiceImpl': Invocation of init method failed; nested exception is org.springframework.jdbc.BadSqlGrammarException:
  2844. ### Error querying database. Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2845. Position: 8 At Line: 1, Line Position: 8
  2846. ### The error may exist in file [E:\workSpace\pipe-ner-server\pipe-network-service\zksy-system\target\classes\mapper\system\SysConfigMapper.xml]
  2847. ### The error may involve com.zksy.system.mapper.SysConfigMapper.selectConfigList-Inline
  2848. ### The error occurred while setting parameters
  2849. ### SQL: select config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark from sys_config
  2850. ### Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2851. Position: 8 At Line: 1, Line Position: 8
  2852. ; bad SQL grammar []; nested exception is com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2853. Position: 8 At Line: 1, Line Position: 8
  2854. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:713) ~[spring-beans-5.3.39.jar:5.3.39]
  2855. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:693) ~[spring-beans-5.3.39.jar:5.3.39]
  2856. at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) ~[spring-beans-5.3.39.jar:5.3.39]
  2857. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:408) ~[spring-beans-5.3.39.jar:5.3.39]
  2858. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) ~[spring-beans-5.3.39.jar:5.3.39]
  2859. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) ~[spring-beans-5.3.39.jar:5.3.39]
  2860. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.39.jar:5.3.39]
  2861. at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:336) ~[spring-beans-5.3.39.jar:5.3.39]
  2862. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.39.jar:5.3.39]
  2863. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:334) ~[spring-beans-5.3.39.jar:5.3.39]
  2864. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:209) ~[spring-beans-5.3.39.jar:5.3.39]
  2865. at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) ~[spring-beans-5.3.39.jar:5.3.39]
  2866. at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) ~[spring-beans-5.3.39.jar:5.3.39]
  2867. at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) ~[spring-beans-5.3.39.jar:5.3.39]
  2868. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:710) ~[spring-beans-5.3.39.jar:5.3.39]
  2869. ... 39 common frames omitted
  2870. Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysConfigServiceImpl': Invocation of init method failed; nested exception is org.springframework.jdbc.BadSqlGrammarException:
  2871. ### Error querying database. Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2872. Position: 8 At Line: 1, Line Position: 8
  2873. ### The error may exist in file [E:\workSpace\pipe-ner-server\pipe-network-service\zksy-system\target\classes\mapper\system\SysConfigMapper.xml]
  2874. ### The error may involve com.zksy.system.mapper.SysConfigMapper.selectConfigList-Inline
  2875. ### The error occurred while setting parameters
  2876. ### SQL: select config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark from sys_config
  2877. ### Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2878. Position: 8 At Line: 1, Line Position: 8
  2879. ; bad SQL grammar []; nested exception is com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2880. Position: 8 At Line: 1, Line Position: 8
  2881. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:160) ~[spring-beans-5.3.39.jar:5.3.39]
  2882. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyBeanPostProcessorsBeforeInitialization(AbstractAutowireCapableBeanFactory.java:440) ~[spring-beans-5.3.39.jar:5.3.39]
  2883. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1796) ~[spring-beans-5.3.39.jar:5.3.39]
  2884. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:620) ~[spring-beans-5.3.39.jar:5.3.39]
  2885. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.39.jar:5.3.39]
  2886. at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:336) ~[spring-beans-5.3.39.jar:5.3.39]
  2887. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.39.jar:5.3.39]
  2888. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:334) ~[spring-beans-5.3.39.jar:5.3.39]
  2889. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:209) ~[spring-beans-5.3.39.jar:5.3.39]
  2890. at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) ~[spring-beans-5.3.39.jar:5.3.39]
  2891. at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) ~[spring-beans-5.3.39.jar:5.3.39]
  2892. at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) ~[spring-beans-5.3.39.jar:5.3.39]
  2893. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:710) ~[spring-beans-5.3.39.jar:5.3.39]
  2894. ... 53 common frames omitted
  2895. Caused by: org.springframework.jdbc.BadSqlGrammarException:
  2896. ### Error querying database. Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2897. Position: 8 At Line: 1, Line Position: 8
  2898. ### The error may exist in file [E:\workSpace\pipe-ner-server\pipe-network-service\zksy-system\target\classes\mapper\system\SysConfigMapper.xml]
  2899. ### The error may involve com.zksy.system.mapper.SysConfigMapper.selectConfigList-Inline
  2900. ### The error occurred while setting parameters
  2901. ### SQL: select config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark from sys_config
  2902. ### Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2903. Position: 8 At Line: 1, Line Position: 8
  2904. ; bad SQL grammar []; nested exception is com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2905. Position: 8 At Line: 1, Line Position: 8
  2906. at org.springframework.jdbc.support.SQLStateSQLExceptionTranslator.doTranslate(SQLStateSQLExceptionTranslator.java:101) ~[spring-jdbc-5.3.39.jar:5.3.39]
  2907. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73) ~[spring-jdbc-5.3.39.jar:5.3.39]
  2908. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:82) ~[spring-jdbc-5.3.39.jar:5.3.39]
  2909. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:82) ~[spring-jdbc-5.3.39.jar:5.3.39]
  2910. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:92) ~[mybatis-spring-2.1.2.jar:2.1.2]
  2911. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:439) ~[mybatis-spring-2.1.2.jar:2.1.2]
  2912. at com.sun.proxy.$Proxy150.selectList(Unknown Source) ~[na:na]
  2913. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) ~[mybatis-spring-2.1.2.jar:2.1.2]
  2914. at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:164) ~[mybatis-plus-core-3.5.7.jar:3.5.7]
  2915. at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) ~[mybatis-plus-core-3.5.7.jar:3.5.7]
  2916. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:152) ~[mybatis-plus-core-3.5.7.jar:3.5.7]
  2917. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) ~[mybatis-plus-core-3.5.7.jar:3.5.7]
  2918. at com.sun.proxy.$Proxy225.selectConfigList(Unknown Source) ~[na:na]
  2919. at com.zksy.system.service.impl.SysConfigServiceImpl.loadingConfigCache(SysConfigServiceImpl.java:177) ~[classes/:na]
  2920. at com.zksy.system.service.impl.SysConfigServiceImpl.init(SysConfigServiceImpl.java:40) ~[classes/:na]
  2921. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
  2922. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
  2923. at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
  2924. at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
  2925. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleElement.invoke(InitDestroyAnnotationBeanPostProcessor.java:389) ~[spring-beans-5.3.39.jar:5.3.39]
  2926. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMetadata.invokeInitMethods(InitDestroyAnnotationBeanPostProcessor.java:333) ~[spring-beans-5.3.39.jar:5.3.39]
  2927. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:157) ~[spring-beans-5.3.39.jar:5.3.39]
  2928. ... 65 common frames omitted
  2929. Caused by: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2930. Position: 8 At Line: 1, Line Position: 8
  2931. at com.kingbase8.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:3551) ~[kingbase8-8.6.0.jar:na]
  2932. at com.kingbase8.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2993) ~[kingbase8-8.6.0.jar:na]
  2933. at com.kingbase8.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:405) ~[kingbase8-8.6.0.jar:na]
  2934. at com.kingbase8.jdbc.KbStatement.executeInternal_(KbStatement.java:784) ~[kingbase8-8.6.0.jar:na]
  2935. at com.kingbase8.jdbc.KbStatement.execute(KbStatement.java:676) ~[kingbase8-8.6.0.jar:na]
  2936. at com.kingbase8.jdbc.KbPreparedStatement.executeWithFlags(KbPreparedStatement.java:286) ~[kingbase8-8.6.0.jar:na]
  2937. at com.kingbase8.jdbc.KbPreparedStatement.execute(KbPreparedStatement.java:265) ~[kingbase8-8.6.0.jar:na]
  2938. at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3462) ~[druid-1.2.23.jar:na]
  2939. at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) ~[druid-1.2.23.jar:na]
  2940. at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3460) ~[druid-1.2.23.jar:na]
  2941. at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:158) ~[druid-1.2.23.jar:na]
  2942. at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) ~[druid-1.2.23.jar:na]
  2943. at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:65) ~[mybatis-3.5.16.jar:3.5.16]
  2944. at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:80) ~[mybatis-3.5.16.jar:3.5.16]
  2945. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
  2946. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
  2947. at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
  2948. at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
  2949. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61) ~[mybatis-3.5.16.jar:3.5.16]
  2950. at com.sun.proxy.$Proxy227.query(Unknown Source) ~[na:na]
  2951. at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:65) ~[mybatis-3.5.16.jar:3.5.16]
  2952. at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:336) ~[mybatis-3.5.16.jar:3.5.16]
  2953. at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:158) ~[mybatis-3.5.16.jar:3.5.16]
  2954. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:110) ~[mybatis-3.5.16.jar:3.5.16]
  2955. at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) ~[mybatis-plus-extension-3.5.7.jar:3.5.7]
  2956. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:59) ~[mybatis-3.5.16.jar:3.5.16]
  2957. at com.sun.proxy.$Proxy226.query(Unknown Source) ~[na:na]
  2958. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:154) ~[mybatis-3.5.16.jar:3.5.16]
  2959. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:147) ~[mybatis-3.5.16.jar:3.5.16]
  2960. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:142) ~[mybatis-3.5.16.jar:3.5.16]
  2961. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
  2962. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
  2963. at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
  2964. at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
  2965. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:425) ~[mybatis-spring-2.1.2.jar:2.1.2]
  2966. ... 81 common frames omitted
  2967. 15:53:51:821 WARN 22864 --- [Thread-4] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  2968. 15:53:51:822 WARN 22864 --- [Thread-8] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  2969. 15:53:51:822 WARN 22864 --- [Thread-8] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  2970. 15:58:17:480 INFO 26976 --- [restartedMain] com.zksy.ZksyApplication : The following 1 profile is active: "dev"
  2971. 15:58:18:529 INFO 26976 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode!
  2972. 15:58:18:531 INFO 26976 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  2973. 15:58:18:622 INFO 26976 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 80 ms. Found 0 Redis repository interfaces.
  2974. 15:58:18:915 INFO 26976 --- [restartedMain] o.s.cloud.context.scope.GenericScope : BeanFactory id=3c481e74-3e90-36f2-b128-9d5c934cbba4
  2975. 15:58:19:706 INFO 26976 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8301 (http)
  2976. 15:58:19:718 INFO 26976 --- [restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  2977. 15:58:19:718 INFO 26976 --- [restartedMain] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.106]
  2978. 15:58:19:732 WARN 26976 --- [restartedMain] o.a.c.webresources.DirResourceSet : Disabled the global canonical file name cache to protect against CVE-2024-56337 when starting the WebResourceSet at [C:\Users\Administrator\AppData\Local\Temp\tomcat-docbase.8301.18441100483442394731] which is part of the web application []
  2979. 15:58:19:830 INFO 26976 --- [restartedMain] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  2980. 15:58:19:830 INFO 26976 --- [restartedMain] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 2341 ms
  2981. 15:58:20:233 DEBUG 26976 --- [restartedMain] c.z.f.s.f.JwtAuthenticationTokenFilter : Filter 'jwtAuthenticationTokenFilter' configured for use
  2982. 15:58:20:719 INFO 26976 --- [restartedMain] com.alibaba.druid.pool.DruidDataSource : {dataSource-1} inited
  2983. 15:58:21:264 WARN 26976 --- [restartedMain] c.b.m.core.injector.DefaultSqlInjector : class com.zksy.base.domain.AlarmAssignDetail ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method.
  2984. 15:58:21:274 WARN 26976 --- [restartedMain] c.b.m.core.injector.DefaultSqlInjector : class com.zksy.base.domain.AlarmAssignList ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method.
  2985. 15:58:23:006 WARN 26976 --- [restartedMain] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'equipmentStatusController': Unsatisfied dependency expressed through field 'service'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'equipmentStatusServiceImpl': Unsatisfied dependency expressed through field 'sysUserService'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysUserServiceImpl': Unsatisfied dependency expressed through field 'configService'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysConfigServiceImpl': Invocation of init method failed; nested exception is org.springframework.jdbc.BadSqlGrammarException:
  2986. ### Error querying database. Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2987. Position: 8 At Line: 1, Line Position: 8
  2988. ### The error may exist in file [E:\workSpace\pipe-ner-server\pipe-network-service\zksy-system\target\classes\mapper\system\SysConfigMapper.xml]
  2989. ### The error may involve com.zksy.system.mapper.SysConfigMapper.selectConfigList-Inline
  2990. ### The error occurred while setting parameters
  2991. ### SQL: select config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark from sys_config
  2992. ### Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2993. Position: 8 At Line: 1, Line Position: 8
  2994. ; bad SQL grammar []; nested exception is com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  2995. Position: 8 At Line: 1, Line Position: 8
  2996. 15:58:23:008 INFO 26976 --- [restartedMain] com.alibaba.druid.pool.DruidDataSource : {dataSource-1} closing ...
  2997. 15:58:23:009 INFO 26976 --- [restartedMain] com.alibaba.druid.pool.DruidDataSource : {dataSource-1} closed
  2998. 15:58:23:027 INFO 26976 --- [restartedMain] o.apache.catalina.core.StandardService : Stopping service [Tomcat]
  2999. 15:58:23:039 INFO 26976 --- [restartedMain] ConditionEvaluationReportLoggingListener :
  3000. Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
  3001. 15:58:23:069 ERROR 26976 --- [restartedMain] o.s.boot.SpringApplication : Application run failed
  3002. org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'equipmentStatusController': Unsatisfied dependency expressed through field 'service'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'equipmentStatusServiceImpl': Unsatisfied dependency expressed through field 'sysUserService'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysUserServiceImpl': Unsatisfied dependency expressed through field 'configService'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysConfigServiceImpl': Invocation of init method failed; nested exception is org.springframework.jdbc.BadSqlGrammarException:
  3003. ### Error querying database. Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  3004. Position: 8 At Line: 1, Line Position: 8
  3005. ### The error may exist in file [E:\workSpace\pipe-ner-server\pipe-network-service\zksy-system\target\classes\mapper\system\SysConfigMapper.xml]
  3006. ### The error may involve com.zksy.system.mapper.SysConfigMapper.selectConfigList-Inline
  3007. ### The error occurred while setting parameters
  3008. ### SQL: select config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark from sys_config
  3009. ### Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  3010. Position: 8 At Line: 1, Line Position: 8
  3011. ; bad SQL grammar []; nested exception is com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  3012. Position: 8 At Line: 1, Line Position: 8
  3013. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:713) ~[spring-beans-5.3.39.jar:5.3.39]
  3014. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:693) ~[spring-beans-5.3.39.jar:5.3.39]
  3015. at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) ~[spring-beans-5.3.39.jar:5.3.39]
  3016. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:408) ~[spring-beans-5.3.39.jar:5.3.39]
  3017. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) ~[spring-beans-5.3.39.jar:5.3.39]
  3018. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) ~[spring-beans-5.3.39.jar:5.3.39]
  3019. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.39.jar:5.3.39]
  3020. at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:336) ~[spring-beans-5.3.39.jar:5.3.39]
  3021. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.39.jar:5.3.39]
  3022. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:334) ~[spring-beans-5.3.39.jar:5.3.39]
  3023. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:209) ~[spring-beans-5.3.39.jar:5.3.39]
  3024. at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955) ~[spring-beans-5.3.39.jar:5.3.39]
  3025. at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:932) ~[spring-context-5.3.39.jar:5.3.39]
  3026. at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:591) ~[spring-context-5.3.39.jar:5.3.39]
  3027. at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) ~[spring-boot-2.7.12.jar:2.7.12]
  3028. at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) ~[spring-boot-2.7.12.jar:2.7.12]
  3029. at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) ~[spring-boot-2.7.12.jar:2.7.12]
  3030. at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) ~[spring-boot-2.7.12.jar:2.7.12]
  3031. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) ~[spring-boot-2.7.12.jar:2.7.12]
  3032. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) ~[spring-boot-2.7.12.jar:2.7.12]
  3033. at com.zksy.ZksyApplication.main(ZksyApplication.java:19) ~[classes/:na]
  3034. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
  3035. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
  3036. at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
  3037. at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
  3038. at org.springframework.boot.devtools.restart.RestartLauncher.run(RestartLauncher.java:49) ~[spring-boot-devtools-2.7.12.jar:2.7.12]
  3039. Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'equipmentStatusServiceImpl': Unsatisfied dependency expressed through field 'sysUserService'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysUserServiceImpl': Unsatisfied dependency expressed through field 'configService'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysConfigServiceImpl': Invocation of init method failed; nested exception is org.springframework.jdbc.BadSqlGrammarException:
  3040. ### Error querying database. Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  3041. Position: 8 At Line: 1, Line Position: 8
  3042. ### The error may exist in file [E:\workSpace\pipe-ner-server\pipe-network-service\zksy-system\target\classes\mapper\system\SysConfigMapper.xml]
  3043. ### The error may involve com.zksy.system.mapper.SysConfigMapper.selectConfigList-Inline
  3044. ### The error occurred while setting parameters
  3045. ### SQL: select config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark from sys_config
  3046. ### Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  3047. Position: 8 At Line: 1, Line Position: 8
  3048. ; bad SQL grammar []; nested exception is com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  3049. Position: 8 At Line: 1, Line Position: 8
  3050. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:713) ~[spring-beans-5.3.39.jar:5.3.39]
  3051. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:693) ~[spring-beans-5.3.39.jar:5.3.39]
  3052. at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) ~[spring-beans-5.3.39.jar:5.3.39]
  3053. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:408) ~[spring-beans-5.3.39.jar:5.3.39]
  3054. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) ~[spring-beans-5.3.39.jar:5.3.39]
  3055. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) ~[spring-beans-5.3.39.jar:5.3.39]
  3056. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.39.jar:5.3.39]
  3057. at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:336) ~[spring-beans-5.3.39.jar:5.3.39]
  3058. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.39.jar:5.3.39]
  3059. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:334) ~[spring-beans-5.3.39.jar:5.3.39]
  3060. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:209) ~[spring-beans-5.3.39.jar:5.3.39]
  3061. at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) ~[spring-beans-5.3.39.jar:5.3.39]
  3062. at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) ~[spring-beans-5.3.39.jar:5.3.39]
  3063. at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) ~[spring-beans-5.3.39.jar:5.3.39]
  3064. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:710) ~[spring-beans-5.3.39.jar:5.3.39]
  3065. ... 25 common frames omitted
  3066. Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysUserServiceImpl': Unsatisfied dependency expressed through field 'configService'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysConfigServiceImpl': Invocation of init method failed; nested exception is org.springframework.jdbc.BadSqlGrammarException:
  3067. ### Error querying database. Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  3068. Position: 8 At Line: 1, Line Position: 8
  3069. ### The error may exist in file [E:\workSpace\pipe-ner-server\pipe-network-service\zksy-system\target\classes\mapper\system\SysConfigMapper.xml]
  3070. ### The error may involve com.zksy.system.mapper.SysConfigMapper.selectConfigList-Inline
  3071. ### The error occurred while setting parameters
  3072. ### SQL: select config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark from sys_config
  3073. ### Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  3074. Position: 8 At Line: 1, Line Position: 8
  3075. ; bad SQL grammar []; nested exception is com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  3076. Position: 8 At Line: 1, Line Position: 8
  3077. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:713) ~[spring-beans-5.3.39.jar:5.3.39]
  3078. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:693) ~[spring-beans-5.3.39.jar:5.3.39]
  3079. at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) ~[spring-beans-5.3.39.jar:5.3.39]
  3080. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:408) ~[spring-beans-5.3.39.jar:5.3.39]
  3081. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) ~[spring-beans-5.3.39.jar:5.3.39]
  3082. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) ~[spring-beans-5.3.39.jar:5.3.39]
  3083. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.39.jar:5.3.39]
  3084. at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:336) ~[spring-beans-5.3.39.jar:5.3.39]
  3085. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.39.jar:5.3.39]
  3086. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:334) ~[spring-beans-5.3.39.jar:5.3.39]
  3087. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:209) ~[spring-beans-5.3.39.jar:5.3.39]
  3088. at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) ~[spring-beans-5.3.39.jar:5.3.39]
  3089. at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) ~[spring-beans-5.3.39.jar:5.3.39]
  3090. at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) ~[spring-beans-5.3.39.jar:5.3.39]
  3091. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:710) ~[spring-beans-5.3.39.jar:5.3.39]
  3092. ... 39 common frames omitted
  3093. Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysConfigServiceImpl': Invocation of init method failed; nested exception is org.springframework.jdbc.BadSqlGrammarException:
  3094. ### Error querying database. Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  3095. Position: 8 At Line: 1, Line Position: 8
  3096. ### The error may exist in file [E:\workSpace\pipe-ner-server\pipe-network-service\zksy-system\target\classes\mapper\system\SysConfigMapper.xml]
  3097. ### The error may involve com.zksy.system.mapper.SysConfigMapper.selectConfigList-Inline
  3098. ### The error occurred while setting parameters
  3099. ### SQL: select config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark from sys_config
  3100. ### Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  3101. Position: 8 At Line: 1, Line Position: 8
  3102. ; bad SQL grammar []; nested exception is com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  3103. Position: 8 At Line: 1, Line Position: 8
  3104. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:160) ~[spring-beans-5.3.39.jar:5.3.39]
  3105. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyBeanPostProcessorsBeforeInitialization(AbstractAutowireCapableBeanFactory.java:440) ~[spring-beans-5.3.39.jar:5.3.39]
  3106. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1796) ~[spring-beans-5.3.39.jar:5.3.39]
  3107. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:620) ~[spring-beans-5.3.39.jar:5.3.39]
  3108. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.39.jar:5.3.39]
  3109. at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:336) ~[spring-beans-5.3.39.jar:5.3.39]
  3110. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.39.jar:5.3.39]
  3111. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:334) ~[spring-beans-5.3.39.jar:5.3.39]
  3112. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:209) ~[spring-beans-5.3.39.jar:5.3.39]
  3113. at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) ~[spring-beans-5.3.39.jar:5.3.39]
  3114. at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) ~[spring-beans-5.3.39.jar:5.3.39]
  3115. at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) ~[spring-beans-5.3.39.jar:5.3.39]
  3116. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:710) ~[spring-beans-5.3.39.jar:5.3.39]
  3117. ... 53 common frames omitted
  3118. Caused by: org.springframework.jdbc.BadSqlGrammarException:
  3119. ### Error querying database. Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  3120. Position: 8 At Line: 1, Line Position: 8
  3121. ### The error may exist in file [E:\workSpace\pipe-ner-server\pipe-network-service\zksy-system\target\classes\mapper\system\SysConfigMapper.xml]
  3122. ### The error may involve com.zksy.system.mapper.SysConfigMapper.selectConfigList-Inline
  3123. ### The error occurred while setting parameters
  3124. ### SQL: select config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark from sys_config
  3125. ### Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  3126. Position: 8 At Line: 1, Line Position: 8
  3127. ; bad SQL grammar []; nested exception is com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  3128. Position: 8 At Line: 1, Line Position: 8
  3129. at org.springframework.jdbc.support.SQLStateSQLExceptionTranslator.doTranslate(SQLStateSQLExceptionTranslator.java:101) ~[spring-jdbc-5.3.39.jar:5.3.39]
  3130. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73) ~[spring-jdbc-5.3.39.jar:5.3.39]
  3131. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:82) ~[spring-jdbc-5.3.39.jar:5.3.39]
  3132. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:82) ~[spring-jdbc-5.3.39.jar:5.3.39]
  3133. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:92) ~[mybatis-spring-2.1.2.jar:2.1.2]
  3134. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:439) ~[mybatis-spring-2.1.2.jar:2.1.2]
  3135. at com.sun.proxy.$Proxy150.selectList(Unknown Source) ~[na:na]
  3136. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) ~[mybatis-spring-2.1.2.jar:2.1.2]
  3137. at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:164) ~[mybatis-plus-core-3.5.7.jar:3.5.7]
  3138. at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) ~[mybatis-plus-core-3.5.7.jar:3.5.7]
  3139. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:152) ~[mybatis-plus-core-3.5.7.jar:3.5.7]
  3140. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) ~[mybatis-plus-core-3.5.7.jar:3.5.7]
  3141. at com.sun.proxy.$Proxy225.selectConfigList(Unknown Source) ~[na:na]
  3142. at com.zksy.system.service.impl.SysConfigServiceImpl.loadingConfigCache(SysConfigServiceImpl.java:177) ~[classes/:na]
  3143. at com.zksy.system.service.impl.SysConfigServiceImpl.init(SysConfigServiceImpl.java:40) ~[classes/:na]
  3144. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
  3145. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
  3146. at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
  3147. at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
  3148. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleElement.invoke(InitDestroyAnnotationBeanPostProcessor.java:389) ~[spring-beans-5.3.39.jar:5.3.39]
  3149. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMetadata.invokeInitMethods(InitDestroyAnnotationBeanPostProcessor.java:333) ~[spring-beans-5.3.39.jar:5.3.39]
  3150. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:157) ~[spring-beans-5.3.39.jar:5.3.39]
  3151. ... 65 common frames omitted
  3152. Caused by: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  3153. Position: 8 At Line: 1, Line Position: 8
  3154. at com.kingbase8.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:3551) ~[kingbase8-8.6.0.jar:na]
  3155. at com.kingbase8.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2993) ~[kingbase8-8.6.0.jar:na]
  3156. at com.kingbase8.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:405) ~[kingbase8-8.6.0.jar:na]
  3157. at com.kingbase8.jdbc.KbStatement.executeInternal_(KbStatement.java:784) ~[kingbase8-8.6.0.jar:na]
  3158. at com.kingbase8.jdbc.KbStatement.execute(KbStatement.java:676) ~[kingbase8-8.6.0.jar:na]
  3159. at com.kingbase8.jdbc.KbPreparedStatement.executeWithFlags(KbPreparedStatement.java:286) ~[kingbase8-8.6.0.jar:na]
  3160. at com.kingbase8.jdbc.KbPreparedStatement.execute(KbPreparedStatement.java:265) ~[kingbase8-8.6.0.jar:na]
  3161. at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3462) ~[druid-1.2.23.jar:na]
  3162. at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) ~[druid-1.2.23.jar:na]
  3163. at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3460) ~[druid-1.2.23.jar:na]
  3164. at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:158) ~[druid-1.2.23.jar:na]
  3165. at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) ~[druid-1.2.23.jar:na]
  3166. at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:65) ~[mybatis-3.5.16.jar:3.5.16]
  3167. at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:80) ~[mybatis-3.5.16.jar:3.5.16]
  3168. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
  3169. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
  3170. at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
  3171. at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
  3172. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61) ~[mybatis-3.5.16.jar:3.5.16]
  3173. at com.sun.proxy.$Proxy227.query(Unknown Source) ~[na:na]
  3174. at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:65) ~[mybatis-3.5.16.jar:3.5.16]
  3175. at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:336) ~[mybatis-3.5.16.jar:3.5.16]
  3176. at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:158) ~[mybatis-3.5.16.jar:3.5.16]
  3177. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:110) ~[mybatis-3.5.16.jar:3.5.16]
  3178. at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) ~[mybatis-plus-extension-3.5.7.jar:3.5.7]
  3179. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:59) ~[mybatis-3.5.16.jar:3.5.16]
  3180. at com.sun.proxy.$Proxy226.query(Unknown Source) ~[na:na]
  3181. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:154) ~[mybatis-3.5.16.jar:3.5.16]
  3182. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:147) ~[mybatis-3.5.16.jar:3.5.16]
  3183. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:142) ~[mybatis-3.5.16.jar:3.5.16]
  3184. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
  3185. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
  3186. at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
  3187. at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
  3188. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:425) ~[mybatis-spring-2.1.2.jar:2.1.2]
  3189. ... 81 common frames omitted
  3190. 15:58:24:024 WARN 26976 --- [Thread-4] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  3191. 15:58:24:024 WARN 26976 --- [Thread-8] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  3192. 16:00:47:439 INFO 29788 --- [restartedMain] com.zksy.ZksyApplication : The following 1 profile is active: "dev"
  3193. 16:00:48:468 INFO 29788 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode!
  3194. 16:00:48:470 INFO 29788 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  3195. 16:00:48:563 INFO 29788 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 81 ms. Found 0 Redis repository interfaces.
  3196. 16:00:48:838 INFO 29788 --- [restartedMain] o.s.cloud.context.scope.GenericScope : BeanFactory id=3c481e74-3e90-36f2-b128-9d5c934cbba4
  3197. 16:00:49:645 INFO 29788 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8301 (http)
  3198. 16:00:49:654 INFO 29788 --- [restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  3199. 16:00:49:655 INFO 29788 --- [restartedMain] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.106]
  3200. 16:00:49:668 WARN 29788 --- [restartedMain] o.a.c.webresources.DirResourceSet : Disabled the global canonical file name cache to protect against CVE-2024-56337 when starting the WebResourceSet at [C:\Users\Administrator\AppData\Local\Temp\tomcat-docbase.8301.6109598741404504254] which is part of the web application []
  3201. 16:00:49:764 INFO 29788 --- [restartedMain] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  3202. 16:00:49:764 INFO 29788 --- [restartedMain] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 2317 ms
  3203. 16:00:50:149 DEBUG 29788 --- [restartedMain] c.z.f.s.f.JwtAuthenticationTokenFilter : Filter 'jwtAuthenticationTokenFilter' configured for use
  3204. 16:00:50:645 INFO 29788 --- [restartedMain] com.alibaba.druid.pool.DruidDataSource : {dataSource-1} inited
  3205. 16:00:51:213 WARN 29788 --- [restartedMain] c.b.m.core.injector.DefaultSqlInjector : class com.zksy.base.domain.AlarmAssignDetail ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method.
  3206. 16:00:51:224 WARN 29788 --- [restartedMain] c.b.m.core.injector.DefaultSqlInjector : class com.zksy.base.domain.AlarmAssignList ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method.
  3207. 16:00:52:913 WARN 29788 --- [restartedMain] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'equipmentStatusController': Unsatisfied dependency expressed through field 'service'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'equipmentStatusServiceImpl': Unsatisfied dependency expressed through field 'sysUserService'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysUserServiceImpl': Unsatisfied dependency expressed through field 'configService'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysConfigServiceImpl': Invocation of init method failed; nested exception is org.springframework.jdbc.BadSqlGrammarException:
  3208. ### Error querying database. Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  3209. Position: 8 At Line: 1, Line Position: 8
  3210. ### The error may exist in file [E:\workSpace\pipe-ner-server\pipe-network-service\zksy-system\target\classes\mapper\system\SysConfigMapper.xml]
  3211. ### The error may involve com.zksy.system.mapper.SysConfigMapper.selectConfigList-Inline
  3212. ### The error occurred while setting parameters
  3213. ### SQL: select config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark from sys_config
  3214. ### Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  3215. Position: 8 At Line: 1, Line Position: 8
  3216. ; bad SQL grammar []; nested exception is com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  3217. Position: 8 At Line: 1, Line Position: 8
  3218. 16:00:52:915 INFO 29788 --- [restartedMain] com.alibaba.druid.pool.DruidDataSource : {dataSource-1} closing ...
  3219. 16:00:52:916 INFO 29788 --- [restartedMain] com.alibaba.druid.pool.DruidDataSource : {dataSource-1} closed
  3220. 16:00:52:932 INFO 29788 --- [restartedMain] o.apache.catalina.core.StandardService : Stopping service [Tomcat]
  3221. 16:00:52:944 INFO 29788 --- [restartedMain] ConditionEvaluationReportLoggingListener :
  3222. Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
  3223. 16:00:52:974 ERROR 29788 --- [restartedMain] o.s.boot.SpringApplication : Application run failed
  3224. org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'equipmentStatusController': Unsatisfied dependency expressed through field 'service'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'equipmentStatusServiceImpl': Unsatisfied dependency expressed through field 'sysUserService'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysUserServiceImpl': Unsatisfied dependency expressed through field 'configService'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysConfigServiceImpl': Invocation of init method failed; nested exception is org.springframework.jdbc.BadSqlGrammarException:
  3225. ### Error querying database. Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  3226. Position: 8 At Line: 1, Line Position: 8
  3227. ### The error may exist in file [E:\workSpace\pipe-ner-server\pipe-network-service\zksy-system\target\classes\mapper\system\SysConfigMapper.xml]
  3228. ### The error may involve com.zksy.system.mapper.SysConfigMapper.selectConfigList-Inline
  3229. ### The error occurred while setting parameters
  3230. ### SQL: select config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark from sys_config
  3231. ### Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  3232. Position: 8 At Line: 1, Line Position: 8
  3233. ; bad SQL grammar []; nested exception is com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  3234. Position: 8 At Line: 1, Line Position: 8
  3235. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:713) ~[spring-beans-5.3.39.jar:5.3.39]
  3236. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:693) ~[spring-beans-5.3.39.jar:5.3.39]
  3237. at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) ~[spring-beans-5.3.39.jar:5.3.39]
  3238. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:408) ~[spring-beans-5.3.39.jar:5.3.39]
  3239. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) ~[spring-beans-5.3.39.jar:5.3.39]
  3240. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) ~[spring-beans-5.3.39.jar:5.3.39]
  3241. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.39.jar:5.3.39]
  3242. at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:336) ~[spring-beans-5.3.39.jar:5.3.39]
  3243. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.39.jar:5.3.39]
  3244. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:334) ~[spring-beans-5.3.39.jar:5.3.39]
  3245. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:209) ~[spring-beans-5.3.39.jar:5.3.39]
  3246. at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955) ~[spring-beans-5.3.39.jar:5.3.39]
  3247. at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:932) ~[spring-context-5.3.39.jar:5.3.39]
  3248. at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:591) ~[spring-context-5.3.39.jar:5.3.39]
  3249. at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) ~[spring-boot-2.7.12.jar:2.7.12]
  3250. at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:731) ~[spring-boot-2.7.12.jar:2.7.12]
  3251. at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:408) ~[spring-boot-2.7.12.jar:2.7.12]
  3252. at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) ~[spring-boot-2.7.12.jar:2.7.12]
  3253. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) ~[spring-boot-2.7.12.jar:2.7.12]
  3254. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) ~[spring-boot-2.7.12.jar:2.7.12]
  3255. at com.zksy.ZksyApplication.main(ZksyApplication.java:19) ~[classes/:na]
  3256. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
  3257. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
  3258. at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
  3259. at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
  3260. at org.springframework.boot.devtools.restart.RestartLauncher.run(RestartLauncher.java:49) ~[spring-boot-devtools-2.7.12.jar:2.7.12]
  3261. Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'equipmentStatusServiceImpl': Unsatisfied dependency expressed through field 'sysUserService'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysUserServiceImpl': Unsatisfied dependency expressed through field 'configService'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysConfigServiceImpl': Invocation of init method failed; nested exception is org.springframework.jdbc.BadSqlGrammarException:
  3262. ### Error querying database. Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  3263. Position: 8 At Line: 1, Line Position: 8
  3264. ### The error may exist in file [E:\workSpace\pipe-ner-server\pipe-network-service\zksy-system\target\classes\mapper\system\SysConfigMapper.xml]
  3265. ### The error may involve com.zksy.system.mapper.SysConfigMapper.selectConfigList-Inline
  3266. ### The error occurred while setting parameters
  3267. ### SQL: select config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark from sys_config
  3268. ### Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  3269. Position: 8 At Line: 1, Line Position: 8
  3270. ; bad SQL grammar []; nested exception is com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  3271. Position: 8 At Line: 1, Line Position: 8
  3272. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:713) ~[spring-beans-5.3.39.jar:5.3.39]
  3273. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:693) ~[spring-beans-5.3.39.jar:5.3.39]
  3274. at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) ~[spring-beans-5.3.39.jar:5.3.39]
  3275. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:408) ~[spring-beans-5.3.39.jar:5.3.39]
  3276. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) ~[spring-beans-5.3.39.jar:5.3.39]
  3277. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) ~[spring-beans-5.3.39.jar:5.3.39]
  3278. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.39.jar:5.3.39]
  3279. at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:336) ~[spring-beans-5.3.39.jar:5.3.39]
  3280. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.39.jar:5.3.39]
  3281. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:334) ~[spring-beans-5.3.39.jar:5.3.39]
  3282. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:209) ~[spring-beans-5.3.39.jar:5.3.39]
  3283. at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) ~[spring-beans-5.3.39.jar:5.3.39]
  3284. at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) ~[spring-beans-5.3.39.jar:5.3.39]
  3285. at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) ~[spring-beans-5.3.39.jar:5.3.39]
  3286. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:710) ~[spring-beans-5.3.39.jar:5.3.39]
  3287. ... 25 common frames omitted
  3288. Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysUserServiceImpl': Unsatisfied dependency expressed through field 'configService'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysConfigServiceImpl': Invocation of init method failed; nested exception is org.springframework.jdbc.BadSqlGrammarException:
  3289. ### Error querying database. Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  3290. Position: 8 At Line: 1, Line Position: 8
  3291. ### The error may exist in file [E:\workSpace\pipe-ner-server\pipe-network-service\zksy-system\target\classes\mapper\system\SysConfigMapper.xml]
  3292. ### The error may involve com.zksy.system.mapper.SysConfigMapper.selectConfigList-Inline
  3293. ### The error occurred while setting parameters
  3294. ### SQL: select config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark from sys_config
  3295. ### Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  3296. Position: 8 At Line: 1, Line Position: 8
  3297. ; bad SQL grammar []; nested exception is com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  3298. Position: 8 At Line: 1, Line Position: 8
  3299. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:713) ~[spring-beans-5.3.39.jar:5.3.39]
  3300. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:693) ~[spring-beans-5.3.39.jar:5.3.39]
  3301. at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) ~[spring-beans-5.3.39.jar:5.3.39]
  3302. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:408) ~[spring-beans-5.3.39.jar:5.3.39]
  3303. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) ~[spring-beans-5.3.39.jar:5.3.39]
  3304. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:619) ~[spring-beans-5.3.39.jar:5.3.39]
  3305. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.39.jar:5.3.39]
  3306. at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:336) ~[spring-beans-5.3.39.jar:5.3.39]
  3307. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.39.jar:5.3.39]
  3308. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:334) ~[spring-beans-5.3.39.jar:5.3.39]
  3309. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:209) ~[spring-beans-5.3.39.jar:5.3.39]
  3310. at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) ~[spring-beans-5.3.39.jar:5.3.39]
  3311. at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) ~[spring-beans-5.3.39.jar:5.3.39]
  3312. at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) ~[spring-beans-5.3.39.jar:5.3.39]
  3313. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:710) ~[spring-beans-5.3.39.jar:5.3.39]
  3314. ... 39 common frames omitted
  3315. Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysConfigServiceImpl': Invocation of init method failed; nested exception is org.springframework.jdbc.BadSqlGrammarException:
  3316. ### Error querying database. Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  3317. Position: 8 At Line: 1, Line Position: 8
  3318. ### The error may exist in file [E:\workSpace\pipe-ner-server\pipe-network-service\zksy-system\target\classes\mapper\system\SysConfigMapper.xml]
  3319. ### The error may involve com.zksy.system.mapper.SysConfigMapper.selectConfigList-Inline
  3320. ### The error occurred while setting parameters
  3321. ### SQL: select config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark from sys_config
  3322. ### Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  3323. Position: 8 At Line: 1, Line Position: 8
  3324. ; bad SQL grammar []; nested exception is com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  3325. Position: 8 At Line: 1, Line Position: 8
  3326. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:160) ~[spring-beans-5.3.39.jar:5.3.39]
  3327. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyBeanPostProcessorsBeforeInitialization(AbstractAutowireCapableBeanFactory.java:440) ~[spring-beans-5.3.39.jar:5.3.39]
  3328. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1796) ~[spring-beans-5.3.39.jar:5.3.39]
  3329. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:620) ~[spring-beans-5.3.39.jar:5.3.39]
  3330. at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.39.jar:5.3.39]
  3331. at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:336) ~[spring-beans-5.3.39.jar:5.3.39]
  3332. at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.39.jar:5.3.39]
  3333. at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:334) ~[spring-beans-5.3.39.jar:5.3.39]
  3334. at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:209) ~[spring-beans-5.3.39.jar:5.3.39]
  3335. at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) ~[spring-beans-5.3.39.jar:5.3.39]
  3336. at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391) ~[spring-beans-5.3.39.jar:5.3.39]
  3337. at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311) ~[spring-beans-5.3.39.jar:5.3.39]
  3338. at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:710) ~[spring-beans-5.3.39.jar:5.3.39]
  3339. ... 53 common frames omitted
  3340. Caused by: org.springframework.jdbc.BadSqlGrammarException:
  3341. ### Error querying database. Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  3342. Position: 8 At Line: 1, Line Position: 8
  3343. ### The error may exist in file [E:\workSpace\pipe-ner-server\pipe-network-service\zksy-system\target\classes\mapper\system\SysConfigMapper.xml]
  3344. ### The error may involve com.zksy.system.mapper.SysConfigMapper.selectConfigList-Inline
  3345. ### The error occurred while setting parameters
  3346. ### SQL: select config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark from sys_config
  3347. ### Cause: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  3348. Position: 8 At Line: 1, Line Position: 8
  3349. ; bad SQL grammar []; nested exception is com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  3350. Position: 8 At Line: 1, Line Position: 8
  3351. at org.springframework.jdbc.support.SQLStateSQLExceptionTranslator.doTranslate(SQLStateSQLExceptionTranslator.java:101) ~[spring-jdbc-5.3.39.jar:5.3.39]
  3352. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73) ~[spring-jdbc-5.3.39.jar:5.3.39]
  3353. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:82) ~[spring-jdbc-5.3.39.jar:5.3.39]
  3354. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:82) ~[spring-jdbc-5.3.39.jar:5.3.39]
  3355. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:92) ~[mybatis-spring-2.1.2.jar:2.1.2]
  3356. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:439) ~[mybatis-spring-2.1.2.jar:2.1.2]
  3357. at com.sun.proxy.$Proxy150.selectList(Unknown Source) ~[na:na]
  3358. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224) ~[mybatis-spring-2.1.2.jar:2.1.2]
  3359. at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:164) ~[mybatis-plus-core-3.5.7.jar:3.5.7]
  3360. at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77) ~[mybatis-plus-core-3.5.7.jar:3.5.7]
  3361. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:152) ~[mybatis-plus-core-3.5.7.jar:3.5.7]
  3362. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89) ~[mybatis-plus-core-3.5.7.jar:3.5.7]
  3363. at com.sun.proxy.$Proxy225.selectConfigList(Unknown Source) ~[na:na]
  3364. at com.zksy.system.service.impl.SysConfigServiceImpl.loadingConfigCache(SysConfigServiceImpl.java:177) ~[classes/:na]
  3365. at com.zksy.system.service.impl.SysConfigServiceImpl.init(SysConfigServiceImpl.java:40) ~[classes/:na]
  3366. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
  3367. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
  3368. at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
  3369. at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
  3370. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleElement.invoke(InitDestroyAnnotationBeanPostProcessor.java:389) ~[spring-beans-5.3.39.jar:5.3.39]
  3371. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMetadata.invokeInitMethods(InitDestroyAnnotationBeanPostProcessor.java:333) ~[spring-beans-5.3.39.jar:5.3.39]
  3372. at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:157) ~[spring-beans-5.3.39.jar:5.3.39]
  3373. ... 65 common frames omitted
  3374. Caused by: com.kingbase8.util.KSQLException: ERROR: 字段 "config_id" 不存在
  3375. Position: 8 At Line: 1, Line Position: 8
  3376. at com.kingbase8.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:3551) ~[kingbase8-8.6.0.jar:na]
  3377. at com.kingbase8.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2993) ~[kingbase8-8.6.0.jar:na]
  3378. at com.kingbase8.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:405) ~[kingbase8-8.6.0.jar:na]
  3379. at com.kingbase8.jdbc.KbStatement.executeInternal_(KbStatement.java:784) ~[kingbase8-8.6.0.jar:na]
  3380. at com.kingbase8.jdbc.KbStatement.execute(KbStatement.java:676) ~[kingbase8-8.6.0.jar:na]
  3381. at com.kingbase8.jdbc.KbPreparedStatement.executeWithFlags(KbPreparedStatement.java:286) ~[kingbase8-8.6.0.jar:na]
  3382. at com.kingbase8.jdbc.KbPreparedStatement.execute(KbPreparedStatement.java:265) ~[kingbase8-8.6.0.jar:na]
  3383. at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3462) ~[druid-1.2.23.jar:na]
  3384. at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434) ~[druid-1.2.23.jar:na]
  3385. at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3460) ~[druid-1.2.23.jar:na]
  3386. at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:158) ~[druid-1.2.23.jar:na]
  3387. at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483) ~[druid-1.2.23.jar:na]
  3388. at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:65) ~[mybatis-3.5.16.jar:3.5.16]
  3389. at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:80) ~[mybatis-3.5.16.jar:3.5.16]
  3390. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
  3391. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
  3392. at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
  3393. at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
  3394. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61) ~[mybatis-3.5.16.jar:3.5.16]
  3395. at com.sun.proxy.$Proxy227.query(Unknown Source) ~[na:na]
  3396. at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:65) ~[mybatis-3.5.16.jar:3.5.16]
  3397. at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:336) ~[mybatis-3.5.16.jar:3.5.16]
  3398. at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:158) ~[mybatis-3.5.16.jar:3.5.16]
  3399. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:110) ~[mybatis-3.5.16.jar:3.5.16]
  3400. at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81) ~[mybatis-plus-extension-3.5.7.jar:3.5.7]
  3401. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:59) ~[mybatis-3.5.16.jar:3.5.16]
  3402. at com.sun.proxy.$Proxy226.query(Unknown Source) ~[na:na]
  3403. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:154) ~[mybatis-3.5.16.jar:3.5.16]
  3404. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:147) ~[mybatis-3.5.16.jar:3.5.16]
  3405. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:142) ~[mybatis-3.5.16.jar:3.5.16]
  3406. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
  3407. at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
  3408. at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
  3409. at java.base/java.lang.reflect.Method.invoke(Method.java:566) ~[na:na]
  3410. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:425) ~[mybatis-spring-2.1.2.jar:2.1.2]
  3411. ... 81 common frames omitted
  3412. 16:00:53:930 WARN 29788 --- [Thread-8] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  3413. 16:00:53:930 WARN 29788 --- [Thread-4] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  3414. 16:00:53:931 WARN 29788 --- [Thread-8] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  3415. 16:07:05:951 INFO 28152 --- [restartedMain] com.zksy.ZksyApplication : The following 1 profile is active: "dev"
  3416. 16:07:06:975 INFO 28152 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode!
  3417. 16:07:06:977 INFO 28152 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  3418. 16:07:07:057 INFO 28152 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 69 ms. Found 0 Redis repository interfaces.
  3419. 16:07:07:355 INFO 28152 --- [restartedMain] o.s.cloud.context.scope.GenericScope : BeanFactory id=3c481e74-3e90-36f2-b128-9d5c934cbba4
  3420. 16:07:08:147 INFO 28152 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8301 (http)
  3421. 16:07:08:158 INFO 28152 --- [restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  3422. 16:07:08:159 INFO 28152 --- [restartedMain] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.106]
  3423. 16:07:08:172 WARN 28152 --- [restartedMain] o.a.c.webresources.DirResourceSet : Disabled the global canonical file name cache to protect against CVE-2024-56337 when starting the WebResourceSet at [C:\Users\Administrator\AppData\Local\Temp\tomcat-docbase.8301.8357588401078294134] which is part of the web application []
  3424. 16:07:08:267 INFO 28152 --- [restartedMain] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  3425. 16:07:08:267 INFO 28152 --- [restartedMain] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 2308 ms
  3426. 16:07:08:649 DEBUG 28152 --- [restartedMain] c.z.f.s.f.JwtAuthenticationTokenFilter : Filter 'jwtAuthenticationTokenFilter' configured for use
  3427. 16:07:09:138 INFO 28152 --- [restartedMain] com.alibaba.druid.pool.DruidDataSource : {dataSource-1} inited
  3428. 16:07:09:701 WARN 28152 --- [restartedMain] c.b.m.core.injector.DefaultSqlInjector : class com.zksy.base.domain.AlarmAssignDetail ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method.
  3429. 16:07:09:711 WARN 28152 --- [restartedMain] c.b.m.core.injector.DefaultSqlInjector : class com.zksy.base.domain.AlarmAssignList ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method.
  3430. 16:07:14:380 INFO 28152 --- [restartedMain] c.a.c.sentinel.SentinelWebMvcConfigurer : [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
  3431. 16:07:14:821 INFO 28152 --- [restartedMain] c.z.s.impl.MinioFileStorageServiceImpl : 初始化MinIO成功
  3432. 16:07:15:005 INFO 28152 --- [restartedMain] org.quartz.impl.StdSchedulerFactory : Using default implementation for ThreadExecutor
  3433. 16:07:15:012 INFO 28152 --- [restartedMain] org.quartz.core.SchedulerSignalerImpl : Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  3434. 16:07:15:012 INFO 28152 --- [restartedMain] org.quartz.core.QuartzScheduler : Quartz Scheduler v.2.3.2 created.
  3435. 16:07:15:013 INFO 28152 --- [restartedMain] org.quartz.simpl.RAMJobStore : RAMJobStore initialized.
  3436. 16:07:15:013 INFO 28152 --- [restartedMain] org.quartz.core.QuartzScheduler : Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  3437. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  3438. NOT STARTED.
  3439. Currently in standby mode.
  3440. Number of jobs executed: 0
  3441. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  3442. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  3443. 16:07:15:013 INFO 28152 --- [restartedMain] org.quartz.impl.StdSchedulerFactory : Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  3444. 16:07:15:013 INFO 28152 --- [restartedMain] org.quartz.impl.StdSchedulerFactory : Quartz scheduler version: 2.3.2
  3445. 16:07:15:014 INFO 28152 --- [restartedMain] org.quartz.core.QuartzScheduler : JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@766cb17b
  3446. 16:07:15:071 INFO 28152 --- [restartedMain] c.z.s.impl.MinioFileStorageServiceImpl : 初始化MinIO成功
  3447. 16:07:15:516 INFO 28152 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.session.DisableEncodeUrlFilter@16acf684, org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@33f07de1, org.springframework.security.web.context.SecurityContextPersistenceFilter@6486d979, org.springframework.security.web.header.HeaderWriterFilter@4a48a1ed, org.springframework.web.filter.CorsFilter@1265deb3, org.springframework.security.web.authentication.logout.LogoutFilter@7a321aa5, org.springframework.web.filter.CorsFilter@1265deb3, com.zksy.framework.security.filter.JwtAuthenticationTokenFilter@324d0e76, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@6d7c1153, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@6a96588e, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@60eafba, org.springframework.security.web.session.SessionManagementFilter@26319ea, org.springframework.security.web.access.ExceptionTranslationFilter@7261738b, org.springframework.security.web.access.intercept.AuthorizationFilter@701053c5]
  3448. 16:07:15:836 INFO 28152 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729
  3449. 16:07:16:471 INFO 28152 --- [restartedMain] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  3450. 16:07:17:219 WARN 28152 --- [restartedMain] iguration$LoadBalancerCaffeineWarnLogger : Spring Cloud LoadBalancer is currently working with the default cache. While this cache implementation is useful for development and tests, it's recommended to use Caffeine cache in production.You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath.
  3451. 16:07:17:375 INFO 28152 --- [restartedMain] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of aaa238c0-9e73-44ff-9030-8d2a46b85e23
  3452. 16:07:17:375 INFO 28152 --- [restartedMain] com.alibaba.nacos.common.remote.client : [aaa238c0-9e73-44ff-9030-8d2a46b85e23] RpcClient init label, labels = {module=naming, source=sdk}
  3453. 16:07:17:376 INFO 28152 --- [restartedMain] com.alibaba.nacos.common.remote.client : [aaa238c0-9e73-44ff-9030-8d2a46b85e23] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  3454. 16:07:17:376 INFO 28152 --- [restartedMain] com.alibaba.nacos.common.remote.client : [aaa238c0-9e73-44ff-9030-8d2a46b85e23] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  3455. 16:07:17:377 INFO 28152 --- [restartedMain] com.alibaba.nacos.common.remote.client : [aaa238c0-9e73-44ff-9030-8d2a46b85e23] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  3456. 16:07:17:377 INFO 28152 --- [restartedMain] com.alibaba.nacos.common.remote.client : [aaa238c0-9e73-44ff-9030-8d2a46b85e23] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  3457. 16:07:17:494 INFO 28152 --- [restartedMain] com.alibaba.nacos.common.remote.client : [aaa238c0-9e73-44ff-9030-8d2a46b85e23] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1784621237094_192.168.110.235_63768
  3458. 16:07:17:494 INFO 28152 --- [restartedMain] com.alibaba.nacos.common.remote.client : [aaa238c0-9e73-44ff-9030-8d2a46b85e23] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  3459. 16:07:17:494 INFO 28152 --- [restartedMain] com.alibaba.nacos.common.remote.client : [aaa238c0-9e73-44ff-9030-8d2a46b85e23] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$490/0x0000000800455840
  3460. 16:07:17:494 INFO 28152 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [aaa238c0-9e73-44ff-9030-8d2a46b85e23] Notify connected event to listeners.
  3461. 16:07:17:530 INFO 28152 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8301 (http) with context path ''
  3462. 16:07:17:538 INFO 28152 --- [restartedMain] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP pipe-network-service 192.168.110.235:8301 register finished
  3463. 16:07:17:835 INFO 28152 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  3464. 16:07:17:837 INFO 28152 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  3465. 16:07:17:971 INFO 28152 --- [restartedMain] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  3466. 16:07:18:026 INFO 28152 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [aaa238c0-9e73-44ff-9030-8d2a46b85e23] Receive server push request, request = NotifySubscriberRequest, requestId = 78
  3467. 16:07:18:029 INFO 28152 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [aaa238c0-9e73-44ff-9030-8d2a46b85e23] Ack server push request, request = NotifySubscriberRequest, requestId = 78
  3468. 16:07:18:042 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingPOST_1
  3469. 16:07:18:057 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_1
  3470. 16:07:18:059 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_1
  3471. 16:07:18:065 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_1
  3472. 16:07:18:072 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingPOST_2
  3473. 16:07:18:073 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingPOST_3
  3474. 16:07:18:077 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_2
  3475. 16:07:18:077 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_3
  3476. 16:07:18:078 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_2
  3477. 16:07:18:079 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_3
  3478. 16:07:18:087 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_1
  3479. 16:07:18:089 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_2
  3480. 16:07:18:090 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_3
  3481. 16:07:18:093 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_2
  3482. 16:07:18:094 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_3
  3483. 16:07:18:095 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getActivePointsUsingGET_1
  3484. 16:07:18:095 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_4
  3485. 16:07:18:096 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_5
  3486. 16:07:18:097 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingPUT_1
  3487. 16:07:18:100 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_1
  3488. 16:07:18:101 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_4
  3489. 16:07:18:101 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_5
  3490. 16:07:18:103 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAlarmDataListUsingGET_1
  3491. 16:07:18:103 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_6
  3492. 16:07:18:104 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_7
  3493. 16:07:18:109 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingPOST_1
  3494. 16:07:18:109 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_4
  3495. 16:07:18:110 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_5
  3496. 16:07:18:111 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_4
  3497. 16:07:18:111 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_5
  3498. 16:07:18:113 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: customAlarmUsingPOST_1
  3499. 16:07:18:113 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: simulateEnvironmentUsingGET_1
  3500. 16:07:18:114 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: simulateGasUsingGET_1
  3501. 16:07:18:115 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: simulateManholeUsingGET_1
  3502. 16:07:18:117 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: cacheUsingGET_1
  3503. 16:07:18:118 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: clearCacheAllUsingDELETE_1
  3504. 16:07:18:119 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: clearCacheKeyUsingDELETE_1
  3505. 16:07:18:119 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: clearCacheNameUsingDELETE_1
  3506. 16:07:18:120 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getCacheKeysUsingGET_1
  3507. 16:07:18:121 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getCacheValueUsingGET_1
  3508. 16:07:18:122 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_1
  3509. 16:07:18:123 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getCodeUsingGET_1
  3510. 16:07:18:127 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveWarningThresholdUsingPOST_1
  3511. 16:07:18:128 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: verifyCaseInfoUsingPOST_1
  3512. 16:07:18:137 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_1
  3513. 16:07:18:139 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_8
  3514. 16:07:18:139 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_9
  3515. 16:07:18:141 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: uploadFileUsingPOST_1
  3516. 16:07:18:142 WARN 28152 --- [restartedMain] s.d.s.w.r.p.ParameterDataTypeReader : Trying to infer dataType java.util.List<org.springframework.web.multipart.MultipartFile>
  3517. 16:07:18:142 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: uploadFilesUsingPOST_1
  3518. 16:07:18:143 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: fileDownloadUsingGET_1
  3519. 16:07:18:144 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resourceDownloadUsingGET_1
  3520. 16:07:18:147 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportAbnormalDevicesUsingPOST_1
  3521. 16:07:18:148 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAbnormalDevicePageUsingGET_1
  3522. 16:07:18:149 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAbnormalGisPointsUsingGET_1
  3523. 16:07:18:151 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAbnormalPointsUsingGET_1
  3524. 16:07:18:152 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllDevicePointsUsingGET_1
  3525. 16:07:18:153 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceDetailUsingGET_1
  3526. 16:07:18:154 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getGisStatisticsUsingGET_1
  3527. 16:07:18:156 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportDeviceLedgerUsingPOST_1
  3528. 16:07:18:158 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDevicePageUsingGET_1
  3529. 16:07:18:159 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getGisPointsUsingGET_1
  3530. 16:07:18:160 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTypeStatisticsUsingGET_1
  3531. 16:07:18:165 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: createMaintainOrderUsingPOST_1
  3532. 16:07:18:166 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteMaintainRecordUsingDELETE_1
  3533. 16:07:18:167 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportMaintainRecordsUsingPOST_1
  3534. 16:07:18:168 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getMaintainRecordListUsingGET_1
  3535. 16:07:18:170 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getMaintainRecordPageUsingGET_1
  3536. 16:07:18:171 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getMyMaintainRecordPageUsingGET_1
  3537. 16:07:18:172 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: importMaintainRecordsUsingPOST_1
  3538. 16:07:18:175 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveMaintainRecordUsingPOST_1
  3539. 16:07:18:176 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateMaintainRecordUsingPUT_1
  3540. 16:07:18:178 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_1
  3541. 16:07:18:186 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_6
  3542. 16:07:18:186 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_7
  3543. 16:07:18:187 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_10
  3544. 16:07:18:187 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_11
  3545. 16:07:18:188 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listByCategoryUsingGET_1
  3546. 16:07:18:190 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_6
  3547. 16:07:18:190 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_7
  3548. 16:07:18:191 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_1
  3549. 16:07:18:193 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_2
  3550. 16:07:18:194 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_3
  3551. 16:07:18:196 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_8
  3552. 16:07:18:197 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_9
  3553. 16:07:18:197 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_12
  3554. 16:07:18:197 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_13
  3555. 16:07:18:200 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_8
  3556. 16:07:18:200 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_9
  3557. 16:07:18:201 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_2
  3558. 16:07:18:201 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_3
  3559. 16:07:18:203 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: acceptUsingPUT_1
  3560. 16:07:18:204 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_4
  3561. 16:07:18:204 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_5
  3562. 16:07:18:207 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_10
  3563. 16:07:18:207 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_11
  3564. 16:07:18:209 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_14
  3565. 16:07:18:209 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_15
  3566. 16:07:18:210 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: rejectUsingPUT_1
  3567. 16:07:18:212 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_10
  3568. 16:07:18:213 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_11
  3569. 16:07:18:213 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_4
  3570. 16:07:18:214 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_5
  3571. 16:07:18:217 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addTrackLogUsingPOST_1
  3572. 16:07:18:218 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: closeUsingPUT_1
  3573. 16:07:18:219 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_6
  3574. 16:07:18:219 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_7
  3575. 16:07:18:222 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_12
  3576. 16:07:18:222 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_13
  3577. 16:07:18:223 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_16
  3578. 16:07:18:223 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_17
  3579. 16:07:18:224 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrackLogsUsingGET_1
  3580. 16:07:18:225 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: releaseUsingPUT_1
  3581. 16:07:18:227 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_12
  3582. 16:07:18:227 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_13
  3583. 16:07:18:228 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_6
  3584. 16:07:18:228 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_7
  3585. 16:07:18:230 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_8
  3586. 16:07:18:230 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_9
  3587. 16:07:18:232 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: doReportUsingPUT_1
  3588. 16:07:18:236 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: doTransferUsingPUT_1
  3589. 16:07:18:239 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_14
  3590. 16:07:18:239 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_15
  3591. 16:07:18:240 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_18
  3592. 16:07:18:240 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_19
  3593. 16:07:18:241 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTransferLogsUsingGET_1
  3594. 16:07:18:241 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_14
  3595. 16:07:18:241 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_15
  3596. 16:07:18:242 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_8
  3597. 16:07:18:242 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_9
  3598. 16:07:18:245 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: closeUrgeUsingPUT_1
  3599. 16:07:18:245 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_10
  3600. 16:07:18:246 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_11
  3601. 16:07:18:247 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: doUrgeUsingPOST_1
  3602. 16:07:18:250 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_16
  3603. 16:07:18:251 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_17
  3604. 16:07:18:251 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_20
  3605. 16:07:18:251 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_21
  3606. 16:07:18:252 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getUrgeDetailsUsingGET_1
  3607. 16:07:18:255 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_16
  3608. 16:07:18:255 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_17
  3609. 16:07:18:256 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_10
  3610. 16:07:18:256 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_11
  3611. 16:07:18:257 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_12
  3612. 16:07:18:258 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_13
  3613. 16:07:18:261 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_18
  3614. 16:07:18:261 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_19
  3615. 16:07:18:262 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_22
  3616. 16:07:18:262 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_23
  3617. 16:07:18:265 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_18
  3618. 16:07:18:266 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_19
  3619. 16:07:18:267 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_12
  3620. 16:07:18:267 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_13
  3621. 16:07:18:268 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: verifyUsingPUT_1
  3622. 16:07:18:270 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: approveUsingPUT_1
  3623. 16:07:18:271 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_14
  3624. 16:07:18:271 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_15
  3625. 16:07:18:274 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_20
  3626. 16:07:18:275 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_21
  3627. 16:07:18:275 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_24
  3628. 16:07:18:275 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_25
  3629. 16:07:18:276 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: publishUsingPUT_1
  3630. 16:07:18:277 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: rejectUsingPUT_2
  3631. 16:07:18:277 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: rejectUsingPUT_3
  3632. 16:07:18:280 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_20
  3633. 16:07:18:280 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_21
  3634. 16:07:18:281 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: submitForApprovalUsingPUT_1
  3635. 16:07:18:282 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: submitFromPlanUsingPOST_1
  3636. 16:07:18:283 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_14
  3637. 16:07:18:283 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_15
  3638. 16:07:18:285 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_16
  3639. 16:07:18:285 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_17
  3640. 16:07:18:288 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_22
  3641. 16:07:18:288 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_23
  3642. 16:07:18:289 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_26
  3643. 16:07:18:290 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_27
  3644. 16:07:18:290 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listByApprovalIdUsingGET_1
  3645. 16:07:18:292 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_22
  3646. 16:07:18:293 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_23
  3647. 16:07:18:293 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_16
  3648. 16:07:18:293 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_17
  3649. 16:07:18:295 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_18
  3650. 16:07:18:295 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_19
  3651. 16:07:18:298 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_24
  3652. 16:07:18:298 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_25
  3653. 16:07:18:299 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_28
  3654. 16:07:18:299 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_29
  3655. 16:07:18:300 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getCategoryTreeUsingGET_1
  3656. 16:07:18:302 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_24
  3657. 16:07:18:302 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_25
  3658. 16:07:18:303 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_18
  3659. 16:07:18:303 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_19
  3660. 16:07:18:316 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: maintainPageUsingGET_1
  3661. 16:07:18:319 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pointRelPageUsingGET_1
  3662. 16:07:18:324 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statusPageUsingGET_1
  3663. 16:07:18:327 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: testPageUsingGET_1
  3664. 16:07:18:330 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: typePageUsingGET_1
  3665. 16:07:18:337 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: basePageUsingGET_1
  3666. 16:07:18:338 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: baseDeleteUsingDELETE_1
  3667. 16:07:18:339 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: baseDeleteBatchUsingDELETE_1
  3668. 16:07:18:340 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: baseGetByIdUsingGET_1
  3669. 16:07:18:341 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: baseListUsingGET_1
  3670. 16:07:18:344 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: baseSaveUsingPOST_1
  3671. 16:07:18:345 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: baseUpdateUsingPUT_1
  3672. 16:07:18:346 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: maintainDeleteUsingDELETE_1
  3673. 16:07:18:346 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: maintainDeleteBatchUsingDELETE_1
  3674. 16:07:18:347 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: maintainGetByIdUsingGET_1
  3675. 16:07:18:348 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: maintainSaveUsingPOST_1
  3676. 16:07:18:349 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: maintainUpdateUsingPUT_1
  3677. 16:07:18:350 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pointRelByEquipmentUsingGET_1
  3678. 16:07:18:351 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pointRelByPointUsingGET_1
  3679. 16:07:18:351 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pointRelDeleteUsingDELETE_1
  3680. 16:07:18:352 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pointRelDeleteBatchUsingDELETE_1
  3681. 16:07:18:354 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pointRelSaveUsingPOST_1
  3682. 16:07:18:355 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pointRelSaveBatchUsingPOST_1
  3683. 16:07:18:356 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statusDeleteUsingDELETE_1
  3684. 16:07:18:357 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statusGetByIdUsingGET_1
  3685. 16:07:18:358 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statusSaveUsingPOST_1
  3686. 16:07:18:359 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statusUpdateUsingPUT_1
  3687. 16:07:18:360 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: testDeleteUsingDELETE_1
  3688. 16:07:18:361 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: testDeleteBatchUsingDELETE_1
  3689. 16:07:18:361 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: testGetByIdUsingGET_1
  3690. 16:07:18:363 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: testSaveUsingPOST_1
  3691. 16:07:18:364 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: testUpdateUsingPUT_1
  3692. 16:07:18:365 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: typeDeleteUsingDELETE_1
  3693. 16:07:18:365 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: typeDeleteBatchUsingDELETE_1
  3694. 16:07:18:366 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: typeGetByIdUsingGET_1
  3695. 16:07:18:367 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: typeListUsingGET_1
  3696. 16:07:18:368 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: typeSaveUsingPOST_1
  3697. 16:07:18:368 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: typeUpdateUsingPUT_1
  3698. 16:07:18:370 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_30
  3699. 16:07:18:370 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_31
  3700. 16:07:18:371 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_1
  3701. 16:07:18:376 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_1
  3702. 16:07:18:377 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_1
  3703. 16:07:18:378 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: boundEquipmentIdsUsingGET_1
  3704. 16:07:18:378 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingDELETE_1
  3705. 16:07:18:378 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_20
  3706. 16:07:18:378 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_21
  3707. 16:07:18:379 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_32
  3708. 16:07:18:379 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_33
  3709. 16:07:18:379 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_2
  3710. 16:07:18:380 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_3
  3711. 16:07:18:381 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_26
  3712. 16:07:18:382 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_27
  3713. 16:07:18:382 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_1
  3714. 16:07:18:385 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_34
  3715. 16:07:18:386 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_35
  3716. 16:07:18:386 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_4
  3717. 16:07:18:387 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_5
  3718. 16:07:18:387 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: monthlyStatsUsingGET_1
  3719. 16:07:18:388 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_2
  3720. 16:07:18:388 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_3
  3721. 16:07:18:399 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentPageUsingGET_1
  3722. 16:07:18:400 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: historyPageUsingGET_1
  3723. 16:07:18:401 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_4
  3724. 16:07:18:402 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_5
  3725. 16:07:18:402 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_22
  3726. 16:07:18:402 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_23
  3727. 16:07:18:403 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: finalApproveUsingPUT_1
  3728. 16:07:18:404 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: firstApproveUsingPUT_1
  3729. 16:07:18:405 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_36
  3730. 16:07:18:405 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_37
  3731. 16:07:18:409 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: publishUsingPOST_1
  3732. 16:07:18:410 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_28
  3733. 16:07:18:410 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_29
  3734. 16:07:18:411 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: scopeUsersUsingGET_1
  3735. 16:07:18:411 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_2
  3736. 16:07:18:412 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_3
  3737. 16:07:18:412 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateStatusUsingPUT_1
  3738. 16:07:18:414 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_1
  3739. 16:07:18:414 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_6
  3740. 16:07:18:415 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_7
  3741. 16:07:18:416 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_30
  3742. 16:07:18:416 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_31
  3743. 16:07:18:417 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_4
  3744. 16:07:18:417 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_5
  3745. 16:07:18:418 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_2
  3746. 16:07:18:418 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_3
  3747. 16:07:18:419 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_8
  3748. 16:07:18:420 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_9
  3749. 16:07:18:421 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_32
  3750. 16:07:18:422 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_33
  3751. 16:07:18:422 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_6
  3752. 16:07:18:422 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_7
  3753. 16:07:18:424 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePlanUsingDELETE_1
  3754. 16:07:18:424 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteTemplateUsingDELETE_1
  3755. 16:07:18:425 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: plansUsingGET_1
  3756. 16:07:18:425 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resultUsingGET_1
  3757. 16:07:18:426 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: savePlanUsingPOST_1
  3758. 16:07:18:427 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveTemplateUsingPOST_1
  3759. 16:07:18:428 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: templatesUsingGET_1
  3760. 16:07:18:428 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updatePlanUsingPUT_1
  3761. 16:07:18:429 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateTemplateUsingPUT_1
  3762. 16:07:18:433 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addLogUsingPOST_1
  3763. 16:07:18:433 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteEventUsingDELETE_1
  3764. 16:07:18:434 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteProjectUsingDELETE_1
  3765. 16:07:18:434 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteRoleUsingDELETE_1
  3766. 16:07:18:435 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteSceneUsingDELETE_1
  3767. 16:07:18:435 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteTaskUsingDELETE_1
  3768. 16:07:18:436 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: eventUsingGET_1
  3769. 16:07:18:437 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: logUsingGET_1
  3770. 16:07:18:437 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: processUsingPOST_1
  3771. 16:07:18:438 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: projectsUsingGET_1
  3772. 16:07:18:439 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resultUsingGET_2
  3773. 16:07:18:439 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resultUsingGET_3
  3774. 16:07:18:439 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: roleUsingGET_1
  3775. 16:07:18:440 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveEventUsingPOST_1
  3776. 16:07:18:442 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveProjectUsingPOST_1
  3777. 16:07:18:443 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveRoleUsingPOST_1
  3778. 16:07:18:444 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveSceneUsingPOST_1
  3779. 16:07:18:445 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveTaskUsingPOST_1
  3780. 16:07:18:445 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: sceneUsingGET_1
  3781. 16:07:18:446 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: taskUsingGET_1
  3782. 16:07:18:448 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAlarmsUsingGET_1
  3783. 16:07:18:449 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDailyStatsUsingGET_1
  3784. 16:07:18:449 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_1
  3785. 16:07:18:449 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestUsingGET_1
  3786. 16:07:18:450 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendUsingGET_1
  3787. 16:07:18:463 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addLeaderInstructionUsingPOST_1
  3788. 16:07:18:463 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchWarningUsingDELETE_1
  3789. 16:07:18:464 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteWarningUsingDELETE_1
  3790. 16:07:18:465 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getArchiveUsingGET_1
  3791. 16:07:18:466 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getArchiveListUsingGET_1
  3792. 16:07:18:466 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAttachmentsUsingGET_1
  3793. 16:07:18:467 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getCompletedWarningsUsingGET_1
  3794. 16:07:18:468 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDashboardStatisticsUsingGET_1
  3795. 16:07:18:468 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDisposalDetailUsingGET_1
  3796. 16:07:18:469 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDisposalHistoryUsingGET_1
  3797. 16:07:18:470 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDisposalListUsingGET_1
  3798. 16:07:18:470 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDisposalProcessUsingGET_1
  3799. 16:07:18:471 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLinkedAlarmsUsingGET_1
  3800. 16:07:18:472 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getProcessDiagramUsingGET_1
  3801. 16:07:18:472 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getProcessStatisticsUsingGET_1
  3802. 16:07:18:473 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getProcessingWarningsUsingGET_1
  3803. 16:07:18:474 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getStatisticsUsingGET_1
  3804. 16:07:18:475 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTodoListUsingGET_1
  3805. 16:07:18:475 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getWarningDetailUsingGET_1
  3806. 16:07:18:476 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getWarningFullDetailUsingGET_1
  3807. 16:07:18:477 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getWarningListUsingGET_1
  3808. 16:07:18:478 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: linkAlarmsUsingPOST_1
  3809. 16:07:18:479 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: publishWarningUsingPOST_1
  3810. 16:07:18:480 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resolveWarningUsingPOST_1
  3811. 16:07:18:481 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: returnWarningUsingPOST_1
  3812. 16:07:18:484 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveWarningUsingPOST_1
  3813. 16:07:18:487 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: searchWarningsUsingGET_1
  3814. 16:07:18:489 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: supervisionWarningUsingPOST_1
  3815. 16:07:18:490 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateWarningUsingPUT_1
  3816. 16:07:18:491 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: upgradeWarningUsingPOST_1
  3817. 16:07:18:495 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getBySpecialUsingGET_1
  3818. 16:07:18:496 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getOverviewUsingGET_1
  3819. 16:07:18:497 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getRangeUsingGET_1
  3820. 16:07:18:499 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_1
  3821. 16:07:18:501 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDisposeStatusStatUsingGET_1
  3822. 16:07:18:507 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByTypeUsingGET_1
  3823. 16:07:18:508 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getOverviewUsingGET_2
  3824. 16:07:18:508 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getOverviewUsingGET_3
  3825. 16:07:18:509 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getRangeUsingGET_2
  3826. 16:07:18:510 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getRangeUsingGET_3
  3827. 16:07:18:510 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_2
  3828. 16:07:18:511 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_3
  3829. 16:07:18:512 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTodayStatsUsingGET_1
  3830. 16:07:18:513 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryTodayPageUsingGET_1
  3831. 16:07:18:515 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendByDayUsingGET_1
  3832. 16:07:18:516 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendByMonthUsingGET_1
  3833. 16:07:18:520 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_6
  3834. 16:07:18:521 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_7
  3835. 16:07:18:521 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_2
  3836. 16:07:18:522 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_3
  3837. 16:07:18:522 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindPumpStationUsingPOST_1
  3838. 16:07:18:523 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingDELETE_2
  3839. 16:07:18:523 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingDELETE_3
  3840. 16:07:18:523 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_24
  3841. 16:07:18:524 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_25
  3842. 16:07:18:524 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_38
  3843. 16:07:18:524 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_39
  3844. 16:07:18:525 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_10
  3845. 16:07:18:525 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_11
  3846. 16:07:18:527 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_34
  3847. 16:07:18:527 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_35
  3848. 16:07:18:527 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_8
  3849. 16:07:18:528 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_9
  3850. 16:07:18:529 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_1
  3851. 16:07:18:530 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getStatsUsingGET_1
  3852. 16:07:18:534 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_26
  3853. 16:07:18:535 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_27
  3854. 16:07:18:535 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_1
  3855. 16:07:18:536 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_26
  3856. 16:07:18:536 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_27
  3857. 16:07:18:536 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByTopLevelTypeUsingGET_1
  3858. 16:07:18:537 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_40
  3859. 16:07:18:537 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_41
  3860. 16:07:18:538 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getEquipmentByPointUsingGET_1
  3861. 16:07:18:538 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getEquipmentDetailUsingGET_1
  3862. 16:07:18:539 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_2
  3863. 16:07:18:539 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_3
  3864. 16:07:18:540 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_36
  3865. 16:07:18:540 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_37
  3866. 16:07:18:541 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_1
  3867. 16:07:18:542 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: testEquipmentUsingPOST_1
  3868. 16:07:18:542 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_20
  3869. 16:07:18:542 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_21
  3870. 16:07:18:543 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateEquipmentStatusUsingPUT_1
  3871. 16:07:18:545 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_28
  3872. 16:07:18:545 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_29
  3873. 16:07:18:546 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_2
  3874. 16:07:18:546 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_3
  3875. 16:07:18:546 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_28
  3876. 16:07:18:547 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_29
  3877. 16:07:18:547 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_42
  3878. 16:07:18:547 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_43
  3879. 16:07:18:548 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_4
  3880. 16:07:18:548 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_5
  3881. 16:07:18:548 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_38
  3882. 16:07:18:549 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_39
  3883. 16:07:18:549 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_2
  3884. 16:07:18:550 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_3
  3885. 16:07:18:550 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_22
  3886. 16:07:18:550 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_23
  3887. 16:07:18:553 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_30
  3888. 16:07:18:553 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_31
  3889. 16:07:18:554 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_4
  3890. 16:07:18:554 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_5
  3891. 16:07:18:554 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_30
  3892. 16:07:18:555 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_31
  3893. 16:07:18:555 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_44
  3894. 16:07:18:555 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_45
  3895. 16:07:18:556 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_6
  3896. 16:07:18:556 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_7
  3897. 16:07:18:556 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_40
  3898. 16:07:18:557 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_41
  3899. 16:07:18:557 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_4
  3900. 16:07:18:558 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_5
  3901. 16:07:18:558 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_24
  3902. 16:07:18:558 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_25
  3903. 16:07:18:560 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_32
  3904. 16:07:18:561 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_33
  3905. 16:07:18:561 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_6
  3906. 16:07:18:561 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_7
  3907. 16:07:18:562 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_32
  3908. 16:07:18:562 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_33
  3909. 16:07:18:562 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_46
  3910. 16:07:18:563 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_47
  3911. 16:07:18:563 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_8
  3912. 16:07:18:563 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_9
  3913. 16:07:18:564 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_42
  3914. 16:07:18:564 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_43
  3915. 16:07:18:565 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_6
  3916. 16:07:18:565 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_7
  3917. 16:07:18:566 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_26
  3918. 16:07:18:566 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_27
  3919. 16:07:18:568 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAlarmCountsUsingGET_1
  3920. 16:07:18:569 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAveragePressureUsingGET_1
  3921. 16:07:18:569 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDailyStatsUsingGET_2
  3922. 16:07:18:569 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDailyStatsUsingGET_3
  3923. 16:07:18:570 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_2
  3924. 16:07:18:570 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_3
  3925. 16:07:18:570 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPressureDistributionUsingGET_1
  3926. 16:07:18:571 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getSignalVsPressureUsingGET_1
  3927. 16:07:18:576 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportFlowMonitorDataUsingGET_1
  3928. 16:07:18:577 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getFlowMonitorPageUsingGET_1
  3929. 16:07:18:578 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getFlowTrend24hUsingGET_1
  3930. 16:07:18:579 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: dispatchUsingPOST_1
  3931. 16:07:18:579 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: equipmentUsingGET_1
  3932. 16:07:18:580 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: historyUsingGET_1
  3933. 16:07:18:581 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resolveUsingPUT_1
  3934. 16:07:18:581 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statsUsingGET_1
  3935. 16:07:18:582 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: summaryUsingGET_1
  3936. 16:07:18:585 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_34
  3937. 16:07:18:585 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_35
  3938. 16:07:18:586 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePointRelUsingDELETE_1
  3939. 16:07:18:587 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findFullByPageUsingGET_1
  3940. 16:07:18:587 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAbnormalListUsingGET_1
  3941. 16:07:18:588 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getEquipmentStatusUsingGET_1
  3942. 16:07:18:588 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPointRelByEquipmentUsingGET_1
  3943. 16:07:18:589 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPointRelByPointUsingGET_1
  3944. 16:07:18:590 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_44
  3945. 16:07:18:590 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_45
  3946. 16:07:18:591 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveDeviceRelUsingPOST_1
  3947. 16:07:18:592 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: savePointRelUsingPOST_1
  3948. 16:07:18:593 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: savePointRelBatchUsingPOST_1
  3949. 16:07:18:594 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_28
  3950. 16:07:18:594 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_29
  3951. 16:07:18:596 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_36
  3952. 16:07:18:596 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_37
  3953. 16:07:18:597 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteDeviceRelUsingDELETE_1
  3954. 16:07:18:599 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_34
  3955. 16:07:18:599 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_35
  3956. 16:07:18:600 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_48
  3957. 16:07:18:600 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_49
  3958. 16:07:18:600 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_12
  3959. 16:07:18:600 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_13
  3960. 16:07:18:601 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listDevicesUsingGET_1
  3961. 16:07:18:601 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionsUsingGET_1
  3962. 16:07:18:604 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_46
  3963. 16:07:18:604 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_47
  3964. 16:07:18:605 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveDeviceRelUsingPOST_2
  3965. 16:07:18:605 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveDeviceRelUsingPOST_3
  3966. 16:07:18:606 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveDeviceRelBatchUsingPOST_1
  3967. 16:07:18:607 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_30
  3968. 16:07:18:607 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_31
  3969. 16:07:18:608 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPointsUsingGET_1
  3970. 16:07:18:608 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendUsingGET_2
  3971. 16:07:18:609 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendUsingGET_3
  3972. 16:07:18:610 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAlarmsUsingGET_2
  3973. 16:07:18:611 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAlarmsUsingGET_3
  3974. 16:07:18:611 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDailyStatsUsingGET_4
  3975. 16:07:18:611 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDailyStatsUsingGET_5
  3976. 16:07:18:612 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_4
  3977. 16:07:18:612 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_5
  3978. 16:07:18:612 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataUsingGET_1
  3979. 16:07:18:613 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestWithAlarmUsingGET_1
  3980. 16:07:18:614 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getOnlineRateUsingGET_1
  3981. 16:07:18:614 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendUsingGET_4
  3982. 16:07:18:614 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendUsingGET_5
  3983. 16:07:18:615 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_38
  3984. 16:07:18:616 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_39
  3985. 16:07:18:618 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_36
  3986. 16:07:18:619 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_37
  3987. 16:07:18:619 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_50
  3988. 16:07:18:619 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_51
  3989. 16:07:18:621 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_48
  3990. 16:07:18:621 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_49
  3991. 16:07:18:622 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_32
  3992. 16:07:18:622 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_33
  3993. 16:07:18:623 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_40
  3994. 16:07:18:624 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_41
  3995. 16:07:18:627 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_38
  3996. 16:07:18:627 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_39
  3997. 16:07:18:627 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_52
  3998. 16:07:18:627 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_53
  3999. 16:07:18:627 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionsUsingGET_2
  4000. 16:07:18:628 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionsUsingGET_3
  4001. 16:07:18:630 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_50
  4002. 16:07:18:630 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_51
  4003. 16:07:18:631 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_34
  4004. 16:07:18:631 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_35
  4005. 16:07:18:632 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportDataUsingGET_1
  4006. 16:07:18:634 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_42
  4007. 16:07:18:634 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_43
  4008. 16:07:18:635 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteDeviceRelUsingDELETE_2
  4009. 16:07:18:635 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteDeviceRelUsingDELETE_3
  4010. 16:07:18:637 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_40
  4011. 16:07:18:637 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_41
  4012. 16:07:18:638 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_54
  4013. 16:07:18:638 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_55
  4014. 16:07:18:639 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listByNetworkIdUsingGET_1
  4015. 16:07:18:639 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listDevicesUsingGET_2
  4016. 16:07:18:639 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listDevicesUsingGET_3
  4017. 16:07:18:640 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionsUsingGET_4
  4018. 16:07:18:640 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionsUsingGET_5
  4019. 16:07:18:642 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_52
  4020. 16:07:18:642 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_53
  4021. 16:07:18:643 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveDeviceRelUsingPOST_4
  4022. 16:07:18:643 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveDeviceRelUsingPOST_5
  4023. 16:07:18:644 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveDeviceRelBatchUsingPOST_2
  4024. 16:07:18:644 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveDeviceRelBatchUsingPOST_3
  4025. 16:07:18:645 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_36
  4026. 16:07:18:645 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_37
  4027. 16:07:18:646 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_44
  4028. 16:07:18:646 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_45
  4029. 16:07:18:649 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_42
  4030. 16:07:18:649 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_43
  4031. 16:07:18:650 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_56
  4032. 16:07:18:650 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_57
  4033. 16:07:18:650 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listByNetworkIdUsingGET_2
  4034. 16:07:18:651 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listByNetworkIdUsingGET_3
  4035. 16:07:18:652 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_54
  4036. 16:07:18:653 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_55
  4037. 16:07:18:653 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statsUsingGET_2
  4038. 16:07:18:653 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statsUsingGET_3
  4039. 16:07:18:654 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_38
  4040. 16:07:18:654 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_39
  4041. 16:07:18:656 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getEquipmentsUsingGET_1
  4042. 16:07:18:657 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getManholesUsingGET_1
  4043. 16:07:18:657 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPipeLinesUsingGET_1
  4044. 16:07:18:660 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_46
  4045. 16:07:18:660 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_47
  4046. 16:07:18:660 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportDataUsingGET_2
  4047. 16:07:18:660 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportDataUsingGET_3
  4048. 16:07:18:661 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_58
  4049. 16:07:18:661 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_59
  4050. 16:07:18:662 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getMapPointsUsingGET_1
  4051. 16:07:18:664 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_8
  4052. 16:07:18:664 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_9
  4053. 16:07:18:667 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_56
  4054. 16:07:18:667 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_57
  4055. 16:07:18:668 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsByLevelUsingGET_1
  4056. 16:07:18:669 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsByRegionUsingGET_1
  4057. 16:07:18:669 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsByStatusUsingGET_1
  4058. 16:07:18:670 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsByTypeUsingGET_1
  4059. 16:07:18:670 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsOverviewUsingGET_1
  4060. 16:07:18:671 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsStatusTimelineUsingGET_1
  4061. 16:07:18:672 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsTypeTimelineUsingGET_1
  4062. 16:07:18:672 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: submitUsingPUT_1
  4063. 16:07:18:673 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_40
  4064. 16:07:18:673 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_41
  4065. 16:07:18:676 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportLeakageMonitorDataUsingGET_1
  4066. 16:07:18:677 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLeakageMonitorPageUsingGET_1
  4067. 16:07:18:678 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLeakageTrend24hUsingGET_1
  4068. 16:07:18:682 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryByDateUsingPOST_1
  4069. 16:07:18:685 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: abnormalTerminalTrendUsingPOST_1
  4070. 16:07:18:687 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: caseRateTrendUsingPOST_1
  4071. 16:07:18:691 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: batchDispatchUsingPOST_1
  4072. 16:07:18:693 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: processTaskUsingPOST_1
  4073. 16:07:18:699 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_2
  4074. 16:07:18:699 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_3
  4075. 16:07:18:701 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_60
  4076. 16:07:18:701 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_61
  4077. 16:07:18:705 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllImeiCardNumbersUsingGET_1
  4078. 16:07:18:705 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataByImeiUsingGET_1
  4079. 16:07:18:706 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getOverallStatisticsUsingGET_1
  4080. 16:07:18:707 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryAlarmDataUsingGET_1
  4081. 16:07:18:708 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_4
  4082. 16:07:18:708 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_5
  4083. 16:07:18:709 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statAlarmTrendByHourUsingGET_1
  4084. 16:07:18:709 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statManholeByDeviceUsingGET_1
  4085. 16:07:18:710 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statTemperatureTrendByHourUsingGET_1
  4086. 16:07:18:714 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveWarningThresholdUsingPOST_2
  4087. 16:07:18:714 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveWarningThresholdUsingPOST_3
  4088. 16:07:18:716 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateDeviceStatusUsingPOST_1
  4089. 16:07:18:725 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_4
  4090. 16:07:18:725 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_5
  4091. 16:07:18:727 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_62
  4092. 16:07:18:727 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_63
  4093. 16:07:18:730 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getManholeDataListUsingPOST_1
  4094. 16:07:18:733 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: countByTypeUsingPOST_1
  4095. 16:07:18:734 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_1
  4096. 16:07:18:737 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_44
  4097. 16:07:18:738 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_45
  4098. 16:07:18:738 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_4
  4099. 16:07:18:739 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_5
  4100. 16:07:18:739 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_8
  4101. 16:07:18:739 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_9
  4102. 16:07:18:740 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_48
  4103. 16:07:18:740 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_49
  4104. 16:07:18:740 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_64
  4105. 16:07:18:741 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_65
  4106. 16:07:18:741 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_10
  4107. 16:07:18:741 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_11
  4108. 16:07:18:742 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPointDetailUsingGET_1
  4109. 16:07:18:742 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPointsByNetworkUsingGET_1
  4110. 16:07:18:744 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_58
  4111. 16:07:18:744 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_59
  4112. 16:07:18:745 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_8
  4113. 16:07:18:745 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_9
  4114. 16:07:18:745 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: unbindEquipmentUsingPOST_1
  4115. 16:07:18:746 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_42
  4116. 16:07:18:746 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_43
  4117. 16:07:18:748 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllDeviceCodesUsingGET_1
  4118. 16:07:18:749 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataByDeviceUsingGET_1
  4119. 16:07:18:750 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryAbnormalDataUsingGET_1
  4120. 16:07:18:750 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_6
  4121. 16:07:18:751 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_7
  4122. 16:07:18:751 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statPowerByDeviceUsingGET_1
  4123. 16:07:18:752 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statPowerTrendByHourUsingGET_1
  4124. 16:07:18:754 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_46
  4125. 16:07:18:754 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_47
  4126. 16:07:18:755 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_10
  4127. 16:07:18:755 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_11
  4128. 16:07:18:756 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_50
  4129. 16:07:18:756 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_51
  4130. 16:07:18:756 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_66
  4131. 16:07:18:757 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_67
  4132. 16:07:18:757 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_12
  4133. 16:07:18:757 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_13
  4134. 16:07:18:758 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_60
  4135. 16:07:18:758 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_61
  4136. 16:07:18:759 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_10
  4137. 16:07:18:759 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_11
  4138. 16:07:18:760 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_44
  4139. 16:07:18:760 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_45
  4140. 16:07:18:764 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_10
  4141. 16:07:18:764 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_11
  4142. 16:07:18:765 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_6
  4143. 16:07:18:765 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_7
  4144. 16:07:18:766 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: boundEquipmentIdsUsingGET_2
  4145. 16:07:18:766 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: boundEquipmentIdsUsingGET_3
  4146. 16:07:18:766 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingDELETE_4
  4147. 16:07:18:767 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingDELETE_5
  4148. 16:07:18:767 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_52
  4149. 16:07:18:767 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_53
  4150. 16:07:18:768 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_68
  4151. 16:07:18:768 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_69
  4152. 16:07:18:768 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_14
  4153. 16:07:18:768 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_15
  4154. 16:07:18:770 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_62
  4155. 16:07:18:770 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_63
  4156. 16:07:18:771 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_10
  4157. 16:07:18:771 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_11
  4158. 16:07:18:773 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: dispatchUsingPOST_2
  4159. 16:07:18:773 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: dispatchUsingPOST_3
  4160. 16:07:18:774 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: equipmentUsingGET_2
  4161. 16:07:18:774 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: equipmentUsingGET_3
  4162. 16:07:18:775 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: historyUsingGET_2
  4163. 16:07:18:775 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: historyUsingGET_3
  4164. 16:07:18:775 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resolveUsingPUT_2
  4165. 16:07:18:775 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resolveUsingPUT_3
  4166. 16:07:18:776 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statsUsingGET_4
  4167. 16:07:18:776 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statsUsingGET_5
  4168. 16:07:18:777 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getHistoryUsingGET_1
  4169. 16:07:18:778 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPointsUsingGET_2
  4170. 16:07:18:778 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPointsUsingGET_3
  4171. 16:07:18:779 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendUsingGET_6
  4172. 16:07:18:779 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendUsingGET_7
  4173. 16:07:18:782 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportPressureMonitorDataUsingGET_1
  4174. 16:07:18:783 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPressureMonitorPageUsingGET_1
  4175. 16:07:18:784 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPressureTrend24hUsingGET_1
  4176. 16:07:18:786 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllDeviceCodesUsingGET_2
  4177. 16:07:18:786 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllDeviceCodesUsingGET_3
  4178. 16:07:18:786 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_6
  4179. 16:07:18:787 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_7
  4180. 16:07:18:787 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataByDeviceUsingGET_2
  4181. 16:07:18:787 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataByDeviceUsingGET_3
  4182. 16:07:18:788 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryAbnormalDataUsingGET_2
  4183. 16:07:18:788 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryAbnormalDataUsingGET_3
  4184. 16:07:18:789 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_8
  4185. 16:07:18:790 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_9
  4186. 16:07:18:790 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statFlowTrendByHourUsingGET_1
  4187. 16:07:18:791 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statRadarByDeviceUsingGET_1
  4188. 16:07:18:792 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getFlowHistoryUsingGET_1
  4189. 16:07:18:793 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getGasAlarmLatestUsingGET_1
  4190. 16:07:18:794 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPointsWithLatestDataUsingGET_1
  4191. 16:07:18:794 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPressureHistoryUsingGET_1
  4192. 16:07:18:795 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getVideoListUsingGET_1
  4193. 16:07:18:796 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_54
  4194. 16:07:18:796 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_55
  4195. 16:07:18:798 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_48
  4196. 16:07:18:799 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_49
  4197. 16:07:18:799 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_70
  4198. 16:07:18:799 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_71
  4199. 16:07:18:800 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getFourColorMapUsingGET_1
  4200. 16:07:18:802 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_64
  4201. 16:07:18:802 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_65
  4202. 16:07:18:803 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_46
  4203. 16:07:18:803 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_47
  4204. 16:07:18:804 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_2
  4205. 16:07:18:804 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_3
  4206. 16:07:18:807 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_1
  4207. 16:07:18:808 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_1
  4208. 16:07:18:809 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getConfigKeyUsingGET_1
  4209. 16:07:18:809 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_4
  4210. 16:07:18:809 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_5
  4211. 16:07:18:810 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: refreshCacheUsingDELETE_1
  4212. 16:07:18:810 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_1
  4213. 16:07:18:814 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_16
  4214. 16:07:18:815 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_17
  4215. 16:07:18:816 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_2
  4216. 16:07:18:816 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_3
  4217. 16:07:18:819 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_2
  4218. 16:07:18:819 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_3
  4219. 16:07:18:820 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_2
  4220. 16:07:18:820 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_3
  4221. 16:07:18:821 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: excludeChildUsingGET_1
  4222. 16:07:18:821 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_6
  4223. 16:07:18:822 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_7
  4224. 16:07:18:826 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_18
  4225. 16:07:18:826 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_19
  4226. 16:07:18:826 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_2
  4227. 16:07:18:826 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_3
  4228. 16:07:18:829 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_4
  4229. 16:07:18:830 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_5
  4230. 16:07:18:830 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: dictTypeUsingGET_1
  4231. 16:07:18:831 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_4
  4232. 16:07:18:831 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_5
  4233. 16:07:18:831 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_8
  4234. 16:07:18:831 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_9
  4235. 16:07:18:832 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_4
  4236. 16:07:18:832 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_5
  4237. 16:07:18:834 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_20
  4238. 16:07:18:835 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_21
  4239. 16:07:18:835 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_4
  4240. 16:07:18:836 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_5
  4241. 16:07:18:838 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_6
  4242. 16:07:18:839 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_7
  4243. 16:07:18:839 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_6
  4244. 16:07:18:839 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_7
  4245. 16:07:18:840 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_10
  4246. 16:07:18:840 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_11
  4247. 16:07:18:840 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionselectUsingGET_1
  4248. 16:07:18:841 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: refreshCacheUsingDELETE_2
  4249. 16:07:18:841 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: refreshCacheUsingDELETE_3
  4250. 16:07:18:841 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_6
  4251. 16:07:18:841 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_7
  4252. 16:07:18:843 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_22
  4253. 16:07:18:844 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_23
  4254. 16:07:18:844 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_6
  4255. 16:07:18:845 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_7
  4256. 16:07:18:845 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingGET_1
  4257. 16:07:18:845 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingHEAD_1
  4258. 16:07:18:845 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingPOST_1
  4259. 16:07:18:846 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingPUT_1
  4260. 16:07:18:846 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingPATCH_1
  4261. 16:07:18:846 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingDELETE_1
  4262. 16:07:18:846 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingOPTIONS_1
  4263. 16:07:18:846 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingTRACE_1
  4264. 16:07:18:847 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_12
  4265. 16:07:18:847 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_13
  4266. 16:07:18:848 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getRoutersUsingGET_1
  4267. 16:07:18:849 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: loginUsingPOST_1
  4268. 16:07:18:849 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: loginNoNeedAuthUsingPOST_1
  4269. 16:07:18:851 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: cleanUsingDELETE_1
  4270. 16:07:18:851 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_8
  4271. 16:07:18:851 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_9
  4272. 16:07:18:852 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: unlockUsingGET_1
  4273. 16:07:18:855 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_24
  4274. 16:07:18:855 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_25
  4275. 16:07:18:856 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_8
  4276. 16:07:18:856 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_9
  4277. 16:07:18:859 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_8
  4278. 16:07:18:859 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_9
  4279. 16:07:18:860 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_8
  4280. 16:07:18:860 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_9
  4281. 16:07:18:860 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_14
  4282. 16:07:18:860 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_15
  4283. 16:07:18:863 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_26
  4284. 16:07:18:864 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_27
  4285. 16:07:18:865 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_10
  4286. 16:07:18:865 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_11
  4287. 16:07:18:865 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: roleMenuTreeselectUsingGET_1
  4288. 16:07:18:866 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: treeselectUsingGET_1
  4289. 16:07:18:868 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_10
  4290. 16:07:18:868 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_11
  4291. 16:07:18:869 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_10
  4292. 16:07:18:869 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_11
  4293. 16:07:18:870 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_16
  4294. 16:07:18:870 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_17
  4295. 16:07:18:870 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_12
  4296. 16:07:18:870 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_13
  4297. 16:07:18:873 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_28
  4298. 16:07:18:873 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_29
  4299. 16:07:18:874 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: cleanUsingDELETE_2
  4300. 16:07:18:874 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: cleanUsingDELETE_3
  4301. 16:07:18:875 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_14
  4302. 16:07:18:875 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_15
  4303. 16:07:18:878 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_30
  4304. 16:07:18:878 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_31
  4305. 16:07:18:879 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_10
  4306. 16:07:18:879 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_11
  4307. 16:07:18:881 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_12
  4308. 16:07:18:881 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_13
  4309. 16:07:18:882 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_12
  4310. 16:07:18:882 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_13
  4311. 16:07:18:882 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_18
  4312. 16:07:18:882 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_19
  4313. 16:07:18:883 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionselectUsingGET_2
  4314. 16:07:18:883 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionselectUsingGET_3
  4315. 16:07:18:883 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_16
  4316. 16:07:18:883 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_17
  4317. 16:07:18:886 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_32
  4318. 16:07:18:887 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_33
  4319. 16:07:18:887 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_12
  4320. 16:07:18:887 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_13
  4321. 16:07:18:889 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: avatarUsingPOST_1
  4322. 16:07:18:889 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: profileUsingGET_1
  4323. 16:07:18:895 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateProfileUsingPUT_1
  4324. 16:07:18:896 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updatePwdUsingPUT_1
  4325. 16:07:18:897 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: registerUsingPOST_1
  4326. 16:07:18:899 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_14
  4327. 16:07:18:900 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_15
  4328. 16:07:18:901 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: cancelAuthUserUsingPUT_1
  4329. 16:07:18:901 WARN 28152 --- [restartedMain] s.d.s.w.r.p.ParameterDataTypeReader : Trying to infer dataType java.lang.Long[]
  4330. 16:07:18:901 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: cancelAuthUserAllUsingPUT_1
  4331. 16:07:18:902 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: changeStatusUsingPUT_1
  4332. 16:07:18:903 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: dataScopeUsingPUT_1
  4333. 16:07:18:903 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deptTreeUsingGET_1
  4334. 16:07:18:904 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_14
  4335. 16:07:18:904 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_15
  4336. 16:07:18:904 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_20
  4337. 16:07:18:905 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_21
  4338. 16:07:18:905 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionselectUsingGET_4
  4339. 16:07:18:905 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionselectUsingGET_5
  4340. 16:07:18:906 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_18
  4341. 16:07:18:906 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_19
  4342. 16:07:18:906 WARN 28152 --- [restartedMain] s.d.s.w.r.p.ParameterDataTypeReader : Trying to infer dataType java.lang.Long[]
  4343. 16:07:18:906 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectAuthUserAllUsingPUT_1
  4344. 16:07:18:914 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: allocatedListUsingGET_1
  4345. 16:07:18:915 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_34
  4346. 16:07:18:915 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_35
  4347. 16:07:18:917 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: unallocatedListUsingGET_1
  4348. 16:07:18:919 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_14
  4349. 16:07:18:919 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_15
  4350. 16:07:18:922 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_16
  4351. 16:07:18:922 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_17
  4352. 16:07:18:923 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: authRoleUsingGET_1
  4353. 16:07:18:924 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: changeStatusUsingPUT_2
  4354. 16:07:18:924 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: changeStatusUsingPUT_3
  4355. 16:07:18:925 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deptTreeUsingGET_2
  4356. 16:07:18:926 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deptTreeUsingGET_3
  4357. 16:07:18:926 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_16
  4358. 16:07:18:927 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_17
  4359. 16:07:18:927 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_22
  4360. 16:07:18:927 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_23
  4361. 16:07:18:928 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_24
  4362. 16:07:18:928 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_25
  4363. 16:07:18:928 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: importDataUsingPOST_1
  4364. 16:07:18:929 WARN 28152 --- [restartedMain] s.d.s.w.r.p.ParameterDataTypeReader : Trying to infer dataType java.lang.Long[]
  4365. 16:07:18:929 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: insertAuthRoleUsingPUT_1
  4366. 16:07:18:929 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_20
  4367. 16:07:18:930 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_21
  4368. 16:07:18:931 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resetPwdUsingPUT_1
  4369. 16:07:18:933 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_36
  4370. 16:07:18:933 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_37
  4371. 16:07:18:935 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_16
  4372. 16:07:18:935 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_17
  4373. 16:07:18:935 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: importTemplateUsingPOST_1
  4374. 16:07:18:937 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: forceLogoutUsingDELETE_1
  4375. 16:07:18:938 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_38
  4376. 16:07:18:938 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_39
  4377. 16:07:18:941 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllDeviceCodesUsingGET_4
  4378. 16:07:18:941 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllDeviceCodesUsingGET_5
  4379. 16:07:18:941 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_8
  4380. 16:07:18:941 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_9
  4381. 16:07:18:942 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataByDeviceUsingGET_4
  4382. 16:07:18:942 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataByDeviceUsingGET_5
  4383. 16:07:18:943 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryAbnormalDataUsingGET_4
  4384. 16:07:18:943 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryAbnormalDataUsingGET_5
  4385. 16:07:18:943 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_10
  4386. 16:07:18:944 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_11
  4387. 16:07:18:944 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statTelemetryByDeviceUsingGET_1
  4388. 16:07:18:945 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statTelemetryTrendByHourUsingGET_1
  4389. 16:07:18:947 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleFaultUsingPOST_1
  4390. 16:07:18:952 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_6
  4391. 16:07:18:952 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_7
  4392. 16:07:18:954 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_72
  4393. 16:07:18:954 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_73
  4394. 16:07:18:958 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getUserUsingGET_1
  4395. 16:07:18:959 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_4
  4396. 16:07:18:959 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_5
  4397. 16:07:18:963 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_66
  4398. 16:07:18:963 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_67
  4399. 16:07:18:964 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_12
  4400. 16:07:18:965 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_13
  4401. 16:07:18:966 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: userListUsingGET_1
  4402. 16:07:18:970 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addWarningItemUsingPOST_1
  4403. 16:07:18:971 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: generateItemCodeUsingGET_1
  4404. 16:07:18:972 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getItemDetailUsingGET_1
  4405. 16:07:18:973 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryWarningItemsUsingGET_1
  4406. 16:07:18:973 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateItemStatusUsingPUT_1
  4407. 16:07:18:974 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateWarningItemUsingPUT_1
  4408. 16:07:18:978 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addWarningReasonUsingPOST_1
  4409. 16:07:18:978 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getReasonDetailUsingGET_1
  4410. 16:07:18:979 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getReasonsByTypeAndLevelUsingGET_1
  4411. 16:07:18:980 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryWarningReasonsUsingGET_1
  4412. 16:07:18:981 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateReasonStatusUsingPUT_1
  4413. 16:07:18:982 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateWarningReasonUsingPUT_1
  4414. 16:07:18:983 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_2
  4415. 16:07:18:983 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_3
  4416. 16:07:18:984 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_50
  4417. 16:07:18:984 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_51
  4418. 16:07:18:985 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_74
  4419. 16:07:18:985 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_75
  4420. 16:07:18:986 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getWarningThresholdListUsingGET_1
  4421. 16:07:18:988 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_68
  4422. 16:07:18:988 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_69
  4423. 16:07:18:989 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_6
  4424. 16:07:18:989 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_7
  4425. 16:07:18:991 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllDeviceCodesUsingGET_6
  4426. 16:07:18:991 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllDeviceCodesUsingGET_7
  4427. 16:07:18:992 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataByDeviceUsingGET_6
  4428. 16:07:18:992 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataByDeviceUsingGET_7
  4429. 16:07:18:992 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_12
  4430. 16:07:18:993 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_13
  4431. 16:07:18:994 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectOverLimitDataUsingGET_1
  4432. 16:07:18:995 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsByDeviceUsingGET_1
  4433. 16:07:18:995 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsOnlineDeviceUsingGET_1
  4434. 16:07:19:000 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_18
  4435. 16:07:19:000 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_19
  4436. 16:07:19:001 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_1
  4437. 16:07:19:001 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_76
  4438. 16:07:19:002 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_77
  4439. 16:07:19:002 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestPipeUsingGET_1
  4440. 16:07:19:002 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getOverallStatisticsUsingGET_2
  4441. 16:07:19:003 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getOverallStatisticsUsingGET_3
  4442. 16:07:19:003 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_12
  4443. 16:07:19:004 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_13
  4444. 16:07:19:005 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_1
  4445. 16:07:19:006 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_22
  4446. 16:07:19:006 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_23
  4447. 16:07:19:010 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_1
  4448. 16:07:19:010 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statPipeByMaterialUsingGET_1
  4449. 16:07:19:011 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statPipeByStatusUsingGET_1
  4450. 16:07:19:012 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_14
  4451. 16:07:19:012 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_15
  4452. 16:07:19:017 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_20
  4453. 16:07:19:017 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_21
  4454. 16:07:19:017 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_2
  4455. 16:07:19:018 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_3
  4456. 16:07:19:018 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_78
  4457. 16:07:19:018 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_79
  4458. 16:07:19:019 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_14
  4459. 16:07:19:019 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_15
  4460. 16:07:19:020 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_2
  4461. 16:07:19:020 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_3
  4462. 16:07:19:021 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_24
  4463. 16:07:19:021 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_25
  4464. 16:07:19:021 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_2
  4465. 16:07:19:022 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_3
  4466. 16:07:19:022 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_16
  4467. 16:07:19:023 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_17
  4468. 16:07:19:027 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_22
  4469. 16:07:19:027 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_23
  4470. 16:07:19:028 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_4
  4471. 16:07:19:028 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_5
  4472. 16:07:19:029 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_80
  4473. 16:07:19:029 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_81
  4474. 16:07:19:030 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_16
  4475. 16:07:19:030 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_17
  4476. 16:07:19:031 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_4
  4477. 16:07:19:031 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_5
  4478. 16:07:19:031 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_26
  4479. 16:07:19:031 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_27
  4480. 16:07:19:032 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_4
  4481. 16:07:19:032 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_5
  4482. 16:07:19:033 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_18
  4483. 16:07:19:033 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_19
  4484. 16:07:19:039 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_24
  4485. 16:07:19:039 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_25
  4486. 16:07:19:039 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_6
  4487. 16:07:19:040 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_7
  4488. 16:07:19:040 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_82
  4489. 16:07:19:040 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_83
  4490. 16:07:19:041 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_18
  4491. 16:07:19:041 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_19
  4492. 16:07:19:042 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_6
  4493. 16:07:19:042 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_7
  4494. 16:07:19:043 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_28
  4495. 16:07:19:043 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_29
  4496. 16:07:19:043 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_6
  4497. 16:07:19:044 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_7
  4498. 16:07:19:044 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_20
  4499. 16:07:19:045 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_21
  4500. 16:07:19:049 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_26
  4501. 16:07:19:049 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_27
  4502. 16:07:19:049 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_8
  4503. 16:07:19:050 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_9
  4504. 16:07:19:050 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_84
  4505. 16:07:19:050 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_85
  4506. 16:07:19:051 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_20
  4507. 16:07:19:051 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_21
  4508. 16:07:19:052 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_8
  4509. 16:07:19:052 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_9
  4510. 16:07:19:053 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_30
  4511. 16:07:19:053 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_31
  4512. 16:07:19:053 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_8
  4513. 16:07:19:054 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_9
  4514. 16:07:19:054 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_22
  4515. 16:07:19:055 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_23
  4516. 16:07:19:058 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_14
  4517. 16:07:19:058 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_15
  4518. 16:07:19:059 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_8
  4519. 16:07:19:059 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_9
  4520. 16:07:19:060 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingDELETE_6
  4521. 16:07:19:060 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingDELETE_7
  4522. 16:07:19:060 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_56
  4523. 16:07:19:060 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_57
  4524. 16:07:19:061 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_86
  4525. 16:07:19:061 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_87
  4526. 16:07:19:061 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_40
  4527. 16:07:19:061 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_41
  4528. 16:07:19:063 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_70
  4529. 16:07:19:063 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_71
  4530. 16:07:19:064 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_24
  4531. 16:07:19:064 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_25
  4532. 16:07:19:067 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addWorkOrderUsingPOST_1
  4533. 16:07:19:069 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: operWorkOrderUsingPOST_1
  4534. 16:07:19:075 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_8
  4535. 16:07:19:076 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_9
  4536. 16:07:19:091 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findFinishedPageUsingPOST_1
  4537. 16:07:19:094 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findProcessingPageUsingPOST_1
  4538. 16:07:19:095 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_88
  4539. 16:07:19:095 INFO 28152 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_89
  4540. 16:07:19:100 INFO 28152 --- [restartedMain] o.s.s.quartz.SchedulerFactoryBean : Starting Quartz Scheduler now
  4541. 16:07:19:100 INFO 28152 --- [restartedMain] org.quartz.core.QuartzScheduler : Scheduler quartzScheduler_$_NON_CLUSTERED started.
  4542. 16:07:19:108 INFO 28152 --- [restartedMain] com.zksy.ZksyApplication : Started ZksyApplication in 17.959 seconds (JVM running for 19.967)
  4543. 16:07:19:115 INFO 28152 --- [restartedMain] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=pipe-network-service.yaml, group=DEFAULT_GROUP
  4544. 16:07:19:116 INFO 28152 --- [restartedMain] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=pipe-network-service-dev.yaml, group=DEFAULT_GROUP
  4545. 16:07:19:116 INFO 28152 --- [restartedMain] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=pipe-network-service, group=DEFAULT_GROUP
  4546. 16:09:42:111 WARN 28152 --- [Thread-8] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  4547. 16:09:42:111 WARN 28152 --- [Thread-4] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  4548. 16:09:42:111 WARN 28152 --- [Thread-8] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  4549. 16:09:42:112 WARN 28152 --- [Thread-4] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  4550. 16:09:42:114 INFO 28152 --- [SpringApplicationShutdownHook] org.quartz.core.QuartzScheduler : Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  4551. 16:09:42:545 INFO 28152 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  4552. 16:09:42:549 INFO 28152 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  4553. 16:09:42:858 INFO 28152 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  4554. 16:09:42:858 INFO 28152 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@11328e2[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  4555. 16:09:42:858 INFO 28152 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1784621237094_192.168.110.235_63768
  4556. 16:09:42:859 INFO 28152 --- [nacos-grpc-client-executor-43] c.a.n.c.remote.client.grpc.GrpcClient : [1784621237094_192.168.110.235_63768]Ignore complete event,isRunning:false,isAbandon=false
  4557. 16:09:42:862 INFO 28152 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@296db7f3[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 44]
  4558. 16:09:42:869 INFO 28152 --- [SpringApplicationShutdownHook] o.s.s.quartz.SchedulerFactoryBean : Shutting down Quartz Scheduler
  4559. 16:09:42:869 INFO 28152 --- [SpringApplicationShutdownHook] org.quartz.core.QuartzScheduler : Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  4560. 16:09:42:869 INFO 28152 --- [SpringApplicationShutdownHook] org.quartz.core.QuartzScheduler : Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  4561. 16:09:42:869 INFO 28152 --- [SpringApplicationShutdownHook] org.quartz.core.QuartzScheduler : Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  4562. 16:09:42:869 INFO 28152 --- [SpringApplicationShutdownHook] sys-user : ====关闭后台任务任务线程池====
  4563. 16:09:42:870 WARN 28152 --- [SpringApplicationShutdownHook] .s.c.a.CommonAnnotationBeanPostProcessor : Destroy method on bean with name 'shutdownManager' threw an exception: java.lang.ExceptionInInitializerError
  4564. 16:09:42:875 INFO 28152 --- [SpringApplicationShutdownHook] com.alibaba.druid.pool.DruidDataSource : {dataSource-1} closing ...
  4565. 16:09:42:879 INFO 28152 --- [SpringApplicationShutdownHook] com.alibaba.druid.pool.DruidDataSource : {dataSource-1} closed
  4566. 16:10:41:047 INFO 28952 --- [restartedMain] com.zksy.ZksyApplication : The following 1 profile is active: "dev"
  4567. 16:10:42:422 INFO 28952 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode!
  4568. 16:10:42:424 INFO 28952 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  4569. 16:10:42:534 INFO 28952 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 95 ms. Found 0 Redis repository interfaces.
  4570. 16:10:42:866 INFO 28952 --- [restartedMain] o.s.cloud.context.scope.GenericScope : BeanFactory id=3c481e74-3e90-36f2-b128-9d5c934cbba4
  4571. 16:10:43:822 INFO 28952 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8301 (http)
  4572. 16:10:43:837 INFO 28952 --- [restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  4573. 16:10:43:838 INFO 28952 --- [restartedMain] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.106]
  4574. 16:10:43:856 WARN 28952 --- [restartedMain] o.a.c.webresources.DirResourceSet : Disabled the global canonical file name cache to protect against CVE-2024-56337 when starting the WebResourceSet at [C:\Users\Administrator\AppData\Local\Temp\tomcat-docbase.8301.17619740227659837140] which is part of the web application []
  4575. 16:10:43:988 INFO 28952 --- [restartedMain] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  4576. 16:10:43:988 INFO 28952 --- [restartedMain] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 2932 ms
  4577. 16:10:44:520 DEBUG 28952 --- [restartedMain] c.z.f.s.f.JwtAuthenticationTokenFilter : Filter 'jwtAuthenticationTokenFilter' configured for use
  4578. 16:10:45:160 INFO 28952 --- [restartedMain] com.alibaba.druid.pool.DruidDataSource : {dataSource-1} inited
  4579. 16:10:45:925 WARN 28952 --- [restartedMain] c.b.m.core.injector.DefaultSqlInjector : class com.zksy.base.domain.AlarmAssignDetail ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method.
  4580. 16:10:45:938 WARN 28952 --- [restartedMain] c.b.m.core.injector.DefaultSqlInjector : class com.zksy.base.domain.AlarmAssignList ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method.
  4581. 16:10:52:633 INFO 28952 --- [restartedMain] c.a.c.sentinel.SentinelWebMvcConfigurer : [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
  4582. 16:10:53:162 INFO 28952 --- [restartedMain] c.z.s.impl.MinioFileStorageServiceImpl : 初始化MinIO成功
  4583. 16:10:53:509 INFO 28952 --- [restartedMain] org.quartz.impl.StdSchedulerFactory : Using default implementation for ThreadExecutor
  4584. 16:10:53:522 INFO 28952 --- [restartedMain] org.quartz.core.SchedulerSignalerImpl : Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  4585. 16:10:53:522 INFO 28952 --- [restartedMain] org.quartz.core.QuartzScheduler : Quartz Scheduler v.2.3.2 created.
  4586. 16:10:53:523 INFO 28952 --- [restartedMain] org.quartz.simpl.RAMJobStore : RAMJobStore initialized.
  4587. 16:10:53:524 INFO 28952 --- [restartedMain] org.quartz.core.QuartzScheduler : Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  4588. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  4589. NOT STARTED.
  4590. Currently in standby mode.
  4591. Number of jobs executed: 0
  4592. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  4593. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  4594. 16:10:53:524 INFO 28952 --- [restartedMain] org.quartz.impl.StdSchedulerFactory : Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  4595. 16:10:53:524 INFO 28952 --- [restartedMain] org.quartz.impl.StdSchedulerFactory : Quartz scheduler version: 2.3.2
  4596. 16:10:53:524 INFO 28952 --- [restartedMain] org.quartz.core.QuartzScheduler : JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@2b1964b3
  4597. 16:10:53:632 INFO 28952 --- [restartedMain] c.z.s.impl.MinioFileStorageServiceImpl : 初始化MinIO成功
  4598. 16:10:54:338 INFO 28952 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.session.DisableEncodeUrlFilter@ab886f4, org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@78770b6e, org.springframework.security.web.context.SecurityContextPersistenceFilter@203a24fc, org.springframework.security.web.header.HeaderWriterFilter@7a7f9bca, org.springframework.web.filter.CorsFilter@675b17b4, org.springframework.security.web.authentication.logout.LogoutFilter@5b874d2f, org.springframework.web.filter.CorsFilter@675b17b4, com.zksy.framework.security.filter.JwtAuthenticationTokenFilter@59aa47a7, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@58f0b778, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@ef4d3ec, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@c0aa0f9, org.springframework.security.web.session.SessionManagementFilter@44a26d4e, org.springframework.security.web.access.ExceptionTranslationFilter@4c21622c, org.springframework.security.web.access.intercept.AuthorizationFilter@785ba233]
  4599. 16:10:54:788 INFO 28952 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729
  4600. 16:10:55:622 INFO 28952 --- [restartedMain] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  4601. 16:10:56:641 WARN 28952 --- [restartedMain] iguration$LoadBalancerCaffeineWarnLogger : Spring Cloud LoadBalancer is currently working with the default cache. While this cache implementation is useful for development and tests, it's recommended to use Caffeine cache in production.You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath.
  4602. 16:10:56:858 INFO 28952 --- [restartedMain] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of d05e5018-f6ac-496b-851b-173f7b19da19
  4603. 16:10:56:859 INFO 28952 --- [restartedMain] com.alibaba.nacos.common.remote.client : [d05e5018-f6ac-496b-851b-173f7b19da19] RpcClient init label, labels = {module=naming, source=sdk}
  4604. 16:10:56:861 INFO 28952 --- [restartedMain] com.alibaba.nacos.common.remote.client : [d05e5018-f6ac-496b-851b-173f7b19da19] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  4605. 16:10:56:861 INFO 28952 --- [restartedMain] com.alibaba.nacos.common.remote.client : [d05e5018-f6ac-496b-851b-173f7b19da19] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  4606. 16:10:56:862 INFO 28952 --- [restartedMain] com.alibaba.nacos.common.remote.client : [d05e5018-f6ac-496b-851b-173f7b19da19] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  4607. 16:10:56:863 INFO 28952 --- [restartedMain] com.alibaba.nacos.common.remote.client : [d05e5018-f6ac-496b-851b-173f7b19da19] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  4608. 16:10:56:982 INFO 28952 --- [restartedMain] com.alibaba.nacos.common.remote.client : [d05e5018-f6ac-496b-851b-173f7b19da19] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1784621456585_192.168.110.235_49421
  4609. 16:10:56:982 INFO 28952 --- [restartedMain] com.alibaba.nacos.common.remote.client : [d05e5018-f6ac-496b-851b-173f7b19da19] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  4610. 16:10:56:982 INFO 28952 --- [restartedMain] com.alibaba.nacos.common.remote.client : [d05e5018-f6ac-496b-851b-173f7b19da19] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$490/0x0000000800455840
  4611. 16:10:56:982 INFO 28952 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [d05e5018-f6ac-496b-851b-173f7b19da19] Notify connected event to listeners.
  4612. 16:10:57:024 INFO 28952 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8301 (http) with context path ''
  4613. 16:10:57:032 INFO 28952 --- [restartedMain] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP pipe-network-service 192.168.110.235:8301 register finished
  4614. 16:10:57:369 INFO 28952 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  4615. 16:10:57:372 INFO 28952 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  4616. 16:10:57:501 INFO 28952 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [d05e5018-f6ac-496b-851b-173f7b19da19] Receive server push request, request = NotifySubscriberRequest, requestId = 81
  4617. 16:10:57:504 INFO 28952 --- [nacos-grpc-client-executor-6] com.alibaba.nacos.common.remote.client : [d05e5018-f6ac-496b-851b-173f7b19da19] Ack server push request, request = NotifySubscriberRequest, requestId = 81
  4618. 16:10:57:514 INFO 28952 --- [restartedMain] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  4619. 16:10:57:570 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingPOST_1
  4620. 16:10:57:582 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_1
  4621. 16:10:57:584 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_1
  4622. 16:10:57:590 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_1
  4623. 16:10:57:597 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingPOST_2
  4624. 16:10:57:597 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingPOST_3
  4625. 16:10:57:600 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_2
  4626. 16:10:57:601 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_3
  4627. 16:10:57:602 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_2
  4628. 16:10:57:602 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_3
  4629. 16:10:57:611 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_1
  4630. 16:10:57:613 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_2
  4631. 16:10:57:614 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_3
  4632. 16:10:57:617 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_2
  4633. 16:10:57:618 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_3
  4634. 16:10:57:619 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getActivePointsUsingGET_1
  4635. 16:10:57:619 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_4
  4636. 16:10:57:620 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_5
  4637. 16:10:57:621 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingPUT_1
  4638. 16:10:57:624 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_1
  4639. 16:10:57:625 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_4
  4640. 16:10:57:626 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_5
  4641. 16:10:57:627 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAlarmDataListUsingGET_1
  4642. 16:10:57:628 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_6
  4643. 16:10:57:628 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_7
  4644. 16:10:57:651 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingPOST_1
  4645. 16:10:57:652 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_4
  4646. 16:10:57:652 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_5
  4647. 16:10:57:653 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_4
  4648. 16:10:57:653 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_5
  4649. 16:10:57:655 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: customAlarmUsingPOST_1
  4650. 16:10:57:656 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: simulateEnvironmentUsingGET_1
  4651. 16:10:57:657 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: simulateGasUsingGET_1
  4652. 16:10:57:657 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: simulateManholeUsingGET_1
  4653. 16:10:57:660 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: cacheUsingGET_1
  4654. 16:10:57:661 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: clearCacheAllUsingDELETE_1
  4655. 16:10:57:661 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: clearCacheKeyUsingDELETE_1
  4656. 16:10:57:662 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: clearCacheNameUsingDELETE_1
  4657. 16:10:57:663 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getCacheKeysUsingGET_1
  4658. 16:10:57:664 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getCacheValueUsingGET_1
  4659. 16:10:57:665 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_1
  4660. 16:10:57:666 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getCodeUsingGET_1
  4661. 16:10:57:670 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveWarningThresholdUsingPOST_1
  4662. 16:10:57:672 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: verifyCaseInfoUsingPOST_1
  4663. 16:10:57:681 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_1
  4664. 16:10:57:682 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_8
  4665. 16:10:57:683 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_9
  4666. 16:10:57:685 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: uploadFileUsingPOST_1
  4667. 16:10:57:685 WARN 28952 --- [restartedMain] s.d.s.w.r.p.ParameterDataTypeReader : Trying to infer dataType java.util.List<org.springframework.web.multipart.MultipartFile>
  4668. 16:10:57:686 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: uploadFilesUsingPOST_1
  4669. 16:10:57:687 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: fileDownloadUsingGET_1
  4670. 16:10:57:687 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resourceDownloadUsingGET_1
  4671. 16:10:57:689 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportAbnormalDevicesUsingPOST_1
  4672. 16:10:57:691 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAbnormalDevicePageUsingGET_1
  4673. 16:10:57:692 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAbnormalGisPointsUsingGET_1
  4674. 16:10:57:694 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAbnormalPointsUsingGET_1
  4675. 16:10:57:695 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllDevicePointsUsingGET_1
  4676. 16:10:57:696 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceDetailUsingGET_1
  4677. 16:10:57:696 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getGisStatisticsUsingGET_1
  4678. 16:10:57:699 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportDeviceLedgerUsingPOST_1
  4679. 16:10:57:699 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDevicePageUsingGET_1
  4680. 16:10:57:700 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getGisPointsUsingGET_1
  4681. 16:10:57:701 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTypeStatisticsUsingGET_1
  4682. 16:10:57:705 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: createMaintainOrderUsingPOST_1
  4683. 16:10:57:706 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteMaintainRecordUsingDELETE_1
  4684. 16:10:57:707 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportMaintainRecordsUsingPOST_1
  4685. 16:10:57:708 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getMaintainRecordListUsingGET_1
  4686. 16:10:57:709 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getMaintainRecordPageUsingGET_1
  4687. 16:10:57:711 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getMyMaintainRecordPageUsingGET_1
  4688. 16:10:57:711 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: importMaintainRecordsUsingPOST_1
  4689. 16:10:57:714 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveMaintainRecordUsingPOST_1
  4690. 16:10:57:715 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateMaintainRecordUsingPUT_1
  4691. 16:10:57:716 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_1
  4692. 16:10:57:722 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_6
  4693. 16:10:57:723 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_7
  4694. 16:10:57:723 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_10
  4695. 16:10:57:724 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_11
  4696. 16:10:57:724 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listByCategoryUsingGET_1
  4697. 16:10:57:726 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_6
  4698. 16:10:57:727 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_7
  4699. 16:10:57:727 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_1
  4700. 16:10:57:729 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_2
  4701. 16:10:57:729 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_3
  4702. 16:10:57:732 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_8
  4703. 16:10:57:732 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_9
  4704. 16:10:57:733 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_12
  4705. 16:10:57:733 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_13
  4706. 16:10:57:736 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_8
  4707. 16:10:57:737 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_9
  4708. 16:10:57:737 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_2
  4709. 16:10:57:737 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_3
  4710. 16:10:57:739 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: acceptUsingPUT_1
  4711. 16:10:57:739 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_4
  4712. 16:10:57:739 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_5
  4713. 16:10:57:742 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_10
  4714. 16:10:57:742 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_11
  4715. 16:10:57:743 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_14
  4716. 16:10:57:743 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_15
  4717. 16:10:57:744 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: rejectUsingPUT_1
  4718. 16:10:57:747 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_10
  4719. 16:10:57:747 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_11
  4720. 16:10:57:748 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_4
  4721. 16:10:57:748 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_5
  4722. 16:10:57:751 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addTrackLogUsingPOST_1
  4723. 16:10:57:752 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: closeUsingPUT_1
  4724. 16:10:57:753 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_6
  4725. 16:10:57:753 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_7
  4726. 16:10:57:755 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_12
  4727. 16:10:57:756 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_13
  4728. 16:10:57:756 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_16
  4729. 16:10:57:756 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_17
  4730. 16:10:57:757 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrackLogsUsingGET_1
  4731. 16:10:57:758 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: releaseUsingPUT_1
  4732. 16:10:57:760 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_12
  4733. 16:10:57:761 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_13
  4734. 16:10:57:761 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_6
  4735. 16:10:57:761 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_7
  4736. 16:10:57:763 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_8
  4737. 16:10:57:763 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_9
  4738. 16:10:57:765 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: doReportUsingPUT_1
  4739. 16:10:57:768 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: doTransferUsingPUT_1
  4740. 16:10:57:771 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_14
  4741. 16:10:57:771 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_15
  4742. 16:10:57:772 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_18
  4743. 16:10:57:772 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_19
  4744. 16:10:57:773 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTransferLogsUsingGET_1
  4745. 16:10:57:773 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_14
  4746. 16:10:57:773 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_15
  4747. 16:10:57:774 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_8
  4748. 16:10:57:774 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_9
  4749. 16:10:57:776 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: closeUrgeUsingPUT_1
  4750. 16:10:57:776 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_10
  4751. 16:10:57:777 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_11
  4752. 16:10:57:779 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: doUrgeUsingPOST_1
  4753. 16:10:57:781 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_16
  4754. 16:10:57:781 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_17
  4755. 16:10:57:782 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_20
  4756. 16:10:57:782 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_21
  4757. 16:10:57:783 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getUrgeDetailsUsingGET_1
  4758. 16:10:57:785 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_16
  4759. 16:10:57:785 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_17
  4760. 16:10:57:786 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_10
  4761. 16:10:57:786 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_11
  4762. 16:10:57:787 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_12
  4763. 16:10:57:788 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_13
  4764. 16:10:57:790 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_18
  4765. 16:10:57:791 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_19
  4766. 16:10:57:791 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_22
  4767. 16:10:57:791 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_23
  4768. 16:10:57:794 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_18
  4769. 16:10:57:794 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_19
  4770. 16:10:57:795 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_12
  4771. 16:10:57:795 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_13
  4772. 16:10:57:796 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: verifyUsingPUT_1
  4773. 16:10:57:798 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: approveUsingPUT_1
  4774. 16:10:57:798 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_14
  4775. 16:10:57:799 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_15
  4776. 16:10:57:801 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_20
  4777. 16:10:57:801 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_21
  4778. 16:10:57:802 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_24
  4779. 16:10:57:802 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_25
  4780. 16:10:57:803 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: publishUsingPUT_1
  4781. 16:10:57:803 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: rejectUsingPUT_2
  4782. 16:10:57:804 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: rejectUsingPUT_3
  4783. 16:10:57:806 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_20
  4784. 16:10:57:806 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_21
  4785. 16:10:57:807 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: submitForApprovalUsingPUT_1
  4786. 16:10:57:807 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: submitFromPlanUsingPOST_1
  4787. 16:10:57:808 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_14
  4788. 16:10:57:808 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_15
  4789. 16:10:57:810 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_16
  4790. 16:10:57:810 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_17
  4791. 16:10:57:812 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_22
  4792. 16:10:57:812 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_23
  4793. 16:10:57:813 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_26
  4794. 16:10:57:813 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_27
  4795. 16:10:57:814 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listByApprovalIdUsingGET_1
  4796. 16:10:57:816 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_22
  4797. 16:10:57:816 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_23
  4798. 16:10:57:816 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_16
  4799. 16:10:57:817 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_17
  4800. 16:10:57:818 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_18
  4801. 16:10:57:818 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_19
  4802. 16:10:57:820 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_24
  4803. 16:10:57:821 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_25
  4804. 16:10:57:821 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_28
  4805. 16:10:57:822 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_29
  4806. 16:10:57:822 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getCategoryTreeUsingGET_1
  4807. 16:10:57:824 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_24
  4808. 16:10:57:824 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_25
  4809. 16:10:57:825 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_18
  4810. 16:10:57:826 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_19
  4811. 16:10:57:837 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: maintainPageUsingGET_1
  4812. 16:10:57:839 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pointRelPageUsingGET_1
  4813. 16:10:57:842 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statusPageUsingGET_1
  4814. 16:10:57:847 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: testPageUsingGET_1
  4815. 16:10:57:849 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: typePageUsingGET_1
  4816. 16:10:57:856 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: basePageUsingGET_1
  4817. 16:10:57:857 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: baseDeleteUsingDELETE_1
  4818. 16:10:57:858 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: baseDeleteBatchUsingDELETE_1
  4819. 16:10:57:859 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: baseGetByIdUsingGET_1
  4820. 16:10:57:859 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: baseListUsingGET_1
  4821. 16:10:57:863 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: baseSaveUsingPOST_1
  4822. 16:10:57:864 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: baseUpdateUsingPUT_1
  4823. 16:10:57:864 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: maintainDeleteUsingDELETE_1
  4824. 16:10:57:865 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: maintainDeleteBatchUsingDELETE_1
  4825. 16:10:57:866 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: maintainGetByIdUsingGET_1
  4826. 16:10:57:867 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: maintainSaveUsingPOST_1
  4827. 16:10:57:868 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: maintainUpdateUsingPUT_1
  4828. 16:10:57:869 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pointRelByEquipmentUsingGET_1
  4829. 16:10:57:870 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pointRelByPointUsingGET_1
  4830. 16:10:57:871 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pointRelDeleteUsingDELETE_1
  4831. 16:10:57:871 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pointRelDeleteBatchUsingDELETE_1
  4832. 16:10:57:873 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pointRelSaveUsingPOST_1
  4833. 16:10:57:874 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pointRelSaveBatchUsingPOST_1
  4834. 16:10:57:875 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statusDeleteUsingDELETE_1
  4835. 16:10:57:876 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statusGetByIdUsingGET_1
  4836. 16:10:57:878 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statusSaveUsingPOST_1
  4837. 16:10:57:879 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statusUpdateUsingPUT_1
  4838. 16:10:57:880 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: testDeleteUsingDELETE_1
  4839. 16:10:57:880 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: testDeleteBatchUsingDELETE_1
  4840. 16:10:57:881 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: testGetByIdUsingGET_1
  4841. 16:10:57:883 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: testSaveUsingPOST_1
  4842. 16:10:57:884 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: testUpdateUsingPUT_1
  4843. 16:10:57:884 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: typeDeleteUsingDELETE_1
  4844. 16:10:57:885 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: typeDeleteBatchUsingDELETE_1
  4845. 16:10:57:886 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: typeGetByIdUsingGET_1
  4846. 16:10:57:886 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: typeListUsingGET_1
  4847. 16:10:57:888 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: typeSaveUsingPOST_1
  4848. 16:10:57:888 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: typeUpdateUsingPUT_1
  4849. 16:10:57:890 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_30
  4850. 16:10:57:890 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_31
  4851. 16:10:57:891 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_1
  4852. 16:10:57:896 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_1
  4853. 16:10:57:897 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_1
  4854. 16:10:57:898 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: boundEquipmentIdsUsingGET_1
  4855. 16:10:57:899 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingDELETE_1
  4856. 16:10:57:899 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_20
  4857. 16:10:57:899 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_21
  4858. 16:10:57:900 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_32
  4859. 16:10:57:900 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_33
  4860. 16:10:57:900 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_2
  4861. 16:10:57:900 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_3
  4862. 16:10:57:902 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_26
  4863. 16:10:57:903 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_27
  4864. 16:10:57:904 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_1
  4865. 16:10:57:906 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_34
  4866. 16:10:57:906 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_35
  4867. 16:10:57:907 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_4
  4868. 16:10:57:908 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_5
  4869. 16:10:57:908 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: monthlyStatsUsingGET_1
  4870. 16:10:57:909 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_2
  4871. 16:10:57:910 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_3
  4872. 16:10:57:920 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentPageUsingGET_1
  4873. 16:10:57:922 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: historyPageUsingGET_1
  4874. 16:10:57:924 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_4
  4875. 16:10:57:924 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_5
  4876. 16:10:57:925 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_22
  4877. 16:10:57:925 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_23
  4878. 16:10:57:926 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: finalApproveUsingPUT_1
  4879. 16:10:57:926 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: firstApproveUsingPUT_1
  4880. 16:10:57:927 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_36
  4881. 16:10:57:927 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_37
  4882. 16:10:57:932 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: publishUsingPOST_1
  4883. 16:10:57:933 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_28
  4884. 16:10:57:933 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_29
  4885. 16:10:57:934 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: scopeUsersUsingGET_1
  4886. 16:10:57:935 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_2
  4887. 16:10:57:935 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_3
  4888. 16:10:57:936 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateStatusUsingPUT_1
  4889. 16:10:57:937 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_1
  4890. 16:10:57:938 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_6
  4891. 16:10:57:938 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_7
  4892. 16:10:57:940 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_30
  4893. 16:10:57:940 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_31
  4894. 16:10:57:941 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_4
  4895. 16:10:57:941 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_5
  4896. 16:10:57:942 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_2
  4897. 16:10:57:943 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_3
  4898. 16:10:57:943 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_8
  4899. 16:10:57:943 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_9
  4900. 16:10:57:945 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_32
  4901. 16:10:57:945 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_33
  4902. 16:10:57:946 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_6
  4903. 16:10:57:946 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_7
  4904. 16:10:57:948 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePlanUsingDELETE_1
  4905. 16:10:57:948 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteTemplateUsingDELETE_1
  4906. 16:10:57:949 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: plansUsingGET_1
  4907. 16:10:57:949 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resultUsingGET_1
  4908. 16:10:57:950 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: savePlanUsingPOST_1
  4909. 16:10:57:952 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveTemplateUsingPOST_1
  4910. 16:10:57:952 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: templatesUsingGET_1
  4911. 16:10:57:953 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updatePlanUsingPUT_1
  4912. 16:10:57:953 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateTemplateUsingPUT_1
  4913. 16:10:57:958 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addLogUsingPOST_1
  4914. 16:10:57:958 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteEventUsingDELETE_1
  4915. 16:10:57:959 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteProjectUsingDELETE_1
  4916. 16:10:57:960 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteRoleUsingDELETE_1
  4917. 16:10:57:960 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteSceneUsingDELETE_1
  4918. 16:10:57:961 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteTaskUsingDELETE_1
  4919. 16:10:57:961 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: eventUsingGET_1
  4920. 16:10:57:962 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: logUsingGET_1
  4921. 16:10:57:963 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: processUsingPOST_1
  4922. 16:10:57:963 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: projectsUsingGET_1
  4923. 16:10:57:964 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resultUsingGET_2
  4924. 16:10:57:964 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resultUsingGET_3
  4925. 16:10:57:965 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: roleUsingGET_1
  4926. 16:10:57:966 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveEventUsingPOST_1
  4927. 16:10:57:967 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveProjectUsingPOST_1
  4928. 16:10:57:969 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveRoleUsingPOST_1
  4929. 16:10:57:970 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveSceneUsingPOST_1
  4930. 16:10:57:972 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveTaskUsingPOST_1
  4931. 16:10:57:973 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: sceneUsingGET_1
  4932. 16:10:57:973 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: taskUsingGET_1
  4933. 16:10:57:975 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAlarmsUsingGET_1
  4934. 16:10:57:976 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDailyStatsUsingGET_1
  4935. 16:10:57:977 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_1
  4936. 16:10:57:978 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestUsingGET_1
  4937. 16:10:57:979 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendUsingGET_1
  4938. 16:10:57:994 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addLeaderInstructionUsingPOST_1
  4939. 16:10:57:996 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchWarningUsingDELETE_1
  4940. 16:10:57:997 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteWarningUsingDELETE_1
  4941. 16:10:57:998 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getArchiveUsingGET_1
  4942. 16:10:57:999 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getArchiveListUsingGET_1
  4943. 16:10:58:000 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAttachmentsUsingGET_1
  4944. 16:10:58:001 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getCompletedWarningsUsingGET_1
  4945. 16:10:58:002 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDashboardStatisticsUsingGET_1
  4946. 16:10:58:003 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDisposalDetailUsingGET_1
  4947. 16:10:58:003 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDisposalHistoryUsingGET_1
  4948. 16:10:58:004 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDisposalListUsingGET_1
  4949. 16:10:58:005 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDisposalProcessUsingGET_1
  4950. 16:10:58:006 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLinkedAlarmsUsingGET_1
  4951. 16:10:58:006 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getProcessDiagramUsingGET_1
  4952. 16:10:58:007 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getProcessStatisticsUsingGET_1
  4953. 16:10:58:008 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getProcessingWarningsUsingGET_1
  4954. 16:10:58:008 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getStatisticsUsingGET_1
  4955. 16:10:58:009 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTodoListUsingGET_1
  4956. 16:10:58:011 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getWarningDetailUsingGET_1
  4957. 16:10:58:012 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getWarningFullDetailUsingGET_1
  4958. 16:10:58:014 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getWarningListUsingGET_1
  4959. 16:10:58:016 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: linkAlarmsUsingPOST_1
  4960. 16:10:58:017 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: publishWarningUsingPOST_1
  4961. 16:10:58:018 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resolveWarningUsingPOST_1
  4962. 16:10:58:019 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: returnWarningUsingPOST_1
  4963. 16:10:58:023 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveWarningUsingPOST_1
  4964. 16:10:58:025 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: searchWarningsUsingGET_1
  4965. 16:10:58:029 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: supervisionWarningUsingPOST_1
  4966. 16:10:58:030 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateWarningUsingPUT_1
  4967. 16:10:58:031 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: upgradeWarningUsingPOST_1
  4968. 16:10:58:035 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getBySpecialUsingGET_1
  4969. 16:10:58:037 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getOverviewUsingGET_1
  4970. 16:10:58:037 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getRangeUsingGET_1
  4971. 16:10:58:040 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_1
  4972. 16:10:58:042 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDisposeStatusStatUsingGET_1
  4973. 16:10:58:047 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByTypeUsingGET_1
  4974. 16:10:58:048 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getOverviewUsingGET_2
  4975. 16:10:58:049 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getOverviewUsingGET_3
  4976. 16:10:58:050 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getRangeUsingGET_2
  4977. 16:10:58:050 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getRangeUsingGET_3
  4978. 16:10:58:051 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_2
  4979. 16:10:58:052 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_3
  4980. 16:10:58:054 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTodayStatsUsingGET_1
  4981. 16:10:58:054 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryTodayPageUsingGET_1
  4982. 16:10:58:057 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendByDayUsingGET_1
  4983. 16:10:58:059 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendByMonthUsingGET_1
  4984. 16:10:58:065 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_6
  4985. 16:10:58:066 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_7
  4986. 16:10:58:067 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_2
  4987. 16:10:58:068 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_3
  4988. 16:10:58:069 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindPumpStationUsingPOST_1
  4989. 16:10:58:069 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingDELETE_2
  4990. 16:10:58:069 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingDELETE_3
  4991. 16:10:58:070 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_24
  4992. 16:10:58:070 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_25
  4993. 16:10:58:071 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_38
  4994. 16:10:58:071 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_39
  4995. 16:10:58:071 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_10
  4996. 16:10:58:072 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_11
  4997. 16:10:58:075 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_34
  4998. 16:10:58:075 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_35
  4999. 16:10:58:076 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_8
  5000. 16:10:58:076 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_9
  5001. 16:10:58:078 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_1
  5002. 16:10:58:079 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getStatsUsingGET_1
  5003. 16:10:58:087 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_26
  5004. 16:10:58:088 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_27
  5005. 16:10:58:089 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_1
  5006. 16:10:58:090 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_26
  5007. 16:10:58:090 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_27
  5008. 16:10:58:091 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByTopLevelTypeUsingGET_1
  5009. 16:10:58:092 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_40
  5010. 16:10:58:092 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_41
  5011. 16:10:58:094 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getEquipmentByPointUsingGET_1
  5012. 16:10:58:095 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getEquipmentDetailUsingGET_1
  5013. 16:10:58:095 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_2
  5014. 16:10:58:096 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_3
  5015. 16:10:58:097 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_36
  5016. 16:10:58:097 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_37
  5017. 16:10:58:098 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_1
  5018. 16:10:58:099 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: testEquipmentUsingPOST_1
  5019. 16:10:58:099 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_20
  5020. 16:10:58:100 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_21
  5021. 16:10:58:100 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateEquipmentStatusUsingPUT_1
  5022. 16:10:58:103 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_28
  5023. 16:10:58:104 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_29
  5024. 16:10:58:104 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_2
  5025. 16:10:58:105 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_3
  5026. 16:10:58:106 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_28
  5027. 16:10:58:106 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_29
  5028. 16:10:58:107 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_42
  5029. 16:10:58:107 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_43
  5030. 16:10:58:108 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_4
  5031. 16:10:58:108 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_5
  5032. 16:10:58:109 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_38
  5033. 16:10:58:110 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_39
  5034. 16:10:58:111 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_2
  5035. 16:10:58:111 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_3
  5036. 16:10:58:112 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_22
  5037. 16:10:58:112 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_23
  5038. 16:10:58:115 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_30
  5039. 16:10:58:115 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_31
  5040. 16:10:58:115 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_4
  5041. 16:10:58:116 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_5
  5042. 16:10:58:116 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_30
  5043. 16:10:58:116 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_31
  5044. 16:10:58:117 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_44
  5045. 16:10:58:117 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_45
  5046. 16:10:58:117 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_6
  5047. 16:10:58:118 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_7
  5048. 16:10:58:118 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_40
  5049. 16:10:58:118 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_41
  5050. 16:10:58:119 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_4
  5051. 16:10:58:119 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_5
  5052. 16:10:58:120 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_24
  5053. 16:10:58:120 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_25
  5054. 16:10:58:123 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_32
  5055. 16:10:58:123 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_33
  5056. 16:10:58:123 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_6
  5057. 16:10:58:124 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_7
  5058. 16:10:58:124 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_32
  5059. 16:10:58:124 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_33
  5060. 16:10:58:124 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_46
  5061. 16:10:58:124 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_47
  5062. 16:10:58:125 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_8
  5063. 16:10:58:125 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_9
  5064. 16:10:58:125 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_42
  5065. 16:10:58:126 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_43
  5066. 16:10:58:126 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_6
  5067. 16:10:58:127 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_7
  5068. 16:10:58:127 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_26
  5069. 16:10:58:127 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_27
  5070. 16:10:58:129 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAlarmCountsUsingGET_1
  5071. 16:10:58:130 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAveragePressureUsingGET_1
  5072. 16:10:58:131 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDailyStatsUsingGET_2
  5073. 16:10:58:131 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDailyStatsUsingGET_3
  5074. 16:10:58:131 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_2
  5075. 16:10:58:131 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_3
  5076. 16:10:58:132 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPressureDistributionUsingGET_1
  5077. 16:10:58:133 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getSignalVsPressureUsingGET_1
  5078. 16:10:58:136 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportFlowMonitorDataUsingGET_1
  5079. 16:10:58:137 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getFlowMonitorPageUsingGET_1
  5080. 16:10:58:138 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getFlowTrend24hUsingGET_1
  5081. 16:10:58:139 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: dispatchUsingPOST_1
  5082. 16:10:58:140 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: equipmentUsingGET_1
  5083. 16:10:58:141 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: historyUsingGET_1
  5084. 16:10:58:141 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resolveUsingPUT_1
  5085. 16:10:58:142 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statsUsingGET_1
  5086. 16:10:58:143 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: summaryUsingGET_1
  5087. 16:10:58:147 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_34
  5088. 16:10:58:147 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_35
  5089. 16:10:58:148 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePointRelUsingDELETE_1
  5090. 16:10:58:148 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findFullByPageUsingGET_1
  5091. 16:10:58:149 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAbnormalListUsingGET_1
  5092. 16:10:58:150 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getEquipmentStatusUsingGET_1
  5093. 16:10:58:150 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPointRelByEquipmentUsingGET_1
  5094. 16:10:58:151 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPointRelByPointUsingGET_1
  5095. 16:10:58:152 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_44
  5096. 16:10:58:152 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_45
  5097. 16:10:58:153 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveDeviceRelUsingPOST_1
  5098. 16:10:58:154 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: savePointRelUsingPOST_1
  5099. 16:10:58:155 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: savePointRelBatchUsingPOST_1
  5100. 16:10:58:156 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_28
  5101. 16:10:58:156 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_29
  5102. 16:10:58:158 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_36
  5103. 16:10:58:158 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_37
  5104. 16:10:58:159 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteDeviceRelUsingDELETE_1
  5105. 16:10:58:161 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_34
  5106. 16:10:58:161 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_35
  5107. 16:10:58:162 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_48
  5108. 16:10:58:162 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_49
  5109. 16:10:58:162 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_12
  5110. 16:10:58:163 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_13
  5111. 16:10:58:163 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listDevicesUsingGET_1
  5112. 16:10:58:164 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionsUsingGET_1
  5113. 16:10:58:166 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_46
  5114. 16:10:58:166 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_47
  5115. 16:10:58:167 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveDeviceRelUsingPOST_2
  5116. 16:10:58:168 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveDeviceRelUsingPOST_3
  5117. 16:10:58:168 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveDeviceRelBatchUsingPOST_1
  5118. 16:10:58:169 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_30
  5119. 16:10:58:169 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_31
  5120. 16:10:58:171 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPointsUsingGET_1
  5121. 16:10:58:171 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendUsingGET_2
  5122. 16:10:58:172 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendUsingGET_3
  5123. 16:10:58:174 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAlarmsUsingGET_2
  5124. 16:10:58:175 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAlarmsUsingGET_3
  5125. 16:10:58:175 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDailyStatsUsingGET_4
  5126. 16:10:58:176 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDailyStatsUsingGET_5
  5127. 16:10:58:176 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_4
  5128. 16:10:58:176 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_5
  5129. 16:10:58:177 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataUsingGET_1
  5130. 16:10:58:177 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestWithAlarmUsingGET_1
  5131. 16:10:58:178 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getOnlineRateUsingGET_1
  5132. 16:10:58:178 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendUsingGET_4
  5133. 16:10:58:179 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendUsingGET_5
  5134. 16:10:58:180 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_38
  5135. 16:10:58:180 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_39
  5136. 16:10:58:183 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_36
  5137. 16:10:58:183 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_37
  5138. 16:10:58:184 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_50
  5139. 16:10:58:184 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_51
  5140. 16:10:58:186 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_48
  5141. 16:10:58:187 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_49
  5142. 16:10:58:188 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_32
  5143. 16:10:58:188 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_33
  5144. 16:10:58:190 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_40
  5145. 16:10:58:190 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_41
  5146. 16:10:58:193 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_38
  5147. 16:10:58:193 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_39
  5148. 16:10:58:193 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_52
  5149. 16:10:58:194 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_53
  5150. 16:10:58:194 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionsUsingGET_2
  5151. 16:10:58:194 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionsUsingGET_3
  5152. 16:10:58:196 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_50
  5153. 16:10:58:197 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_51
  5154. 16:10:58:198 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_34
  5155. 16:10:58:198 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_35
  5156. 16:10:58:199 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportDataUsingGET_1
  5157. 16:10:58:201 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_42
  5158. 16:10:58:202 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_43
  5159. 16:10:58:202 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteDeviceRelUsingDELETE_2
  5160. 16:10:58:202 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteDeviceRelUsingDELETE_3
  5161. 16:10:58:205 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_40
  5162. 16:10:58:205 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_41
  5163. 16:10:58:206 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_54
  5164. 16:10:58:206 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_55
  5165. 16:10:58:207 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listByNetworkIdUsingGET_1
  5166. 16:10:58:207 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listDevicesUsingGET_2
  5167. 16:10:58:207 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listDevicesUsingGET_3
  5168. 16:10:58:208 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionsUsingGET_4
  5169. 16:10:58:208 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionsUsingGET_5
  5170. 16:10:58:211 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_52
  5171. 16:10:58:211 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_53
  5172. 16:10:58:211 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveDeviceRelUsingPOST_4
  5173. 16:10:58:212 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveDeviceRelUsingPOST_5
  5174. 16:10:58:212 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveDeviceRelBatchUsingPOST_2
  5175. 16:10:58:212 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveDeviceRelBatchUsingPOST_3
  5176. 16:10:58:213 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_36
  5177. 16:10:58:213 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_37
  5178. 16:10:58:214 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_44
  5179. 16:10:58:215 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_45
  5180. 16:10:58:217 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_42
  5181. 16:10:58:218 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_43
  5182. 16:10:58:218 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_56
  5183. 16:10:58:218 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_57
  5184. 16:10:58:218 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listByNetworkIdUsingGET_2
  5185. 16:10:58:219 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listByNetworkIdUsingGET_3
  5186. 16:10:58:221 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_54
  5187. 16:10:58:221 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_55
  5188. 16:10:58:221 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statsUsingGET_2
  5189. 16:10:58:222 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statsUsingGET_3
  5190. 16:10:58:222 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_38
  5191. 16:10:58:222 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_39
  5192. 16:10:58:223 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getEquipmentsUsingGET_1
  5193. 16:10:58:224 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getManholesUsingGET_1
  5194. 16:10:58:225 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPipeLinesUsingGET_1
  5195. 16:10:58:227 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_46
  5196. 16:10:58:227 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_47
  5197. 16:10:58:228 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportDataUsingGET_2
  5198. 16:10:58:228 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportDataUsingGET_3
  5199. 16:10:58:229 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_58
  5200. 16:10:58:229 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_59
  5201. 16:10:58:230 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getMapPointsUsingGET_1
  5202. 16:10:58:232 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_8
  5203. 16:10:58:233 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_9
  5204. 16:10:58:236 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_56
  5205. 16:10:58:236 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_57
  5206. 16:10:58:237 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsByLevelUsingGET_1
  5207. 16:10:58:237 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsByRegionUsingGET_1
  5208. 16:10:58:238 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsByStatusUsingGET_1
  5209. 16:10:58:239 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsByTypeUsingGET_1
  5210. 16:10:58:239 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsOverviewUsingGET_1
  5211. 16:10:58:240 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsStatusTimelineUsingGET_1
  5212. 16:10:58:240 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsTypeTimelineUsingGET_1
  5213. 16:10:58:241 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: submitUsingPUT_1
  5214. 16:10:58:242 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_40
  5215. 16:10:58:242 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_41
  5216. 16:10:58:245 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportLeakageMonitorDataUsingGET_1
  5217. 16:10:58:246 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLeakageMonitorPageUsingGET_1
  5218. 16:10:58:247 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLeakageTrend24hUsingGET_1
  5219. 16:10:58:251 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryByDateUsingPOST_1
  5220. 16:10:58:254 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: abnormalTerminalTrendUsingPOST_1
  5221. 16:10:58:256 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: caseRateTrendUsingPOST_1
  5222. 16:10:58:260 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: batchDispatchUsingPOST_1
  5223. 16:10:58:261 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: processTaskUsingPOST_1
  5224. 16:10:58:268 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_2
  5225. 16:10:58:268 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_3
  5226. 16:10:58:270 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_60
  5227. 16:10:58:270 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_61
  5228. 16:10:58:275 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllImeiCardNumbersUsingGET_1
  5229. 16:10:58:276 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataByImeiUsingGET_1
  5230. 16:10:58:277 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getOverallStatisticsUsingGET_1
  5231. 16:10:58:278 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryAlarmDataUsingGET_1
  5232. 16:10:58:279 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_4
  5233. 16:10:58:279 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_5
  5234. 16:10:58:280 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statAlarmTrendByHourUsingGET_1
  5235. 16:10:58:281 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statManholeByDeviceUsingGET_1
  5236. 16:10:58:281 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statTemperatureTrendByHourUsingGET_1
  5237. 16:10:58:285 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveWarningThresholdUsingPOST_2
  5238. 16:10:58:285 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveWarningThresholdUsingPOST_3
  5239. 16:10:58:287 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateDeviceStatusUsingPOST_1
  5240. 16:10:58:296 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_4
  5241. 16:10:58:297 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_5
  5242. 16:10:58:298 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_62
  5243. 16:10:58:299 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_63
  5244. 16:10:58:301 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getManholeDataListUsingPOST_1
  5245. 16:10:58:304 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: countByTypeUsingPOST_1
  5246. 16:10:58:305 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_1
  5247. 16:10:58:309 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_44
  5248. 16:10:58:309 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_45
  5249. 16:10:58:309 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_4
  5250. 16:10:58:310 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_5
  5251. 16:10:58:310 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_8
  5252. 16:10:58:310 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_9
  5253. 16:10:58:311 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_48
  5254. 16:10:58:312 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_49
  5255. 16:10:58:313 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_64
  5256. 16:10:58:313 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_65
  5257. 16:10:58:314 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_10
  5258. 16:10:58:314 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_11
  5259. 16:10:58:315 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPointDetailUsingGET_1
  5260. 16:10:58:316 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPointsByNetworkUsingGET_1
  5261. 16:10:58:317 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_58
  5262. 16:10:58:317 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_59
  5263. 16:10:58:318 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_8
  5264. 16:10:58:318 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_9
  5265. 16:10:58:319 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: unbindEquipmentUsingPOST_1
  5266. 16:10:58:319 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_42
  5267. 16:10:58:319 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_43
  5268. 16:10:58:321 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllDeviceCodesUsingGET_1
  5269. 16:10:58:322 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataByDeviceUsingGET_1
  5270. 16:10:58:323 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryAbnormalDataUsingGET_1
  5271. 16:10:58:324 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_6
  5272. 16:10:58:324 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_7
  5273. 16:10:58:325 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statPowerByDeviceUsingGET_1
  5274. 16:10:58:325 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statPowerTrendByHourUsingGET_1
  5275. 16:10:58:328 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_46
  5276. 16:10:58:328 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_47
  5277. 16:10:58:329 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_10
  5278. 16:10:58:329 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_11
  5279. 16:10:58:330 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_50
  5280. 16:10:58:330 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_51
  5281. 16:10:58:330 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_66
  5282. 16:10:58:330 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_67
  5283. 16:10:58:331 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_12
  5284. 16:10:58:331 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_13
  5285. 16:10:58:332 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_60
  5286. 16:10:58:332 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_61
  5287. 16:10:58:333 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_10
  5288. 16:10:58:333 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_11
  5289. 16:10:58:334 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_44
  5290. 16:10:58:334 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_45
  5291. 16:10:58:338 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_10
  5292. 16:10:58:339 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_11
  5293. 16:10:58:339 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_6
  5294. 16:10:58:339 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_7
  5295. 16:10:58:340 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: boundEquipmentIdsUsingGET_2
  5296. 16:10:58:340 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: boundEquipmentIdsUsingGET_3
  5297. 16:10:58:341 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingDELETE_4
  5298. 16:10:58:341 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingDELETE_5
  5299. 16:10:58:341 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_52
  5300. 16:10:58:341 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_53
  5301. 16:10:58:342 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_68
  5302. 16:10:58:342 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_69
  5303. 16:10:58:343 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_14
  5304. 16:10:58:343 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_15
  5305. 16:10:58:344 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_62
  5306. 16:10:58:345 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_63
  5307. 16:10:58:346 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_10
  5308. 16:10:58:346 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_11
  5309. 16:10:58:347 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: dispatchUsingPOST_2
  5310. 16:10:58:347 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: dispatchUsingPOST_3
  5311. 16:10:58:348 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: equipmentUsingGET_2
  5312. 16:10:58:348 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: equipmentUsingGET_3
  5313. 16:10:58:349 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: historyUsingGET_2
  5314. 16:10:58:349 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: historyUsingGET_3
  5315. 16:10:58:349 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resolveUsingPUT_2
  5316. 16:10:58:350 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resolveUsingPUT_3
  5317. 16:10:58:350 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statsUsingGET_4
  5318. 16:10:58:350 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statsUsingGET_5
  5319. 16:10:58:352 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getHistoryUsingGET_1
  5320. 16:10:58:352 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPointsUsingGET_2
  5321. 16:10:58:352 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPointsUsingGET_3
  5322. 16:10:58:353 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendUsingGET_6
  5323. 16:10:58:353 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendUsingGET_7
  5324. 16:10:58:356 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportPressureMonitorDataUsingGET_1
  5325. 16:10:58:357 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPressureMonitorPageUsingGET_1
  5326. 16:10:58:358 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPressureTrend24hUsingGET_1
  5327. 16:10:58:360 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllDeviceCodesUsingGET_2
  5328. 16:10:58:361 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllDeviceCodesUsingGET_3
  5329. 16:10:58:361 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_6
  5330. 16:10:58:361 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_7
  5331. 16:10:58:362 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataByDeviceUsingGET_2
  5332. 16:10:58:362 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataByDeviceUsingGET_3
  5333. 16:10:58:363 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryAbnormalDataUsingGET_2
  5334. 16:10:58:363 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryAbnormalDataUsingGET_3
  5335. 16:10:58:364 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_8
  5336. 16:10:58:364 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_9
  5337. 16:10:58:365 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statFlowTrendByHourUsingGET_1
  5338. 16:10:58:366 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statRadarByDeviceUsingGET_1
  5339. 16:10:58:368 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getFlowHistoryUsingGET_1
  5340. 16:10:58:369 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getGasAlarmLatestUsingGET_1
  5341. 16:10:58:369 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPointsWithLatestDataUsingGET_1
  5342. 16:10:58:370 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPressureHistoryUsingGET_1
  5343. 16:10:58:371 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getVideoListUsingGET_1
  5344. 16:10:58:372 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_54
  5345. 16:10:58:373 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_55
  5346. 16:10:58:376 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_48
  5347. 16:10:58:376 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_49
  5348. 16:10:58:376 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_70
  5349. 16:10:58:377 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_71
  5350. 16:10:58:377 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getFourColorMapUsingGET_1
  5351. 16:10:58:380 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_64
  5352. 16:10:58:380 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_65
  5353. 16:10:58:381 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_46
  5354. 16:10:58:381 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_47
  5355. 16:10:58:382 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_2
  5356. 16:10:58:382 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_3
  5357. 16:10:58:385 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_1
  5358. 16:10:58:386 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_1
  5359. 16:10:58:386 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getConfigKeyUsingGET_1
  5360. 16:10:58:387 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_4
  5361. 16:10:58:387 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_5
  5362. 16:10:58:388 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: refreshCacheUsingDELETE_1
  5363. 16:10:58:388 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_1
  5364. 16:10:58:393 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_16
  5365. 16:10:58:394 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_17
  5366. 16:10:58:395 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_2
  5367. 16:10:58:395 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_3
  5368. 16:10:58:400 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_2
  5369. 16:10:58:401 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_3
  5370. 16:10:58:402 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_2
  5371. 16:10:58:402 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_3
  5372. 16:10:58:403 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: excludeChildUsingGET_1
  5373. 16:10:58:404 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_6
  5374. 16:10:58:404 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_7
  5375. 16:10:58:409 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_18
  5376. 16:10:58:410 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_19
  5377. 16:10:58:410 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_2
  5378. 16:10:58:411 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_3
  5379. 16:10:58:413 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_4
  5380. 16:10:58:413 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_5
  5381. 16:10:58:414 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: dictTypeUsingGET_1
  5382. 16:10:58:415 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_4
  5383. 16:10:58:415 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_5
  5384. 16:10:58:415 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_8
  5385. 16:10:58:415 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_9
  5386. 16:10:58:416 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_4
  5387. 16:10:58:416 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_5
  5388. 16:10:58:419 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_20
  5389. 16:10:58:419 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_21
  5390. 16:10:58:420 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_4
  5391. 16:10:58:420 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_5
  5392. 16:10:58:424 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_6
  5393. 16:10:58:424 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_7
  5394. 16:10:58:425 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_6
  5395. 16:10:58:425 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_7
  5396. 16:10:58:425 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_10
  5397. 16:10:58:425 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_11
  5398. 16:10:58:426 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionselectUsingGET_1
  5399. 16:10:58:426 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: refreshCacheUsingDELETE_2
  5400. 16:10:58:426 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: refreshCacheUsingDELETE_3
  5401. 16:10:58:427 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_6
  5402. 16:10:58:427 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_7
  5403. 16:10:58:430 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_22
  5404. 16:10:58:430 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_23
  5405. 16:10:58:431 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_6
  5406. 16:10:58:431 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_7
  5407. 16:10:58:432 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingGET_1
  5408. 16:10:58:432 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingHEAD_1
  5409. 16:10:58:432 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingPOST_1
  5410. 16:10:58:432 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingPUT_1
  5411. 16:10:58:433 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingPATCH_1
  5412. 16:10:58:433 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingDELETE_1
  5413. 16:10:58:433 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingOPTIONS_1
  5414. 16:10:58:433 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingTRACE_1
  5415. 16:10:58:435 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_12
  5416. 16:10:58:435 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_13
  5417. 16:10:58:435 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getRoutersUsingGET_1
  5418. 16:10:58:436 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: loginUsingPOST_1
  5419. 16:10:58:438 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: loginNoNeedAuthUsingPOST_1
  5420. 16:10:58:440 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: cleanUsingDELETE_1
  5421. 16:10:58:441 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_8
  5422. 16:10:58:441 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_9
  5423. 16:10:58:442 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: unlockUsingGET_1
  5424. 16:10:58:445 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_24
  5425. 16:10:58:445 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_25
  5426. 16:10:58:446 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_8
  5427. 16:10:58:446 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_9
  5428. 16:10:58:449 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_8
  5429. 16:10:58:450 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_9
  5430. 16:10:58:450 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_8
  5431. 16:10:58:451 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_9
  5432. 16:10:58:451 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_14
  5433. 16:10:58:451 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_15
  5434. 16:10:58:454 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_26
  5435. 16:10:58:454 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_27
  5436. 16:10:58:455 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_10
  5437. 16:10:58:455 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_11
  5438. 16:10:58:455 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: roleMenuTreeselectUsingGET_1
  5439. 16:10:58:457 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: treeselectUsingGET_1
  5440. 16:10:58:461 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_10
  5441. 16:10:58:461 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_11
  5442. 16:10:58:462 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_10
  5443. 16:10:58:462 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_11
  5444. 16:10:58:463 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_16
  5445. 16:10:58:463 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_17
  5446. 16:10:58:464 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_12
  5447. 16:10:58:464 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_13
  5448. 16:10:58:466 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_28
  5449. 16:10:58:467 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_29
  5450. 16:10:58:468 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: cleanUsingDELETE_2
  5451. 16:10:58:468 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: cleanUsingDELETE_3
  5452. 16:10:58:468 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_14
  5453. 16:10:58:468 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_15
  5454. 16:10:58:471 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_30
  5455. 16:10:58:472 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_31
  5456. 16:10:58:473 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_10
  5457. 16:10:58:473 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_11
  5458. 16:10:58:475 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_12
  5459. 16:10:58:475 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_13
  5460. 16:10:58:476 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_12
  5461. 16:10:58:476 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_13
  5462. 16:10:58:477 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_18
  5463. 16:10:58:477 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_19
  5464. 16:10:58:477 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionselectUsingGET_2
  5465. 16:10:58:477 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionselectUsingGET_3
  5466. 16:10:58:478 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_16
  5467. 16:10:58:478 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_17
  5468. 16:10:58:480 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_32
  5469. 16:10:58:480 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_33
  5470. 16:10:58:481 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_12
  5471. 16:10:58:481 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_13
  5472. 16:10:58:482 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: avatarUsingPOST_1
  5473. 16:10:58:483 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: profileUsingGET_1
  5474. 16:10:58:489 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateProfileUsingPUT_1
  5475. 16:10:58:489 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updatePwdUsingPUT_1
  5476. 16:10:58:491 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: registerUsingPOST_1
  5477. 16:10:58:493 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_14
  5478. 16:10:58:494 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_15
  5479. 16:10:58:495 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: cancelAuthUserUsingPUT_1
  5480. 16:10:58:495 WARN 28952 --- [restartedMain] s.d.s.w.r.p.ParameterDataTypeReader : Trying to infer dataType java.lang.Long[]
  5481. 16:10:58:495 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: cancelAuthUserAllUsingPUT_1
  5482. 16:10:58:496 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: changeStatusUsingPUT_1
  5483. 16:10:58:497 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: dataScopeUsingPUT_1
  5484. 16:10:58:497 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deptTreeUsingGET_1
  5485. 16:10:58:498 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_14
  5486. 16:10:58:498 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_15
  5487. 16:10:58:498 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_20
  5488. 16:10:58:498 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_21
  5489. 16:10:58:499 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionselectUsingGET_4
  5490. 16:10:58:499 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionselectUsingGET_5
  5491. 16:10:58:499 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_18
  5492. 16:10:58:500 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_19
  5493. 16:10:58:500 WARN 28952 --- [restartedMain] s.d.s.w.r.p.ParameterDataTypeReader : Trying to infer dataType java.lang.Long[]
  5494. 16:10:58:500 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectAuthUserAllUsingPUT_1
  5495. 16:10:58:507 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: allocatedListUsingGET_1
  5496. 16:10:58:509 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_34
  5497. 16:10:58:509 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_35
  5498. 16:10:58:511 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: unallocatedListUsingGET_1
  5499. 16:10:58:512 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_14
  5500. 16:10:58:512 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_15
  5501. 16:10:58:516 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_16
  5502. 16:10:58:517 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_17
  5503. 16:10:58:517 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: authRoleUsingGET_1
  5504. 16:10:58:518 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: changeStatusUsingPUT_2
  5505. 16:10:58:518 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: changeStatusUsingPUT_3
  5506. 16:10:58:519 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deptTreeUsingGET_2
  5507. 16:10:58:519 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deptTreeUsingGET_3
  5508. 16:10:58:520 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_16
  5509. 16:10:58:520 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_17
  5510. 16:10:58:521 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_22
  5511. 16:10:58:521 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_23
  5512. 16:10:58:521 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_24
  5513. 16:10:58:521 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_25
  5514. 16:10:58:522 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: importDataUsingPOST_1
  5515. 16:10:58:523 WARN 28952 --- [restartedMain] s.d.s.w.r.p.ParameterDataTypeReader : Trying to infer dataType java.lang.Long[]
  5516. 16:10:58:523 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: insertAuthRoleUsingPUT_1
  5517. 16:10:58:524 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_20
  5518. 16:10:58:524 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_21
  5519. 16:10:58:525 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resetPwdUsingPUT_1
  5520. 16:10:58:527 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_36
  5521. 16:10:58:527 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_37
  5522. 16:10:58:529 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_16
  5523. 16:10:58:529 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_17
  5524. 16:10:58:530 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: importTemplateUsingPOST_1
  5525. 16:10:58:531 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: forceLogoutUsingDELETE_1
  5526. 16:10:58:531 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_38
  5527. 16:10:58:531 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_39
  5528. 16:10:58:534 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllDeviceCodesUsingGET_4
  5529. 16:10:58:535 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllDeviceCodesUsingGET_5
  5530. 16:10:58:535 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_8
  5531. 16:10:58:536 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_9
  5532. 16:10:58:536 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataByDeviceUsingGET_4
  5533. 16:10:58:536 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataByDeviceUsingGET_5
  5534. 16:10:58:537 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryAbnormalDataUsingGET_4
  5535. 16:10:58:537 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryAbnormalDataUsingGET_5
  5536. 16:10:58:538 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_10
  5537. 16:10:58:538 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_11
  5538. 16:10:58:539 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statTelemetryByDeviceUsingGET_1
  5539. 16:10:58:539 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statTelemetryTrendByHourUsingGET_1
  5540. 16:10:58:541 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleFaultUsingPOST_1
  5541. 16:10:58:546 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_6
  5542. 16:10:58:546 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_7
  5543. 16:10:58:548 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_72
  5544. 16:10:58:548 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_73
  5545. 16:10:58:552 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getUserUsingGET_1
  5546. 16:10:58:553 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_4
  5547. 16:10:58:553 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_5
  5548. 16:10:58:556 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_66
  5549. 16:10:58:556 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_67
  5550. 16:10:58:558 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_12
  5551. 16:10:58:558 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_13
  5552. 16:10:58:560 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: userListUsingGET_1
  5553. 16:10:58:566 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addWarningItemUsingPOST_1
  5554. 16:10:58:567 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: generateItemCodeUsingGET_1
  5555. 16:10:58:568 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getItemDetailUsingGET_1
  5556. 16:10:58:569 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryWarningItemsUsingGET_1
  5557. 16:10:58:569 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateItemStatusUsingPUT_1
  5558. 16:10:58:570 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateWarningItemUsingPUT_1
  5559. 16:10:58:574 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addWarningReasonUsingPOST_1
  5560. 16:10:58:574 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getReasonDetailUsingGET_1
  5561. 16:10:58:575 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getReasonsByTypeAndLevelUsingGET_1
  5562. 16:10:58:576 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryWarningReasonsUsingGET_1
  5563. 16:10:58:577 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateReasonStatusUsingPUT_1
  5564. 16:10:58:577 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateWarningReasonUsingPUT_1
  5565. 16:10:58:579 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_2
  5566. 16:10:58:579 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_3
  5567. 16:10:58:579 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_50
  5568. 16:10:58:579 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_51
  5569. 16:10:58:580 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_74
  5570. 16:10:58:580 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_75
  5571. 16:10:58:581 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getWarningThresholdListUsingGET_1
  5572. 16:10:58:582 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_68
  5573. 16:10:58:582 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_69
  5574. 16:10:58:583 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_6
  5575. 16:10:58:583 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_7
  5576. 16:10:58:585 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllDeviceCodesUsingGET_6
  5577. 16:10:58:586 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllDeviceCodesUsingGET_7
  5578. 16:10:58:586 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataByDeviceUsingGET_6
  5579. 16:10:58:586 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataByDeviceUsingGET_7
  5580. 16:10:58:587 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_12
  5581. 16:10:58:587 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_13
  5582. 16:10:58:588 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectOverLimitDataUsingGET_1
  5583. 16:10:58:588 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsByDeviceUsingGET_1
  5584. 16:10:58:589 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsOnlineDeviceUsingGET_1
  5585. 16:10:58:594 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_18
  5586. 16:10:58:595 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_19
  5587. 16:10:58:595 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_1
  5588. 16:10:58:596 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_76
  5589. 16:10:58:596 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_77
  5590. 16:10:58:597 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestPipeUsingGET_1
  5591. 16:10:58:597 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getOverallStatisticsUsingGET_2
  5592. 16:10:58:597 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getOverallStatisticsUsingGET_3
  5593. 16:10:58:598 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_12
  5594. 16:10:58:598 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_13
  5595. 16:10:58:599 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_1
  5596. 16:10:58:599 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_22
  5597. 16:10:58:600 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_23
  5598. 16:10:58:600 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_1
  5599. 16:10:58:601 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statPipeByMaterialUsingGET_1
  5600. 16:10:58:602 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statPipeByStatusUsingGET_1
  5601. 16:10:58:603 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_14
  5602. 16:10:58:603 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_15
  5603. 16:10:58:609 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_20
  5604. 16:10:58:609 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_21
  5605. 16:10:58:609 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_2
  5606. 16:10:58:610 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_3
  5607. 16:10:58:610 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_78
  5608. 16:10:58:610 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_79
  5609. 16:10:58:611 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_14
  5610. 16:10:58:611 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_15
  5611. 16:10:58:612 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_2
  5612. 16:10:58:612 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_3
  5613. 16:10:58:613 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_24
  5614. 16:10:58:613 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_25
  5615. 16:10:58:614 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_2
  5616. 16:10:58:614 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_3
  5617. 16:10:58:615 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_16
  5618. 16:10:58:616 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_17
  5619. 16:10:58:621 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_22
  5620. 16:10:58:621 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_23
  5621. 16:10:58:621 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_4
  5622. 16:10:58:622 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_5
  5623. 16:10:58:622 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_80
  5624. 16:10:58:623 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_81
  5625. 16:10:58:623 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_16
  5626. 16:10:58:624 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_17
  5627. 16:10:58:624 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_4
  5628. 16:10:58:625 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_5
  5629. 16:10:58:626 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_26
  5630. 16:10:58:626 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_27
  5631. 16:10:58:626 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_4
  5632. 16:10:58:627 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_5
  5633. 16:10:58:627 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_18
  5634. 16:10:58:628 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_19
  5635. 16:10:58:633 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_24
  5636. 16:10:58:633 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_25
  5637. 16:10:58:634 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_6
  5638. 16:10:58:634 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_7
  5639. 16:10:58:634 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_82
  5640. 16:10:58:635 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_83
  5641. 16:10:58:635 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_18
  5642. 16:10:58:636 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_19
  5643. 16:10:58:636 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_6
  5644. 16:10:58:637 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_7
  5645. 16:10:58:637 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_28
  5646. 16:10:58:637 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_29
  5647. 16:10:58:637 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_6
  5648. 16:10:58:638 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_7
  5649. 16:10:58:638 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_20
  5650. 16:10:58:638 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_21
  5651. 16:10:58:643 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_26
  5652. 16:10:58:643 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_27
  5653. 16:10:58:644 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_8
  5654. 16:10:58:644 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_9
  5655. 16:10:58:645 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_84
  5656. 16:10:58:645 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_85
  5657. 16:10:58:646 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_20
  5658. 16:10:58:646 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_21
  5659. 16:10:58:647 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_8
  5660. 16:10:58:647 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_9
  5661. 16:10:58:648 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_30
  5662. 16:10:58:649 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_31
  5663. 16:10:58:649 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_8
  5664. 16:10:58:649 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_9
  5665. 16:10:58:650 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_22
  5666. 16:10:58:650 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_23
  5667. 16:10:58:654 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_14
  5668. 16:10:58:654 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_15
  5669. 16:10:58:655 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_8
  5670. 16:10:58:655 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_9
  5671. 16:10:58:655 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingDELETE_6
  5672. 16:10:58:655 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingDELETE_7
  5673. 16:10:58:656 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_56
  5674. 16:10:58:656 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_57
  5675. 16:10:58:656 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_86
  5676. 16:10:58:657 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_87
  5677. 16:10:58:657 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_40
  5678. 16:10:58:657 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_41
  5679. 16:10:58:658 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_70
  5680. 16:10:58:658 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_71
  5681. 16:10:58:659 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_24
  5682. 16:10:58:659 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_25
  5683. 16:10:58:663 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addWorkOrderUsingPOST_1
  5684. 16:10:58:664 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: operWorkOrderUsingPOST_1
  5685. 16:10:58:671 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_8
  5686. 16:10:58:671 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_9
  5687. 16:10:58:674 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findFinishedPageUsingPOST_1
  5688. 16:10:58:676 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findProcessingPageUsingPOST_1
  5689. 16:10:58:678 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_88
  5690. 16:10:58:678 INFO 28952 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_89
  5691. 16:10:58:682 INFO 28952 --- [restartedMain] o.s.s.quartz.SchedulerFactoryBean : Starting Quartz Scheduler now
  5692. 16:10:58:682 INFO 28952 --- [restartedMain] org.quartz.core.QuartzScheduler : Scheduler quartzScheduler_$_NON_CLUSTERED started.
  5693. 16:10:58:691 INFO 28952 --- [restartedMain] com.zksy.ZksyApplication : Started ZksyApplication in 21.21 seconds (JVM running for 22.475)
  5694. 16:10:58:695 INFO 28952 --- [restartedMain] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=pipe-network-service.yaml, group=DEFAULT_GROUP
  5695. 16:10:58:696 INFO 28952 --- [restartedMain] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=pipe-network-service-dev.yaml, group=DEFAULT_GROUP
  5696. 16:10:58:696 INFO 28952 --- [restartedMain] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=pipe-network-service, group=DEFAULT_GROUP
  5697. 16:14:04:433 WARN 28952 --- [Thread-4] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient
  5698. 16:14:04:433 WARN 28952 --- [Thread-8] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Start destroying Publisher
  5699. 16:14:04:434 WARN 28952 --- [Thread-8] c.a.nacos.common.notify.NotifyCenter : [NotifyCenter] Destruction of the end
  5700. 16:14:04:434 WARN 28952 --- [Thread-4] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Destruction of the end
  5701. 16:14:04:437 INFO 28952 --- [SpringApplicationShutdownHook] org.quartz.core.QuartzScheduler : Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  5702. 16:14:04:932 INFO 28952 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registering from Nacos Server now...
  5703. 16:14:04:936 INFO 28952 --- [SpringApplicationShutdownHook] c.a.c.n.registry.NacosServiceRegistry : De-registration finished.
  5704. 16:14:05:245 INFO 28952 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown rpc client, set status to shutdown
  5705. 16:14:05:245 INFO 28952 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@2d898551[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
  5706. 16:14:05:245 INFO 28952 --- [SpringApplicationShutdownHook] com.alibaba.nacos.common.remote.client : Close current connection 1784621456585_192.168.110.235_49421
  5707. 16:14:05:245 INFO 28952 --- [nacos-grpc-client-executor-49] c.a.n.c.remote.client.grpc.GrpcClient : [1784621456585_192.168.110.235_49421]Ignore complete event,isRunning:false,isAbandon=false
  5708. 16:14:05:249 INFO 28952 --- [SpringApplicationShutdownHook] c.a.n.c.remote.client.grpc.GrpcClient : Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@874877f[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 50]
  5709. 16:14:05:256 INFO 28952 --- [SpringApplicationShutdownHook] o.s.s.quartz.SchedulerFactoryBean : Shutting down Quartz Scheduler
  5710. 16:14:05:256 INFO 28952 --- [SpringApplicationShutdownHook] org.quartz.core.QuartzScheduler : Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
  5711. 16:14:05:256 INFO 28952 --- [SpringApplicationShutdownHook] org.quartz.core.QuartzScheduler : Scheduler quartzScheduler_$_NON_CLUSTERED paused.
  5712. 16:14:05:256 INFO 28952 --- [SpringApplicationShutdownHook] org.quartz.core.QuartzScheduler : Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
  5713. 16:14:05:256 INFO 28952 --- [SpringApplicationShutdownHook] sys-user : ====关闭后台任务任务线程池====
  5714. 16:14:05:257 WARN 28952 --- [SpringApplicationShutdownHook] .s.c.a.CommonAnnotationBeanPostProcessor : Destroy method on bean with name 'shutdownManager' threw an exception: java.lang.ExceptionInInitializerError
  5715. 16:14:05:262 INFO 28952 --- [SpringApplicationShutdownHook] com.alibaba.druid.pool.DruidDataSource : {dataSource-1} closing ...
  5716. 16:14:05:265 INFO 28952 --- [SpringApplicationShutdownHook] com.alibaba.druid.pool.DruidDataSource : {dataSource-1} closed
  5717. 16:45:22:283 INFO 32192 --- [restartedMain] com.zksy.ZksyApplication : The following 1 profile is active: "dev"
  5718. 16:45:23:808 INFO 32192 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode!
  5719. 16:45:23:810 INFO 32192 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  5720. 16:45:23:925 INFO 32192 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 99 ms. Found 0 Redis repository interfaces.
  5721. 16:45:24:381 INFO 32192 --- [restartedMain] o.s.cloud.context.scope.GenericScope : BeanFactory id=3c481e74-3e90-36f2-b128-9d5c934cbba4
  5722. 16:45:25:426 INFO 32192 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8301 (http)
  5723. 16:45:25:439 INFO 32192 --- [restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
  5724. 16:45:25:439 INFO 32192 --- [restartedMain] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.106]
  5725. 16:45:25:457 WARN 32192 --- [restartedMain] o.a.c.webresources.DirResourceSet : Disabled the global canonical file name cache to protect against CVE-2024-56337 when starting the WebResourceSet at [C:\Users\Administrator\AppData\Local\Temp\tomcat-docbase.8301.9551372201871283584] which is part of the web application []
  5726. 16:45:25:591 INFO 32192 --- [restartedMain] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  5727. 16:45:25:591 INFO 32192 --- [restartedMain] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 3296 ms
  5728. 16:45:26:164 DEBUG 32192 --- [restartedMain] c.z.f.s.f.JwtAuthenticationTokenFilter : Filter 'jwtAuthenticationTokenFilter' configured for use
  5729. 16:45:26:955 INFO 32192 --- [restartedMain] com.alibaba.druid.pool.DruidDataSource : {dataSource-1} inited
  5730. 16:45:27:832 WARN 32192 --- [restartedMain] c.b.m.core.injector.DefaultSqlInjector : class com.zksy.base.domain.AlarmAssignDetail ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method.
  5731. 16:45:27:847 WARN 32192 --- [restartedMain] c.b.m.core.injector.DefaultSqlInjector : class com.zksy.base.domain.AlarmAssignList ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method.
  5732. 16:45:34:259 INFO 32192 --- [restartedMain] c.a.c.sentinel.SentinelWebMvcConfigurer : [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
  5733. 16:45:34:772 INFO 32192 --- [restartedMain] c.z.s.impl.MinioFileStorageServiceImpl : 初始化MinIO成功
  5734. 16:45:34:984 INFO 32192 --- [restartedMain] org.quartz.impl.StdSchedulerFactory : Using default implementation for ThreadExecutor
  5735. 16:45:34:993 INFO 32192 --- [restartedMain] org.quartz.core.SchedulerSignalerImpl : Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
  5736. 16:45:34:993 INFO 32192 --- [restartedMain] org.quartz.core.QuartzScheduler : Quartz Scheduler v.2.3.2 created.
  5737. 16:45:34:994 INFO 32192 --- [restartedMain] org.quartz.simpl.RAMJobStore : RAMJobStore initialized.
  5738. 16:45:34:994 INFO 32192 --- [restartedMain] org.quartz.core.QuartzScheduler : Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
  5739. Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  5740. NOT STARTED.
  5741. Currently in standby mode.
  5742. Number of jobs executed: 0
  5743. Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  5744. Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
  5745. 16:45:34:994 INFO 32192 --- [restartedMain] org.quartz.impl.StdSchedulerFactory : Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
  5746. 16:45:34:994 INFO 32192 --- [restartedMain] org.quartz.impl.StdSchedulerFactory : Quartz scheduler version: 2.3.2
  5747. 16:45:34:995 INFO 32192 --- [restartedMain] org.quartz.core.QuartzScheduler : JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@d33b5c
  5748. 16:45:35:059 INFO 32192 --- [restartedMain] c.z.s.impl.MinioFileStorageServiceImpl : 初始化MinIO成功
  5749. 16:45:35:578 INFO 32192 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.session.DisableEncodeUrlFilter@66f1587b, org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@3f75b7ba, org.springframework.security.web.context.SecurityContextPersistenceFilter@2f9824d8, org.springframework.security.web.header.HeaderWriterFilter@6fe983a8, org.springframework.web.filter.CorsFilter@3e9c7e2d, org.springframework.security.web.authentication.logout.LogoutFilter@3aaec536, org.springframework.web.filter.CorsFilter@3e9c7e2d, com.zksy.framework.security.filter.JwtAuthenticationTokenFilter@698def34, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@484edbc, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@7de0ebe2, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@62c75b2b, org.springframework.security.web.session.SessionManagementFilter@671051ef, org.springframework.security.web.access.ExceptionTranslationFilter@4b2900c7, org.springframework.security.web.access.intercept.AuthorizationFilter@104784b9]
  5750. 16:45:36:020 INFO 32192 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729
  5751. 16:45:36:752 INFO 32192 --- [restartedMain] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  5752. 16:45:37:609 WARN 32192 --- [restartedMain] iguration$LoadBalancerCaffeineWarnLogger : Spring Cloud LoadBalancer is currently working with the default cache. While this cache implementation is useful for development and tests, it's recommended to use Caffeine cache in production.You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath.
  5753. 16:45:37:767 INFO 32192 --- [restartedMain] com.alibaba.nacos.common.remote.client : [RpcClientFactory] create a new rpc client of 876ecaa0-b1b1-4546-83c8-32eeb4db26cc
  5754. 16:45:37:768 INFO 32192 --- [restartedMain] com.alibaba.nacos.common.remote.client : [876ecaa0-b1b1-4546-83c8-32eeb4db26cc] RpcClient init label, labels = {module=naming, source=sdk}
  5755. 16:45:37:769 INFO 32192 --- [restartedMain] com.alibaba.nacos.common.remote.client : [876ecaa0-b1b1-4546-83c8-32eeb4db26cc] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
  5756. 16:45:37:770 INFO 32192 --- [restartedMain] com.alibaba.nacos.common.remote.client : [876ecaa0-b1b1-4546-83c8-32eeb4db26cc] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
  5757. 16:45:37:770 INFO 32192 --- [restartedMain] com.alibaba.nacos.common.remote.client : [876ecaa0-b1b1-4546-83c8-32eeb4db26cc] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
  5758. 16:45:37:771 INFO 32192 --- [restartedMain] com.alibaba.nacos.common.remote.client : [876ecaa0-b1b1-4546-83c8-32eeb4db26cc] Try to connect to server on start up, server: {serverIp = '192.168.110.30', server main port = 8848}
  5759. 16:45:37:891 INFO 32192 --- [restartedMain] com.alibaba.nacos.common.remote.client : [876ecaa0-b1b1-4546-83c8-32eeb4db26cc] Success to connect to server [192.168.110.30:8848] on start up, connectionId = 1784623537525_192.168.110.235_61992
  5760. 16:45:37:891 INFO 32192 --- [restartedMain] com.alibaba.nacos.common.remote.client : [876ecaa0-b1b1-4546-83c8-32eeb4db26cc] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
  5761. 16:45:37:892 INFO 32192 --- [restartedMain] com.alibaba.nacos.common.remote.client : [876ecaa0-b1b1-4546-83c8-32eeb4db26cc] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$490/0x0000000800455840
  5762. 16:45:37:891 INFO 32192 --- [com.alibaba.nacos.client.remote.worker] com.alibaba.nacos.common.remote.client : [876ecaa0-b1b1-4546-83c8-32eeb4db26cc] Notify connected event to listeners.
  5763. 16:45:37:950 INFO 32192 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8301 (http) with context path ''
  5764. 16:45:37:959 INFO 32192 --- [restartedMain] c.a.c.n.registry.NacosServiceRegistry : nacos registry, DEFAULT_GROUP pipe-network-service 192.168.110.235:8301 register finished
  5765. 16:45:38:291 INFO 32192 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Documentation plugins bootstrapped
  5766. 16:45:38:294 INFO 32192 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
  5767. 16:45:38:427 INFO 32192 --- [nacos-grpc-client-executor-7] com.alibaba.nacos.common.remote.client : [876ecaa0-b1b1-4546-83c8-32eeb4db26cc] Receive server push request, request = NotifySubscriberRequest, requestId = 96
  5768. 16:45:38:430 INFO 32192 --- [nacos-grpc-client-executor-7] com.alibaba.nacos.common.remote.client : [876ecaa0-b1b1-4546-83c8-32eeb4db26cc] Ack server push request, request = NotifySubscriberRequest, requestId = 96
  5769. 16:45:38:472 INFO 32192 --- [restartedMain] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
  5770. 16:45:38:542 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingPOST_1
  5771. 16:45:38:560 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_1
  5772. 16:45:38:563 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_1
  5773. 16:45:38:570 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_1
  5774. 16:45:38:578 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingPOST_2
  5775. 16:45:38:578 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingPOST_3
  5776. 16:45:38:581 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_2
  5777. 16:45:38:582 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_3
  5778. 16:45:38:583 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_2
  5779. 16:45:38:583 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_3
  5780. 16:45:38:596 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_1
  5781. 16:45:38:598 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_2
  5782. 16:45:38:599 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_3
  5783. 16:45:38:602 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_2
  5784. 16:45:38:603 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_3
  5785. 16:45:38:604 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getActivePointsUsingGET_1
  5786. 16:45:38:605 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_4
  5787. 16:45:38:605 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_5
  5788. 16:45:38:607 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingPUT_1
  5789. 16:45:38:609 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_1
  5790. 16:45:38:611 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_4
  5791. 16:45:38:612 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_5
  5792. 16:45:38:613 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAlarmDataListUsingGET_1
  5793. 16:45:38:614 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_6
  5794. 16:45:38:614 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_7
  5795. 16:45:38:620 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingPOST_1
  5796. 16:45:38:621 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_4
  5797. 16:45:38:622 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_5
  5798. 16:45:38:623 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_4
  5799. 16:45:38:624 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_5
  5800. 16:45:38:626 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: customAlarmUsingPOST_1
  5801. 16:45:38:626 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: simulateEnvironmentUsingGET_1
  5802. 16:45:38:627 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: simulateGasUsingGET_1
  5803. 16:45:38:628 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: simulateManholeUsingGET_1
  5804. 16:45:38:630 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: cacheUsingGET_1
  5805. 16:45:38:631 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: clearCacheAllUsingDELETE_1
  5806. 16:45:38:632 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: clearCacheKeyUsingDELETE_1
  5807. 16:45:38:633 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: clearCacheNameUsingDELETE_1
  5808. 16:45:38:633 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getCacheKeysUsingGET_1
  5809. 16:45:38:634 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getCacheValueUsingGET_1
  5810. 16:45:38:635 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_1
  5811. 16:45:38:636 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getCodeUsingGET_1
  5812. 16:45:38:640 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveWarningThresholdUsingPOST_1
  5813. 16:45:38:642 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: verifyCaseInfoUsingPOST_1
  5814. 16:45:38:653 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_1
  5815. 16:45:38:654 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_8
  5816. 16:45:38:655 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_9
  5817. 16:45:38:657 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: uploadFileUsingPOST_1
  5818. 16:45:38:657 WARN 32192 --- [restartedMain] s.d.s.w.r.p.ParameterDataTypeReader : Trying to infer dataType java.util.List<org.springframework.web.multipart.MultipartFile>
  5819. 16:45:38:658 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: uploadFilesUsingPOST_1
  5820. 16:45:38:658 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: fileDownloadUsingGET_1
  5821. 16:45:38:659 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resourceDownloadUsingGET_1
  5822. 16:45:38:661 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportAbnormalDevicesUsingPOST_1
  5823. 16:45:38:663 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAbnormalDevicePageUsingGET_1
  5824. 16:45:38:663 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAbnormalGisPointsUsingGET_1
  5825. 16:45:38:666 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAbnormalPointsUsingGET_1
  5826. 16:45:38:667 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllDevicePointsUsingGET_1
  5827. 16:45:38:667 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceDetailUsingGET_1
  5828. 16:45:38:668 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getGisStatisticsUsingGET_1
  5829. 16:45:38:671 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportDeviceLedgerUsingPOST_1
  5830. 16:45:38:672 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDevicePageUsingGET_1
  5831. 16:45:38:673 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getGisPointsUsingGET_1
  5832. 16:45:38:674 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTypeStatisticsUsingGET_1
  5833. 16:45:38:678 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: createMaintainOrderUsingPOST_1
  5834. 16:45:38:679 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteMaintainRecordUsingDELETE_1
  5835. 16:45:38:680 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportMaintainRecordsUsingPOST_1
  5836. 16:45:38:680 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getMaintainRecordListUsingGET_1
  5837. 16:45:38:682 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getMaintainRecordPageUsingGET_1
  5838. 16:45:38:683 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getMyMaintainRecordPageUsingGET_1
  5839. 16:45:38:684 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: importMaintainRecordsUsingPOST_1
  5840. 16:45:38:687 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveMaintainRecordUsingPOST_1
  5841. 16:45:38:688 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateMaintainRecordUsingPUT_1
  5842. 16:45:38:689 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_1
  5843. 16:45:38:697 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_6
  5844. 16:45:38:698 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_7
  5845. 16:45:38:698 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_10
  5846. 16:45:38:699 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_11
  5847. 16:45:38:699 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listByCategoryUsingGET_1
  5848. 16:45:38:701 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_6
  5849. 16:45:38:701 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_7
  5850. 16:45:38:702 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_1
  5851. 16:45:38:704 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_2
  5852. 16:45:38:704 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_3
  5853. 16:45:38:707 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_8
  5854. 16:45:38:707 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_9
  5855. 16:45:38:708 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_12
  5856. 16:45:38:708 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_13
  5857. 16:45:38:712 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_8
  5858. 16:45:38:712 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_9
  5859. 16:45:38:713 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_2
  5860. 16:45:38:713 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_3
  5861. 16:45:38:716 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: acceptUsingPUT_1
  5862. 16:45:38:716 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_4
  5863. 16:45:38:717 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_5
  5864. 16:45:38:719 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_10
  5865. 16:45:38:719 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_11
  5866. 16:45:38:720 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_14
  5867. 16:45:38:720 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_15
  5868. 16:45:38:721 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: rejectUsingPUT_1
  5869. 16:45:38:723 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_10
  5870. 16:45:38:724 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_11
  5871. 16:45:38:724 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_4
  5872. 16:45:38:725 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_5
  5873. 16:45:38:729 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addTrackLogUsingPOST_1
  5874. 16:45:38:729 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: closeUsingPUT_1
  5875. 16:45:38:730 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_6
  5876. 16:45:38:730 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_7
  5877. 16:45:38:734 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_12
  5878. 16:45:38:735 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_13
  5879. 16:45:38:736 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_16
  5880. 16:45:38:736 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_17
  5881. 16:45:38:737 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrackLogsUsingGET_1
  5882. 16:45:38:738 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: releaseUsingPUT_1
  5883. 16:45:38:741 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_12
  5884. 16:45:38:741 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_13
  5885. 16:45:38:742 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_6
  5886. 16:45:38:742 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_7
  5887. 16:45:38:743 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_8
  5888. 16:45:38:743 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_9
  5889. 16:45:38:745 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: doReportUsingPUT_1
  5890. 16:45:38:749 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: doTransferUsingPUT_1
  5891. 16:45:38:752 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_14
  5892. 16:45:38:752 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_15
  5893. 16:45:38:752 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_18
  5894. 16:45:38:753 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_19
  5895. 16:45:38:754 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTransferLogsUsingGET_1
  5896. 16:45:38:755 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_14
  5897. 16:45:38:755 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_15
  5898. 16:45:38:755 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_8
  5899. 16:45:38:756 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_9
  5900. 16:45:38:757 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: closeUrgeUsingPUT_1
  5901. 16:45:38:757 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_10
  5902. 16:45:38:758 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_11
  5903. 16:45:38:760 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: doUrgeUsingPOST_1
  5904. 16:45:38:762 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_16
  5905. 16:45:38:763 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_17
  5906. 16:45:38:763 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_20
  5907. 16:45:38:763 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_21
  5908. 16:45:38:764 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getUrgeDetailsUsingGET_1
  5909. 16:45:38:766 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_16
  5910. 16:45:38:767 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_17
  5911. 16:45:38:767 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_10
  5912. 16:45:38:767 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_11
  5913. 16:45:38:769 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_12
  5914. 16:45:38:769 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_13
  5915. 16:45:38:772 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_18
  5916. 16:45:38:772 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_19
  5917. 16:45:38:773 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_22
  5918. 16:45:38:773 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_23
  5919. 16:45:38:776 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_18
  5920. 16:45:38:776 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_19
  5921. 16:45:38:777 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_12
  5922. 16:45:38:777 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_13
  5923. 16:45:38:778 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: verifyUsingPUT_1
  5924. 16:45:38:780 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: approveUsingPUT_1
  5925. 16:45:38:781 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_14
  5926. 16:45:38:781 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_15
  5927. 16:45:38:783 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_20
  5928. 16:45:38:784 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_21
  5929. 16:45:38:784 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_24
  5930. 16:45:38:785 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_25
  5931. 16:45:38:785 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: publishUsingPUT_1
  5932. 16:45:38:786 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: rejectUsingPUT_2
  5933. 16:45:38:786 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: rejectUsingPUT_3
  5934. 16:45:38:789 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_20
  5935. 16:45:38:789 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_21
  5936. 16:45:38:790 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: submitForApprovalUsingPUT_1
  5937. 16:45:38:790 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: submitFromPlanUsingPOST_1
  5938. 16:45:38:791 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_14
  5939. 16:45:38:791 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_15
  5940. 16:45:38:792 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_16
  5941. 16:45:38:793 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_17
  5942. 16:45:38:795 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_22
  5943. 16:45:38:795 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_23
  5944. 16:45:38:796 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_26
  5945. 16:45:38:796 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_27
  5946. 16:45:38:797 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listByApprovalIdUsingGET_1
  5947. 16:45:38:799 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_22
  5948. 16:45:38:799 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_23
  5949. 16:45:38:800 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_16
  5950. 16:45:38:800 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_17
  5951. 16:45:38:801 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_18
  5952. 16:45:38:802 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_19
  5953. 16:45:38:804 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_24
  5954. 16:45:38:804 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_25
  5955. 16:45:38:805 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_28
  5956. 16:45:38:805 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_29
  5957. 16:45:38:806 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getCategoryTreeUsingGET_1
  5958. 16:45:38:808 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_24
  5959. 16:45:38:808 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_25
  5960. 16:45:38:809 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_18
  5961. 16:45:38:809 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_19
  5962. 16:45:38:821 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: maintainPageUsingGET_1
  5963. 16:45:38:824 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pointRelPageUsingGET_1
  5964. 16:45:38:828 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statusPageUsingGET_1
  5965. 16:45:38:831 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: testPageUsingGET_1
  5966. 16:45:38:834 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: typePageUsingGET_1
  5967. 16:45:38:841 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: basePageUsingGET_1
  5968. 16:45:38:842 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: baseDeleteUsingDELETE_1
  5969. 16:45:38:843 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: baseDeleteBatchUsingDELETE_1
  5970. 16:45:38:844 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: baseGetByIdUsingGET_1
  5971. 16:45:38:844 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: baseListUsingGET_1
  5972. 16:45:38:847 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: baseSaveUsingPOST_1
  5973. 16:45:38:848 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: baseUpdateUsingPUT_1
  5974. 16:45:38:848 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: maintainDeleteUsingDELETE_1
  5975. 16:45:38:849 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: maintainDeleteBatchUsingDELETE_1
  5976. 16:45:38:850 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: maintainGetByIdUsingGET_1
  5977. 16:45:38:851 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: maintainSaveUsingPOST_1
  5978. 16:45:38:852 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: maintainUpdateUsingPUT_1
  5979. 16:45:38:853 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pointRelByEquipmentUsingGET_1
  5980. 16:45:38:854 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pointRelByPointUsingGET_1
  5981. 16:45:38:854 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pointRelDeleteUsingDELETE_1
  5982. 16:45:38:855 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pointRelDeleteBatchUsingDELETE_1
  5983. 16:45:38:857 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pointRelSaveUsingPOST_1
  5984. 16:45:38:858 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pointRelSaveBatchUsingPOST_1
  5985. 16:45:38:859 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statusDeleteUsingDELETE_1
  5986. 16:45:38:859 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statusGetByIdUsingGET_1
  5987. 16:45:38:860 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statusSaveUsingPOST_1
  5988. 16:45:38:861 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statusUpdateUsingPUT_1
  5989. 16:45:38:862 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: testDeleteUsingDELETE_1
  5990. 16:45:38:863 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: testDeleteBatchUsingDELETE_1
  5991. 16:45:38:863 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: testGetByIdUsingGET_1
  5992. 16:45:38:865 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: testSaveUsingPOST_1
  5993. 16:45:38:866 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: testUpdateUsingPUT_1
  5994. 16:45:38:867 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: typeDeleteUsingDELETE_1
  5995. 16:45:38:868 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: typeDeleteBatchUsingDELETE_1
  5996. 16:45:38:868 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: typeGetByIdUsingGET_1
  5997. 16:45:38:869 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: typeListUsingGET_1
  5998. 16:45:38:870 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: typeSaveUsingPOST_1
  5999. 16:45:38:871 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: typeUpdateUsingPUT_1
  6000. 16:45:38:872 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_30
  6001. 16:45:38:872 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_31
  6002. 16:45:38:873 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_1
  6003. 16:45:38:878 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_1
  6004. 16:45:38:879 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_1
  6005. 16:45:38:879 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: boundEquipmentIdsUsingGET_1
  6006. 16:45:38:880 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingDELETE_1
  6007. 16:45:38:881 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_20
  6008. 16:45:38:881 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_21
  6009. 16:45:38:881 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_32
  6010. 16:45:38:882 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_33
  6011. 16:45:38:882 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_2
  6012. 16:45:38:882 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_3
  6013. 16:45:38:884 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_26
  6014. 16:45:38:884 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_27
  6015. 16:45:38:885 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_1
  6016. 16:45:38:888 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_34
  6017. 16:45:38:888 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_35
  6018. 16:45:38:888 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_4
  6019. 16:45:38:889 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_5
  6020. 16:45:38:889 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: monthlyStatsUsingGET_1
  6021. 16:45:38:890 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_2
  6022. 16:45:38:890 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_3
  6023. 16:45:38:901 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: currentPageUsingGET_1
  6024. 16:45:38:903 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: historyPageUsingGET_1
  6025. 16:45:38:905 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_4
  6026. 16:45:38:905 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_5
  6027. 16:45:38:906 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_22
  6028. 16:45:38:906 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_23
  6029. 16:45:38:907 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: finalApproveUsingPUT_1
  6030. 16:45:38:908 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: firstApproveUsingPUT_1
  6031. 16:45:38:908 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_36
  6032. 16:45:38:908 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_37
  6033. 16:45:38:913 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: publishUsingPOST_1
  6034. 16:45:38:914 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_28
  6035. 16:45:38:915 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_29
  6036. 16:45:38:915 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: scopeUsersUsingGET_1
  6037. 16:45:38:916 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_2
  6038. 16:45:38:916 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_3
  6039. 16:45:38:917 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateStatusUsingPUT_1
  6040. 16:45:38:919 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_1
  6041. 16:45:38:920 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_6
  6042. 16:45:38:920 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_7
  6043. 16:45:38:922 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_30
  6044. 16:45:38:922 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_31
  6045. 16:45:38:922 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_4
  6046. 16:45:38:923 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_5
  6047. 16:45:38:924 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_2
  6048. 16:45:38:924 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_3
  6049. 16:45:38:925 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_8
  6050. 16:45:38:925 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_9
  6051. 16:45:38:928 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_32
  6052. 16:45:38:928 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_33
  6053. 16:45:38:929 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_6
  6054. 16:45:38:929 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_7
  6055. 16:45:38:931 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePlanUsingDELETE_1
  6056. 16:45:38:931 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteTemplateUsingDELETE_1
  6057. 16:45:38:932 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: plansUsingGET_1
  6058. 16:45:38:932 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resultUsingGET_1
  6059. 16:45:38:934 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: savePlanUsingPOST_1
  6060. 16:45:38:936 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveTemplateUsingPOST_1
  6061. 16:45:38:936 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: templatesUsingGET_1
  6062. 16:45:38:937 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updatePlanUsingPUT_1
  6063. 16:45:38:938 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateTemplateUsingPUT_1
  6064. 16:45:38:942 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addLogUsingPOST_1
  6065. 16:45:38:942 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteEventUsingDELETE_1
  6066. 16:45:38:943 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteProjectUsingDELETE_1
  6067. 16:45:38:943 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteRoleUsingDELETE_1
  6068. 16:45:38:944 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteSceneUsingDELETE_1
  6069. 16:45:38:944 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteTaskUsingDELETE_1
  6070. 16:45:38:945 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: eventUsingGET_1
  6071. 16:45:38:946 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: logUsingGET_1
  6072. 16:45:38:946 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: processUsingPOST_1
  6073. 16:45:38:947 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: projectsUsingGET_1
  6074. 16:45:38:947 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resultUsingGET_2
  6075. 16:45:38:947 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resultUsingGET_3
  6076. 16:45:38:947 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: roleUsingGET_1
  6077. 16:45:38:949 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveEventUsingPOST_1
  6078. 16:45:38:950 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveProjectUsingPOST_1
  6079. 16:45:38:951 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveRoleUsingPOST_1
  6080. 16:45:38:952 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveSceneUsingPOST_1
  6081. 16:45:38:953 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveTaskUsingPOST_1
  6082. 16:45:38:954 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: sceneUsingGET_1
  6083. 16:45:38:954 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: taskUsingGET_1
  6084. 16:45:38:956 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAlarmsUsingGET_1
  6085. 16:45:38:957 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDailyStatsUsingGET_1
  6086. 16:45:38:958 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_1
  6087. 16:45:38:959 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestUsingGET_1
  6088. 16:45:38:960 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendUsingGET_1
  6089. 16:45:38:972 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addLeaderInstructionUsingPOST_1
  6090. 16:45:38:973 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchWarningUsingDELETE_1
  6091. 16:45:38:974 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteWarningUsingDELETE_1
  6092. 16:45:38:974 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getArchiveUsingGET_1
  6093. 16:45:38:976 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getArchiveListUsingGET_1
  6094. 16:45:38:976 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAttachmentsUsingGET_1
  6095. 16:45:38:977 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getCompletedWarningsUsingGET_1
  6096. 16:45:38:978 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDashboardStatisticsUsingGET_1
  6097. 16:45:38:979 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDisposalDetailUsingGET_1
  6098. 16:45:38:979 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDisposalHistoryUsingGET_1
  6099. 16:45:38:980 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDisposalListUsingGET_1
  6100. 16:45:38:981 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDisposalProcessUsingGET_1
  6101. 16:45:38:981 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLinkedAlarmsUsingGET_1
  6102. 16:45:38:982 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getProcessDiagramUsingGET_1
  6103. 16:45:38:983 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getProcessStatisticsUsingGET_1
  6104. 16:45:38:984 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getProcessingWarningsUsingGET_1
  6105. 16:45:38:984 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getStatisticsUsingGET_1
  6106. 16:45:38:985 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTodoListUsingGET_1
  6107. 16:45:38:986 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getWarningDetailUsingGET_1
  6108. 16:45:38:987 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getWarningFullDetailUsingGET_1
  6109. 16:45:38:989 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getWarningListUsingGET_1
  6110. 16:45:38:990 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: linkAlarmsUsingPOST_1
  6111. 16:45:38:991 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: publishWarningUsingPOST_1
  6112. 16:45:38:992 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resolveWarningUsingPOST_1
  6113. 16:45:38:992 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: returnWarningUsingPOST_1
  6114. 16:45:38:994 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveWarningUsingPOST_1
  6115. 16:45:38:995 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: searchWarningsUsingGET_1
  6116. 16:45:38:997 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: supervisionWarningUsingPOST_1
  6117. 16:45:38:998 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateWarningUsingPUT_1
  6118. 16:45:38:999 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: upgradeWarningUsingPOST_1
  6119. 16:45:39:005 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getBySpecialUsingGET_1
  6120. 16:45:39:006 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getOverviewUsingGET_1
  6121. 16:45:39:008 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getRangeUsingGET_1
  6122. 16:45:39:009 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_1
  6123. 16:45:39:011 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDisposeStatusStatUsingGET_1
  6124. 16:45:39:014 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByTypeUsingGET_1
  6125. 16:45:39:015 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getOverviewUsingGET_2
  6126. 16:45:39:015 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getOverviewUsingGET_3
  6127. 16:45:39:016 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getRangeUsingGET_2
  6128. 16:45:39:016 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getRangeUsingGET_3
  6129. 16:45:39:017 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_2
  6130. 16:45:39:017 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_3
  6131. 16:45:39:019 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTodayStatsUsingGET_1
  6132. 16:45:39:019 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryTodayPageUsingGET_1
  6133. 16:45:39:021 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendByDayUsingGET_1
  6134. 16:45:39:022 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendByMonthUsingGET_1
  6135. 16:45:39:027 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_6
  6136. 16:45:39:027 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_7
  6137. 16:45:39:028 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_2
  6138. 16:45:39:029 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_3
  6139. 16:45:39:030 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindPumpStationUsingPOST_1
  6140. 16:45:39:031 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingDELETE_2
  6141. 16:45:39:031 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingDELETE_3
  6142. 16:45:39:031 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_24
  6143. 16:45:39:032 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_25
  6144. 16:45:39:032 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_38
  6145. 16:45:39:032 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_39
  6146. 16:45:39:033 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_10
  6147. 16:45:39:033 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_11
  6148. 16:45:39:035 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_34
  6149. 16:45:39:035 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_35
  6150. 16:45:39:036 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_8
  6151. 16:45:39:036 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_9
  6152. 16:45:39:038 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_1
  6153. 16:45:39:039 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getStatsUsingGET_1
  6154. 16:45:39:043 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_26
  6155. 16:45:39:043 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_27
  6156. 16:45:39:044 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_1
  6157. 16:45:39:044 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_26
  6158. 16:45:39:044 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_27
  6159. 16:45:39:045 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByTopLevelTypeUsingGET_1
  6160. 16:45:39:045 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_40
  6161. 16:45:39:046 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_41
  6162. 16:45:39:046 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getEquipmentByPointUsingGET_1
  6163. 16:45:39:047 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getEquipmentDetailUsingGET_1
  6164. 16:45:39:047 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_2
  6165. 16:45:39:047 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_3
  6166. 16:45:39:048 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_36
  6167. 16:45:39:048 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_37
  6168. 16:45:39:049 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_1
  6169. 16:45:39:050 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: testEquipmentUsingPOST_1
  6170. 16:45:39:050 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_20
  6171. 16:45:39:050 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_21
  6172. 16:45:39:051 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateEquipmentStatusUsingPUT_1
  6173. 16:45:39:053 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_28
  6174. 16:45:39:053 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_29
  6175. 16:45:39:054 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_2
  6176. 16:45:39:054 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_3
  6177. 16:45:39:054 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_28
  6178. 16:45:39:055 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_29
  6179. 16:45:39:055 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_42
  6180. 16:45:39:055 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_43
  6181. 16:45:39:056 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_4
  6182. 16:45:39:056 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_5
  6183. 16:45:39:056 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_38
  6184. 16:45:39:057 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_39
  6185. 16:45:39:057 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_2
  6186. 16:45:39:058 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_3
  6187. 16:45:39:059 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_22
  6188. 16:45:39:059 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_23
  6189. 16:45:39:061 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_30
  6190. 16:45:39:061 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_31
  6191. 16:45:39:062 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_4
  6192. 16:45:39:062 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_5
  6193. 16:45:39:062 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_30
  6194. 16:45:39:063 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_31
  6195. 16:45:39:063 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_44
  6196. 16:45:39:063 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_45
  6197. 16:45:39:064 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_6
  6198. 16:45:39:064 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_7
  6199. 16:45:39:065 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_40
  6200. 16:45:39:065 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_41
  6201. 16:45:39:067 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_4
  6202. 16:45:39:067 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_5
  6203. 16:45:39:067 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_24
  6204. 16:45:39:068 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_25
  6205. 16:45:39:070 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_32
  6206. 16:45:39:070 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_33
  6207. 16:45:39:070 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_6
  6208. 16:45:39:071 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_7
  6209. 16:45:39:071 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_32
  6210. 16:45:39:071 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_33
  6211. 16:45:39:072 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_46
  6212. 16:45:39:072 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_47
  6213. 16:45:39:072 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_8
  6214. 16:45:39:072 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_9
  6215. 16:45:39:073 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_42
  6216. 16:45:39:073 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_43
  6217. 16:45:39:074 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_6
  6218. 16:45:39:074 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_7
  6219. 16:45:39:075 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_26
  6220. 16:45:39:075 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_27
  6221. 16:45:39:076 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAlarmCountsUsingGET_1
  6222. 16:45:39:077 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAveragePressureUsingGET_1
  6223. 16:45:39:077 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDailyStatsUsingGET_2
  6224. 16:45:39:078 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDailyStatsUsingGET_3
  6225. 16:45:39:078 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_2
  6226. 16:45:39:078 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_3
  6227. 16:45:39:079 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPressureDistributionUsingGET_1
  6228. 16:45:39:080 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getSignalVsPressureUsingGET_1
  6229. 16:45:39:083 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportFlowMonitorDataUsingGET_1
  6230. 16:45:39:085 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getFlowMonitorPageUsingGET_1
  6231. 16:45:39:086 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getFlowTrend24hUsingGET_1
  6232. 16:45:39:087 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: dispatchUsingPOST_1
  6233. 16:45:39:088 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: equipmentUsingGET_1
  6234. 16:45:39:089 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: historyUsingGET_1
  6235. 16:45:39:089 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resolveUsingPUT_1
  6236. 16:45:39:090 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statsUsingGET_1
  6237. 16:45:39:091 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: summaryUsingGET_1
  6238. 16:45:39:094 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_34
  6239. 16:45:39:094 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_35
  6240. 16:45:39:095 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePointRelUsingDELETE_1
  6241. 16:45:39:096 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findFullByPageUsingGET_1
  6242. 16:45:39:097 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAbnormalListUsingGET_1
  6243. 16:45:39:098 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getEquipmentStatusUsingGET_1
  6244. 16:45:39:099 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPointRelByEquipmentUsingGET_1
  6245. 16:45:39:100 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPointRelByPointUsingGET_1
  6246. 16:45:39:100 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_44
  6247. 16:45:39:100 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_45
  6248. 16:45:39:102 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveDeviceRelUsingPOST_1
  6249. 16:45:39:103 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: savePointRelUsingPOST_1
  6250. 16:45:39:104 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: savePointRelBatchUsingPOST_1
  6251. 16:45:39:105 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_28
  6252. 16:45:39:105 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_29
  6253. 16:45:39:107 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_36
  6254. 16:45:39:108 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_37
  6255. 16:45:39:108 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteDeviceRelUsingDELETE_1
  6256. 16:45:39:111 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_34
  6257. 16:45:39:111 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_35
  6258. 16:45:39:111 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_48
  6259. 16:45:39:112 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_49
  6260. 16:45:39:112 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_12
  6261. 16:45:39:112 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_13
  6262. 16:45:39:113 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listDevicesUsingGET_1
  6263. 16:45:39:114 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionsUsingGET_1
  6264. 16:45:39:118 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_46
  6265. 16:45:39:119 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_47
  6266. 16:45:39:121 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveDeviceRelUsingPOST_2
  6267. 16:45:39:121 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveDeviceRelUsingPOST_3
  6268. 16:45:39:123 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveDeviceRelBatchUsingPOST_1
  6269. 16:45:39:124 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_30
  6270. 16:45:39:124 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_31
  6271. 16:45:39:126 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPointsUsingGET_1
  6272. 16:45:39:126 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendUsingGET_2
  6273. 16:45:39:126 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendUsingGET_3
  6274. 16:45:39:128 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAlarmsUsingGET_2
  6275. 16:45:39:129 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAlarmsUsingGET_3
  6276. 16:45:39:129 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDailyStatsUsingGET_4
  6277. 16:45:39:129 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDailyStatsUsingGET_5
  6278. 16:45:39:130 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_4
  6279. 16:45:39:130 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_5
  6280. 16:45:39:131 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataUsingGET_1
  6281. 16:45:39:131 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestWithAlarmUsingGET_1
  6282. 16:45:39:132 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getOnlineRateUsingGET_1
  6283. 16:45:39:132 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendUsingGET_4
  6284. 16:45:39:133 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendUsingGET_5
  6285. 16:45:39:135 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_38
  6286. 16:45:39:135 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_39
  6287. 16:45:39:139 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_36
  6288. 16:45:39:140 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_37
  6289. 16:45:39:141 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_50
  6290. 16:45:39:142 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_51
  6291. 16:45:39:145 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_48
  6292. 16:45:39:146 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_49
  6293. 16:45:39:146 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_32
  6294. 16:45:39:146 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_33
  6295. 16:45:39:148 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_40
  6296. 16:45:39:148 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_41
  6297. 16:45:39:151 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_38
  6298. 16:45:39:152 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_39
  6299. 16:45:39:152 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_52
  6300. 16:45:39:153 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_53
  6301. 16:45:39:153 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionsUsingGET_2
  6302. 16:45:39:153 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionsUsingGET_3
  6303. 16:45:39:156 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_50
  6304. 16:45:39:156 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_51
  6305. 16:45:39:157 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_34
  6306. 16:45:39:158 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_35
  6307. 16:45:39:158 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportDataUsingGET_1
  6308. 16:45:39:160 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_42
  6309. 16:45:39:161 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_43
  6310. 16:45:39:161 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteDeviceRelUsingDELETE_2
  6311. 16:45:39:161 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteDeviceRelUsingDELETE_3
  6312. 16:45:39:164 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_40
  6313. 16:45:39:164 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_41
  6314. 16:45:39:165 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_54
  6315. 16:45:39:165 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_55
  6316. 16:45:39:166 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listByNetworkIdUsingGET_1
  6317. 16:45:39:166 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listDevicesUsingGET_2
  6318. 16:45:39:166 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listDevicesUsingGET_3
  6319. 16:45:39:167 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionsUsingGET_4
  6320. 16:45:39:167 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionsUsingGET_5
  6321. 16:45:39:170 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_52
  6322. 16:45:39:170 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_53
  6323. 16:45:39:171 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveDeviceRelUsingPOST_4
  6324. 16:45:39:171 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveDeviceRelUsingPOST_5
  6325. 16:45:39:172 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveDeviceRelBatchUsingPOST_2
  6326. 16:45:39:172 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveDeviceRelBatchUsingPOST_3
  6327. 16:45:39:173 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_36
  6328. 16:45:39:173 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_37
  6329. 16:45:39:174 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_44
  6330. 16:45:39:175 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_45
  6331. 16:45:39:177 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_42
  6332. 16:45:39:177 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_43
  6333. 16:45:39:178 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_56
  6334. 16:45:39:178 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_57
  6335. 16:45:39:178 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listByNetworkIdUsingGET_2
  6336. 16:45:39:179 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listByNetworkIdUsingGET_3
  6337. 16:45:39:180 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_54
  6338. 16:45:39:181 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_55
  6339. 16:45:39:181 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statsUsingGET_2
  6340. 16:45:39:181 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statsUsingGET_3
  6341. 16:45:39:182 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_38
  6342. 16:45:39:182 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_39
  6343. 16:45:39:183 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getEquipmentsUsingGET_1
  6344. 16:45:39:184 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getManholesUsingGET_1
  6345. 16:45:39:184 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPipeLinesUsingGET_1
  6346. 16:45:39:187 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_46
  6347. 16:45:39:187 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_47
  6348. 16:45:39:187 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportDataUsingGET_2
  6349. 16:45:39:188 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportDataUsingGET_3
  6350. 16:45:39:188 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_58
  6351. 16:45:39:188 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_59
  6352. 16:45:39:189 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getMapPointsUsingGET_1
  6353. 16:45:39:191 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_8
  6354. 16:45:39:191 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_9
  6355. 16:45:39:195 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_56
  6356. 16:45:39:195 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_57
  6357. 16:45:39:196 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsByLevelUsingGET_1
  6358. 16:45:39:197 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsByRegionUsingGET_1
  6359. 16:45:39:197 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsByStatusUsingGET_1
  6360. 16:45:39:198 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsByTypeUsingGET_1
  6361. 16:45:39:199 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsOverviewUsingGET_1
  6362. 16:45:39:199 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsStatusTimelineUsingGET_1
  6363. 16:45:39:200 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsTypeTimelineUsingGET_1
  6364. 16:45:39:201 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: submitUsingPUT_1
  6365. 16:45:39:201 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_40
  6366. 16:45:39:201 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_41
  6367. 16:45:39:204 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportLeakageMonitorDataUsingGET_1
  6368. 16:45:39:205 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLeakageMonitorPageUsingGET_1
  6369. 16:45:39:206 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLeakageTrend24hUsingGET_1
  6370. 16:45:39:229 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryByDateUsingPOST_1
  6371. 16:45:39:233 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: abnormalTerminalTrendUsingPOST_1
  6372. 16:45:39:235 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: caseRateTrendUsingPOST_1
  6373. 16:45:39:239 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: batchDispatchUsingPOST_1
  6374. 16:45:39:240 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: processTaskUsingPOST_1
  6375. 16:45:39:246 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_2
  6376. 16:45:39:246 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_3
  6377. 16:45:39:247 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_60
  6378. 16:45:39:247 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_61
  6379. 16:45:39:251 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllImeiCardNumbersUsingGET_1
  6380. 16:45:39:252 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataByImeiUsingGET_1
  6381. 16:45:39:252 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getOverallStatisticsUsingGET_1
  6382. 16:45:39:253 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryAlarmDataUsingGET_1
  6383. 16:45:39:254 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_4
  6384. 16:45:39:254 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_5
  6385. 16:45:39:255 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statAlarmTrendByHourUsingGET_1
  6386. 16:45:39:255 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statManholeByDeviceUsingGET_1
  6387. 16:45:39:256 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statTemperatureTrendByHourUsingGET_1
  6388. 16:45:39:259 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveWarningThresholdUsingPOST_2
  6389. 16:45:39:259 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveWarningThresholdUsingPOST_3
  6390. 16:45:39:261 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateDeviceStatusUsingPOST_1
  6391. 16:45:39:269 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_4
  6392. 16:45:39:269 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_5
  6393. 16:45:39:270 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_62
  6394. 16:45:39:270 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_63
  6395. 16:45:39:273 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getManholeDataListUsingPOST_1
  6396. 16:45:39:275 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: countByTypeUsingPOST_1
  6397. 16:45:39:276 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_1
  6398. 16:45:39:279 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_44
  6399. 16:45:39:280 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_45
  6400. 16:45:39:281 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_4
  6401. 16:45:39:281 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_5
  6402. 16:45:39:281 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_8
  6403. 16:45:39:282 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_9
  6404. 16:45:39:282 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_48
  6405. 16:45:39:282 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_49
  6406. 16:45:39:283 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_64
  6407. 16:45:39:283 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_65
  6408. 16:45:39:283 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_10
  6409. 16:45:39:283 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_11
  6410. 16:45:39:284 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPointDetailUsingGET_1
  6411. 16:45:39:285 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPointsByNetworkUsingGET_1
  6412. 16:45:39:285 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_58
  6413. 16:45:39:285 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_59
  6414. 16:45:39:286 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_8
  6415. 16:45:39:286 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_9
  6416. 16:45:39:287 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: unbindEquipmentUsingPOST_1
  6417. 16:45:39:287 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_42
  6418. 16:45:39:288 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_43
  6419. 16:45:39:290 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllDeviceCodesUsingGET_1
  6420. 16:45:39:290 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataByDeviceUsingGET_1
  6421. 16:45:39:291 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryAbnormalDataUsingGET_1
  6422. 16:45:39:291 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_6
  6423. 16:45:39:292 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_7
  6424. 16:45:39:292 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statPowerByDeviceUsingGET_1
  6425. 16:45:39:293 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statPowerTrendByHourUsingGET_1
  6426. 16:45:39:295 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_46
  6427. 16:45:39:296 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_47
  6428. 16:45:39:296 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_10
  6429. 16:45:39:296 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchByIdUsingDELETE_11
  6430. 16:45:39:297 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_50
  6431. 16:45:39:297 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_51
  6432. 16:45:39:297 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_66
  6433. 16:45:39:297 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_67
  6434. 16:45:39:298 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_12
  6435. 16:45:39:298 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getListUsingGET_13
  6436. 16:45:39:299 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_60
  6437. 16:45:39:299 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_61
  6438. 16:45:39:300 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_10
  6439. 16:45:39:300 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveBatchUsingPOST_11
  6440. 16:45:39:300 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_44
  6441. 16:45:39:301 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_45
  6442. 16:45:39:304 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_10
  6443. 16:45:39:304 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_11
  6444. 16:45:39:305 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_6
  6445. 16:45:39:305 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_7
  6446. 16:45:39:305 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: boundEquipmentIdsUsingGET_2
  6447. 16:45:39:306 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: boundEquipmentIdsUsingGET_3
  6448. 16:45:39:306 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingDELETE_4
  6449. 16:45:39:306 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingDELETE_5
  6450. 16:45:39:307 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_52
  6451. 16:45:39:307 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_53
  6452. 16:45:39:307 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_68
  6453. 16:45:39:308 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_69
  6454. 16:45:39:308 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_14
  6455. 16:45:39:308 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_15
  6456. 16:45:39:310 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_62
  6457. 16:45:39:310 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_63
  6458. 16:45:39:311 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_10
  6459. 16:45:39:311 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_11
  6460. 16:45:39:312 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: dispatchUsingPOST_2
  6461. 16:45:39:312 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: dispatchUsingPOST_3
  6462. 16:45:39:313 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: equipmentUsingGET_2
  6463. 16:45:39:313 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: equipmentUsingGET_3
  6464. 16:45:39:314 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: historyUsingGET_2
  6465. 16:45:39:314 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: historyUsingGET_3
  6466. 16:45:39:314 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resolveUsingPUT_2
  6467. 16:45:39:314 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resolveUsingPUT_3
  6468. 16:45:39:315 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statsUsingGET_4
  6469. 16:45:39:315 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statsUsingGET_5
  6470. 16:45:39:316 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getHistoryUsingGET_1
  6471. 16:45:39:317 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPointsUsingGET_2
  6472. 16:45:39:317 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPointsUsingGET_3
  6473. 16:45:39:317 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendUsingGET_6
  6474. 16:45:39:318 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getTrendUsingGET_7
  6475. 16:45:39:320 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportPressureMonitorDataUsingGET_1
  6476. 16:45:39:321 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPressureMonitorPageUsingGET_1
  6477. 16:45:39:322 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPressureTrend24hUsingGET_1
  6478. 16:45:39:325 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllDeviceCodesUsingGET_2
  6479. 16:45:39:325 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllDeviceCodesUsingGET_3
  6480. 16:45:39:325 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_6
  6481. 16:45:39:325 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_7
  6482. 16:45:39:326 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataByDeviceUsingGET_2
  6483. 16:45:39:326 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataByDeviceUsingGET_3
  6484. 16:45:39:327 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryAbnormalDataUsingGET_2
  6485. 16:45:39:327 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryAbnormalDataUsingGET_3
  6486. 16:45:39:327 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_8
  6487. 16:45:39:328 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_9
  6488. 16:45:39:328 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statFlowTrendByHourUsingGET_1
  6489. 16:45:39:329 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statRadarByDeviceUsingGET_1
  6490. 16:45:39:330 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getFlowHistoryUsingGET_1
  6491. 16:45:39:331 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getGasAlarmLatestUsingGET_1
  6492. 16:45:39:332 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPointsWithLatestDataUsingGET_1
  6493. 16:45:39:332 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getPressureHistoryUsingGET_1
  6494. 16:45:39:333 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getVideoListUsingGET_1
  6495. 16:45:39:334 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_54
  6496. 16:45:39:334 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_55
  6497. 16:45:39:336 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_48
  6498. 16:45:39:336 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_49
  6499. 16:45:39:337 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_70
  6500. 16:45:39:337 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_71
  6501. 16:45:39:337 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getFourColorMapUsingGET_1
  6502. 16:45:39:339 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_64
  6503. 16:45:39:340 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_65
  6504. 16:45:39:340 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_46
  6505. 16:45:39:341 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateByIdUsingPUT_47
  6506. 16:45:39:342 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_2
  6507. 16:45:39:342 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_3
  6508. 16:45:39:345 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_1
  6509. 16:45:39:346 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_1
  6510. 16:45:39:346 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getConfigKeyUsingGET_1
  6511. 16:45:39:347 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_4
  6512. 16:45:39:347 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_5
  6513. 16:45:39:347 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: refreshCacheUsingDELETE_1
  6514. 16:45:39:348 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_1
  6515. 16:45:39:353 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_16
  6516. 16:45:39:353 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_17
  6517. 16:45:39:354 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_2
  6518. 16:45:39:354 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_3
  6519. 16:45:39:358 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_2
  6520. 16:45:39:358 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_3
  6521. 16:45:39:359 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_2
  6522. 16:45:39:359 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_3
  6523. 16:45:39:359 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: excludeChildUsingGET_1
  6524. 16:45:39:360 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_6
  6525. 16:45:39:360 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_7
  6526. 16:45:39:365 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_18
  6527. 16:45:39:365 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_19
  6528. 16:45:39:365 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_2
  6529. 16:45:39:366 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_3
  6530. 16:45:39:368 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_4
  6531. 16:45:39:369 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_5
  6532. 16:45:39:369 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: dictTypeUsingGET_1
  6533. 16:45:39:370 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_4
  6534. 16:45:39:370 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_5
  6535. 16:45:39:370 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_8
  6536. 16:45:39:370 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_9
  6537. 16:45:39:371 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_4
  6538. 16:45:39:371 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_5
  6539. 16:45:39:374 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_20
  6540. 16:45:39:374 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_21
  6541. 16:45:39:376 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_4
  6542. 16:45:39:376 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_5
  6543. 16:45:39:381 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_6
  6544. 16:45:39:381 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_7
  6545. 16:45:39:382 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_6
  6546. 16:45:39:382 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_7
  6547. 16:45:39:383 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_10
  6548. 16:45:39:383 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_11
  6549. 16:45:39:383 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionselectUsingGET_1
  6550. 16:45:39:384 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: refreshCacheUsingDELETE_2
  6551. 16:45:39:384 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: refreshCacheUsingDELETE_3
  6552. 16:45:39:385 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_6
  6553. 16:45:39:385 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_7
  6554. 16:45:39:388 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_22
  6555. 16:45:39:388 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_23
  6556. 16:45:39:389 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_6
  6557. 16:45:39:389 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_7
  6558. 16:45:39:389 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingGET_1
  6559. 16:45:39:390 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingHEAD_1
  6560. 16:45:39:390 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingPOST_1
  6561. 16:45:39:390 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingPUT_1
  6562. 16:45:39:391 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingPATCH_1
  6563. 16:45:39:391 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingDELETE_1
  6564. 16:45:39:391 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingOPTIONS_1
  6565. 16:45:39:391 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: indexUsingTRACE_1
  6566. 16:45:39:392 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_12
  6567. 16:45:39:392 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_13
  6568. 16:45:39:393 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getRoutersUsingGET_1
  6569. 16:45:39:394 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: loginUsingPOST_1
  6570. 16:45:39:395 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: loginNoNeedAuthUsingPOST_1
  6571. 16:45:39:397 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: cleanUsingDELETE_1
  6572. 16:45:39:397 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_8
  6573. 16:45:39:397 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_9
  6574. 16:45:39:398 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: unlockUsingGET_1
  6575. 16:45:39:401 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_24
  6576. 16:45:39:401 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_25
  6577. 16:45:39:402 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_8
  6578. 16:45:39:402 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_9
  6579. 16:45:39:406 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_8
  6580. 16:45:39:406 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_9
  6581. 16:45:39:407 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_8
  6582. 16:45:39:407 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_9
  6583. 16:45:39:408 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_14
  6584. 16:45:39:408 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_15
  6585. 16:45:39:412 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_26
  6586. 16:45:39:412 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_27
  6587. 16:45:39:413 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_10
  6588. 16:45:39:413 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_11
  6589. 16:45:39:413 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: roleMenuTreeselectUsingGET_1
  6590. 16:45:39:415 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: treeselectUsingGET_1
  6591. 16:45:39:417 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_10
  6592. 16:45:39:417 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_11
  6593. 16:45:39:418 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_10
  6594. 16:45:39:418 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_11
  6595. 16:45:39:418 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_16
  6596. 16:45:39:418 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_17
  6597. 16:45:39:419 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_12
  6598. 16:45:39:419 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_13
  6599. 16:45:39:422 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_28
  6600. 16:45:39:422 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_29
  6601. 16:45:39:423 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: cleanUsingDELETE_2
  6602. 16:45:39:423 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: cleanUsingDELETE_3
  6603. 16:45:39:424 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_14
  6604. 16:45:39:424 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_15
  6605. 16:45:39:427 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_30
  6606. 16:45:39:427 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_31
  6607. 16:45:39:428 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_10
  6608. 16:45:39:428 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_11
  6609. 16:45:39:430 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_12
  6610. 16:45:39:431 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_13
  6611. 16:45:39:431 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_12
  6612. 16:45:39:431 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_13
  6613. 16:45:39:432 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_18
  6614. 16:45:39:432 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_19
  6615. 16:45:39:432 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionselectUsingGET_2
  6616. 16:45:39:432 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionselectUsingGET_3
  6617. 16:45:39:433 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_16
  6618. 16:45:39:433 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_17
  6619. 16:45:39:435 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_32
  6620. 16:45:39:436 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_33
  6621. 16:45:39:436 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_12
  6622. 16:45:39:436 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_13
  6623. 16:45:39:437 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: avatarUsingPOST_1
  6624. 16:45:39:438 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: profileUsingGET_1
  6625. 16:45:39:443 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateProfileUsingPUT_1
  6626. 16:45:39:444 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updatePwdUsingPUT_1
  6627. 16:45:39:445 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: registerUsingPOST_1
  6628. 16:45:39:448 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_14
  6629. 16:45:39:448 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_15
  6630. 16:45:39:449 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: cancelAuthUserUsingPUT_1
  6631. 16:45:39:449 WARN 32192 --- [restartedMain] s.d.s.w.r.p.ParameterDataTypeReader : Trying to infer dataType java.lang.Long[]
  6632. 16:45:39:450 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: cancelAuthUserAllUsingPUT_1
  6633. 16:45:39:450 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: changeStatusUsingPUT_1
  6634. 16:45:39:451 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: dataScopeUsingPUT_1
  6635. 16:45:39:451 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deptTreeUsingGET_1
  6636. 16:45:39:452 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_14
  6637. 16:45:39:452 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_15
  6638. 16:45:39:452 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_20
  6639. 16:45:39:453 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_21
  6640. 16:45:39:453 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionselectUsingGET_4
  6641. 16:45:39:453 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: optionselectUsingGET_5
  6642. 16:45:39:454 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_18
  6643. 16:45:39:454 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_19
  6644. 16:45:39:454 WARN 32192 --- [restartedMain] s.d.s.w.r.p.ParameterDataTypeReader : Trying to infer dataType java.lang.Long[]
  6645. 16:45:39:454 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectAuthUserAllUsingPUT_1
  6646. 16:45:39:461 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: allocatedListUsingGET_1
  6647. 16:45:39:463 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_34
  6648. 16:45:39:463 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_35
  6649. 16:45:39:465 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: unallocatedListUsingGET_1
  6650. 16:45:39:466 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_14
  6651. 16:45:39:466 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_15
  6652. 16:45:39:468 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_16
  6653. 16:45:39:468 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_17
  6654. 16:45:39:469 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: authRoleUsingGET_1
  6655. 16:45:39:470 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: changeStatusUsingPUT_2
  6656. 16:45:39:470 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: changeStatusUsingPUT_3
  6657. 16:45:39:470 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deptTreeUsingGET_2
  6658. 16:45:39:470 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deptTreeUsingGET_3
  6659. 16:45:39:471 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_16
  6660. 16:45:39:471 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: editUsingPUT_17
  6661. 16:45:39:471 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_22
  6662. 16:45:39:472 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_23
  6663. 16:45:39:472 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_24
  6664. 16:45:39:472 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getInfoUsingGET_25
  6665. 16:45:39:472 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: importDataUsingPOST_1
  6666. 16:45:39:473 WARN 32192 --- [restartedMain] s.d.s.w.r.p.ParameterDataTypeReader : Trying to infer dataType java.lang.Long[]
  6667. 16:45:39:474 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: insertAuthRoleUsingPUT_1
  6668. 16:45:39:474 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_20
  6669. 16:45:39:474 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_21
  6670. 16:45:39:475 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: resetPwdUsingPUT_1
  6671. 16:45:39:476 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_36
  6672. 16:45:39:477 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_37
  6673. 16:45:39:478 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_16
  6674. 16:45:39:479 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: exportUsingPOST_17
  6675. 16:45:39:479 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: importTemplateUsingPOST_1
  6676. 16:45:39:480 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: forceLogoutUsingDELETE_1
  6677. 16:45:39:481 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_38
  6678. 16:45:39:481 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_39
  6679. 16:45:39:483 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllDeviceCodesUsingGET_4
  6680. 16:45:39:483 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllDeviceCodesUsingGET_5
  6681. 16:45:39:483 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_8
  6682. 16:45:39:484 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getDeviceGroupUsingGET_9
  6683. 16:45:39:484 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataByDeviceUsingGET_4
  6684. 16:45:39:484 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataByDeviceUsingGET_5
  6685. 16:45:39:485 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryAbnormalDataUsingGET_4
  6686. 16:45:39:485 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryAbnormalDataUsingGET_5
  6687. 16:45:39:486 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_10
  6688. 16:45:39:487 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_11
  6689. 16:45:39:487 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statTelemetryByDeviceUsingGET_1
  6690. 16:45:39:488 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statTelemetryTrendByHourUsingGET_1
  6691. 16:45:39:490 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleFaultUsingPOST_1
  6692. 16:45:39:495 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_6
  6693. 16:45:39:495 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_7
  6694. 16:45:39:496 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_72
  6695. 16:45:39:497 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_73
  6696. 16:45:39:499 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getUserUsingGET_1
  6697. 16:45:39:500 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_4
  6698. 16:45:39:500 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_5
  6699. 16:45:39:503 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_66
  6700. 16:45:39:504 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_67
  6701. 16:45:39:505 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_12
  6702. 16:45:39:505 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_13
  6703. 16:45:39:507 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: userListUsingGET_1
  6704. 16:45:39:514 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addWarningItemUsingPOST_1
  6705. 16:45:39:515 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: generateItemCodeUsingGET_1
  6706. 16:45:39:516 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getItemDetailUsingGET_1
  6707. 16:45:39:517 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryWarningItemsUsingGET_1
  6708. 16:45:39:517 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateItemStatusUsingPUT_1
  6709. 16:45:39:518 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateWarningItemUsingPUT_1
  6710. 16:45:39:522 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addWarningReasonUsingPOST_1
  6711. 16:45:39:522 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getReasonDetailUsingGET_1
  6712. 16:45:39:523 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getReasonsByTypeAndLevelUsingGET_1
  6713. 16:45:39:524 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryWarningReasonsUsingGET_1
  6714. 16:45:39:524 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateReasonStatusUsingPUT_1
  6715. 16:45:39:525 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateWarningReasonUsingPUT_1
  6716. 16:45:39:526 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_2
  6717. 16:45:39:527 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingPOST_3
  6718. 16:45:39:527 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_50
  6719. 16:45:39:527 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingGET_51
  6720. 16:45:39:528 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_74
  6721. 16:45:39:528 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_75
  6722. 16:45:39:529 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getWarningThresholdListUsingGET_1
  6723. 16:45:39:530 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_68
  6724. 16:45:39:530 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_69
  6725. 16:45:39:531 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_6
  6726. 16:45:39:531 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPOST_7
  6727. 16:45:39:533 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllDeviceCodesUsingGET_6
  6728. 16:45:39:533 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getAllDeviceCodesUsingGET_7
  6729. 16:45:39:534 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataByDeviceUsingGET_6
  6730. 16:45:39:534 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestDataByDeviceUsingGET_7
  6731. 16:45:39:535 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_12
  6732. 16:45:39:535 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_13
  6733. 16:45:39:536 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: selectOverLimitDataUsingGET_1
  6734. 16:45:39:536 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsByDeviceUsingGET_1
  6735. 16:45:39:537 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statisticsOnlineDeviceUsingGET_1
  6736. 16:45:39:542 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_18
  6737. 16:45:39:542 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_19
  6738. 16:45:39:543 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_1
  6739. 16:45:39:544 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_76
  6740. 16:45:39:544 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_77
  6741. 16:45:39:544 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getLatestPipeUsingGET_1
  6742. 16:45:39:545 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getOverallStatisticsUsingGET_2
  6743. 16:45:39:545 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getOverallStatisticsUsingGET_3
  6744. 16:45:39:546 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_12
  6745. 16:45:39:546 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_13
  6746. 16:45:39:547 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_1
  6747. 16:45:39:547 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_22
  6748. 16:45:39:548 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_23
  6749. 16:45:39:548 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_1
  6750. 16:45:39:549 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statPipeByMaterialUsingGET_1
  6751. 16:45:39:549 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: statPipeByStatusUsingGET_1
  6752. 16:45:39:550 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_14
  6753. 16:45:39:550 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_15
  6754. 16:45:39:555 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_20
  6755. 16:45:39:555 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_21
  6756. 16:45:39:556 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_2
  6757. 16:45:39:556 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_3
  6758. 16:45:39:556 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_78
  6759. 16:45:39:557 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_79
  6760. 16:45:39:557 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_14
  6761. 16:45:39:558 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_15
  6762. 16:45:39:559 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_2
  6763. 16:45:39:559 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_3
  6764. 16:45:39:559 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_24
  6765. 16:45:39:560 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_25
  6766. 16:45:39:560 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_2
  6767. 16:45:39:560 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_3
  6768. 16:45:39:561 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_16
  6769. 16:45:39:561 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_17
  6770. 16:45:39:566 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_22
  6771. 16:45:39:566 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_23
  6772. 16:45:39:567 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_4
  6773. 16:45:39:567 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_5
  6774. 16:45:39:568 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_80
  6775. 16:45:39:568 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_81
  6776. 16:45:39:569 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_16
  6777. 16:45:39:569 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_17
  6778. 16:45:39:569 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_4
  6779. 16:45:39:570 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_5
  6780. 16:45:39:570 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_26
  6781. 16:45:39:570 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_27
  6782. 16:45:39:571 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_4
  6783. 16:45:39:571 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_5
  6784. 16:45:39:572 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_18
  6785. 16:45:39:572 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_19
  6786. 16:45:39:577 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_24
  6787. 16:45:39:577 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_25
  6788. 16:45:39:577 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_6
  6789. 16:45:39:578 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_7
  6790. 16:45:39:578 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_82
  6791. 16:45:39:578 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_83
  6792. 16:45:39:579 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_18
  6793. 16:45:39:579 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_19
  6794. 16:45:39:580 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_6
  6795. 16:45:39:580 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_7
  6796. 16:45:39:581 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_28
  6797. 16:45:39:581 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_29
  6798. 16:45:39:582 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_6
  6799. 16:45:39:582 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_7
  6800. 16:45:39:583 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_20
  6801. 16:45:39:583 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_21
  6802. 16:45:39:587 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_26
  6803. 16:45:39:588 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addUsingPOST_27
  6804. 16:45:39:588 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_8
  6805. 16:45:39:588 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deletePhysicallyUsingDELETE_9
  6806. 16:45:39:589 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_84
  6807. 16:45:39:589 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_85
  6808. 16:45:39:590 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_20
  6809. 16:45:39:590 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: queryPageUsingGET_21
  6810. 16:45:39:591 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_8
  6811. 16:45:39:591 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: recycleListUsingGET_9
  6812. 16:45:39:591 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_30
  6813. 16:45:39:592 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: removeUsingDELETE_31
  6814. 16:45:39:592 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_8
  6815. 16:45:39:592 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: restoreUsingPOST_9
  6816. 16:45:39:593 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_22
  6817. 16:45:39:593 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_23
  6818. 16:45:39:597 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_14
  6819. 16:45:39:597 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: pageUsingGET_15
  6820. 16:45:39:597 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_8
  6821. 16:45:39:598 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: bindEquipmentUsingPOST_9
  6822. 16:45:39:598 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingDELETE_6
  6823. 16:45:39:598 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteBatchUsingDELETE_7
  6824. 16:45:39:599 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_56
  6825. 16:45:39:599 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteByIdUsingDELETE_57
  6826. 16:45:39:599 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_86
  6827. 16:45:39:599 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_87
  6828. 16:45:39:600 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_40
  6829. 16:45:39:600 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_41
  6830. 16:45:39:602 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_70
  6831. 16:45:39:602 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_71
  6832. 16:45:39:602 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_24
  6833. 16:45:39:602 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_25
  6834. 16:45:39:606 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: addWorkOrderUsingPOST_1
  6835. 16:45:39:608 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: operWorkOrderUsingPOST_1
  6836. 16:45:39:614 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_8
  6837. 16:45:39:614 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findByPageUsingPOST_9
  6838. 16:45:39:617 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findFinishedPageUsingPOST_1
  6839. 16:45:39:618 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findProcessingPageUsingPOST_1
  6840. 16:45:39:620 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_88
  6841. 16:45:39:620 INFO 32192 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getByIdUsingGET_89
  6842. 16:45:39:624 INFO 32192 --- [restartedMain] o.s.s.quartz.SchedulerFactoryBean : Starting Quartz Scheduler now
  6843. 16:45:39:624 INFO 32192 --- [restartedMain] org.quartz.core.QuartzScheduler : Scheduler quartzScheduler_$_NON_CLUSTERED started.
  6844. 16:45:39:632 INFO 32192 --- [restartedMain] com.zksy.ZksyApplication : Started ZksyApplication in 21.98 seconds (JVM running for 24.376)
  6845. 16:45:39:637 INFO 32192 --- [restartedMain] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=pipe-network-service.yaml, group=DEFAULT_GROUP
  6846. 16:45:39:638 INFO 32192 --- [restartedMain] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=pipe-network-service-dev.yaml, group=DEFAULT_GROUP
  6847. 16:45:39:639 INFO 32192 --- [restartedMain] c.a.c.n.refresh.NacosContextRefresher : [Nacos Config] Listening config: dataId=pipe-network-service, group=DEFAULT_GROUP