| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687 |
- 2026-05-09 11:48:16.487 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.0.20.Final
- 2026-05-09 11:48:16.868 [background-preinit] WARN o.s.h.c.j.Jackson2ObjectMapperBuilder - For Jackson Kotlin classes support please add "com.fasterxml.jackson.module:jackson-module-kotlin" to the classpath
- 2026-05-09 11:48:20.318 [main] ERROR c.a.n.c.config.http.ServerHttpAgent - [NACOS SocketTimeoutException httpGet] currentServerAddr:http://127.0.0.1:8848, err : connect timed out
- 2026-05-09 11:48:22.347 [main] ERROR c.a.n.c.config.http.ServerHttpAgent - [NACOS SocketTimeoutException httpGet] currentServerAddr:http://127.0.0.1:8848, err : connect timed out
- 2026-05-09 11:48:22.347 [main] ERROR c.a.n.c.config.http.ServerHttpAgent - no available server
- 2026-05-09 11:48:22.351 [main] ERROR c.a.n.c.config.impl.ClientWorker - [fixed-127.0.0.1_8848-gs-lyzhsw] [sub-server] get server config exception, dataId=public_config_public.yaml, group=DEFAULT_GROUP, tenant=gs-lyzhsw
- java.net.ConnectException: no available server
- at com.alibaba.nacos.client.config.http.ServerHttpAgent.httpGet(ServerHttpAgent.java:123)
- at com.alibaba.nacos.client.config.http.MetricsHttpAgent.httpGet(MetricsHttpAgent.java:48)
- at com.alibaba.nacos.client.config.impl.ClientWorker.getServerConfig(ClientWorker.java:230)
- at com.alibaba.nacos.client.config.NacosConfigService.getConfigInner(NacosConfigService.java:143)
- at com.alibaba.nacos.client.config.NacosConfigService.getConfig(NacosConfigService.java:92)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder.loadNacosData(NacosPropertySourceBuilder.java:85)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder.build(NacosPropertySourceBuilder.java:74)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosPropertySource(NacosPropertySourceLocator.java:204)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosDataIfPresent(NacosPropertySourceLocator.java:191)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosConfiguration(NacosPropertySourceLocator.java:161)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadSharedConfiguration(NacosPropertySourceLocator.java:117)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.locate(NacosPropertySourceLocator.java:101)
- at org.springframework.cloud.bootstrap.config.PropertySourceLocator.locateCollection(PropertySourceLocator.java:52)
- at org.springframework.cloud.bootstrap.config.PropertySourceLocator.locateCollection(PropertySourceLocator.java:47)
- at org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration.initialize(PropertySourceBootstrapConfiguration.java:98)
- at org.springframework.boot.SpringApplication.applyInitializers(SpringApplication.java:626)
- at org.springframework.boot.SpringApplication.prepareContext(SpringApplication.java:370)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:314)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1226)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1215)
- at com.tofly.feesapi.FeesApiApplication.main(FeesApiApplication.java:31)
- 2026-05-09 11:48:22.351 [main] WARN c.a.n.c.config.NacosConfigService - [fixed-127.0.0.1_8848-gs-lyzhsw] [get-config] get from server error, dataId=public_config_public.yaml, group=DEFAULT_GROUP, tenant=gs-lyzhsw, msg=ErrCode:500, ErrMsg:no available server
- 2026-05-09 11:48:22.352 [main] WARN c.a.n.c.config.NacosConfigService - [fixed-127.0.0.1_8848-gs-lyzhsw] [get-config] get snapshot ok, dataId=public_config_public.yaml, group=DEFAULT_GROUP, tenant=gs-lyzhsw, config=
- 2026-05-09 11:48:24.368 [main] ERROR c.a.n.c.config.http.ServerHttpAgent - [NACOS SocketTimeoutException httpGet] currentServerAddr:http://127.0.0.1:8848, err : connect timed out
- 2026-05-09 11:48:26.384 [main] ERROR c.a.n.c.config.http.ServerHttpAgent - [NACOS SocketTimeoutException httpGet] currentServerAddr:http://127.0.0.1:8848, err : connect timed out
- 2026-05-09 11:48:26.384 [main] ERROR c.a.n.c.config.http.ServerHttpAgent - no available server
- 2026-05-09 11:48:26.384 [main] ERROR c.a.n.c.config.impl.ClientWorker - [fixed-127.0.0.1_8848-gs-lyzhsw] [sub-server] get server config exception, dataId=public_config_oracle.yaml, group=DEFAULT_GROUP, tenant=gs-lyzhsw
- java.net.ConnectException: no available server
- at com.alibaba.nacos.client.config.http.ServerHttpAgent.httpGet(ServerHttpAgent.java:123)
- at com.alibaba.nacos.client.config.http.MetricsHttpAgent.httpGet(MetricsHttpAgent.java:48)
- at com.alibaba.nacos.client.config.impl.ClientWorker.getServerConfig(ClientWorker.java:230)
- at com.alibaba.nacos.client.config.NacosConfigService.getConfigInner(NacosConfigService.java:143)
- at com.alibaba.nacos.client.config.NacosConfigService.getConfig(NacosConfigService.java:92)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder.loadNacosData(NacosPropertySourceBuilder.java:85)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder.build(NacosPropertySourceBuilder.java:74)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosPropertySource(NacosPropertySourceLocator.java:204)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosDataIfPresent(NacosPropertySourceLocator.java:191)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosConfiguration(NacosPropertySourceLocator.java:161)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadSharedConfiguration(NacosPropertySourceLocator.java:117)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.locate(NacosPropertySourceLocator.java:101)
- at org.springframework.cloud.bootstrap.config.PropertySourceLocator.locateCollection(PropertySourceLocator.java:52)
- at org.springframework.cloud.bootstrap.config.PropertySourceLocator.locateCollection(PropertySourceLocator.java:47)
- at org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration.initialize(PropertySourceBootstrapConfiguration.java:98)
- at org.springframework.boot.SpringApplication.applyInitializers(SpringApplication.java:626)
- at org.springframework.boot.SpringApplication.prepareContext(SpringApplication.java:370)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:314)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1226)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1215)
- at com.tofly.feesapi.FeesApiApplication.main(FeesApiApplication.java:31)
- 2026-05-09 11:48:26.384 [main] WARN c.a.n.c.config.NacosConfigService - [fixed-127.0.0.1_8848-gs-lyzhsw] [get-config] get from server error, dataId=public_config_oracle.yaml, group=DEFAULT_GROUP, tenant=gs-lyzhsw, msg=ErrCode:500, ErrMsg:no available server
- 2026-05-09 11:48:26.384 [main] WARN c.a.n.c.config.NacosConfigService - [fixed-127.0.0.1_8848-gs-lyzhsw] [get-config] get snapshot ok, dataId=public_config_oracle.yaml, group=DEFAULT_GROUP, tenant=gs-lyzhsw, config=
- 2026-05-09 11:48:28.401 [main] ERROR c.a.n.c.config.http.ServerHttpAgent - [NACOS SocketTimeoutException httpGet] currentServerAddr:http://127.0.0.1:8848, err : connect timed out
- 2026-05-09 11:48:30.418 [main] ERROR c.a.n.c.config.http.ServerHttpAgent - [NACOS SocketTimeoutException httpGet] currentServerAddr:http://127.0.0.1:8848, err : connect timed out
- 2026-05-09 11:48:30.418 [main] ERROR c.a.n.c.config.http.ServerHttpAgent - no available server
- 2026-05-09 11:48:30.418 [main] ERROR c.a.n.c.config.impl.ClientWorker - [fixed-127.0.0.1_8848-gs-lyzhsw] [sub-server] get server config exception, dataId=public_config_redis.yaml, group=DEFAULT_GROUP, tenant=gs-lyzhsw
- java.net.ConnectException: no available server
- at com.alibaba.nacos.client.config.http.ServerHttpAgent.httpGet(ServerHttpAgent.java:123)
- at com.alibaba.nacos.client.config.http.MetricsHttpAgent.httpGet(MetricsHttpAgent.java:48)
- at com.alibaba.nacos.client.config.impl.ClientWorker.getServerConfig(ClientWorker.java:230)
- at com.alibaba.nacos.client.config.NacosConfigService.getConfigInner(NacosConfigService.java:143)
- at com.alibaba.nacos.client.config.NacosConfigService.getConfig(NacosConfigService.java:92)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder.loadNacosData(NacosPropertySourceBuilder.java:85)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder.build(NacosPropertySourceBuilder.java:74)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosPropertySource(NacosPropertySourceLocator.java:204)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosDataIfPresent(NacosPropertySourceLocator.java:191)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosConfiguration(NacosPropertySourceLocator.java:161)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadSharedConfiguration(NacosPropertySourceLocator.java:117)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.locate(NacosPropertySourceLocator.java:101)
- at org.springframework.cloud.bootstrap.config.PropertySourceLocator.locateCollection(PropertySourceLocator.java:52)
- at org.springframework.cloud.bootstrap.config.PropertySourceLocator.locateCollection(PropertySourceLocator.java:47)
- at org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration.initialize(PropertySourceBootstrapConfiguration.java:98)
- at org.springframework.boot.SpringApplication.applyInitializers(SpringApplication.java:626)
- at org.springframework.boot.SpringApplication.prepareContext(SpringApplication.java:370)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:314)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1226)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1215)
- at com.tofly.feesapi.FeesApiApplication.main(FeesApiApplication.java:31)
- 2026-05-09 11:48:30.419 [main] WARN c.a.n.c.config.NacosConfigService - [fixed-127.0.0.1_8848-gs-lyzhsw] [get-config] get from server error, dataId=public_config_redis.yaml, group=DEFAULT_GROUP, tenant=gs-lyzhsw, msg=ErrCode:500, ErrMsg:no available server
- 2026-05-09 11:48:30.420 [main] WARN c.a.n.c.config.NacosConfigService - [fixed-127.0.0.1_8848-gs-lyzhsw] [get-config] get snapshot ok, dataId=public_config_redis.yaml, group=DEFAULT_GROUP, tenant=gs-lyzhsw, config=
- 2026-05-09 11:48:32.441 [main] ERROR c.a.n.c.config.http.ServerHttpAgent - [NACOS SocketTimeoutException httpGet] currentServerAddr:http://127.0.0.1:8848, err : connect timed out
- 2026-05-09 11:48:34.457 [main] ERROR c.a.n.c.config.http.ServerHttpAgent - [NACOS SocketTimeoutException httpGet] currentServerAddr:http://127.0.0.1:8848, err : connect timed out
- 2026-05-09 11:48:34.457 [main] ERROR c.a.n.c.config.http.ServerHttpAgent - no available server
- 2026-05-09 11:48:34.457 [main] ERROR c.a.n.c.config.impl.ClientWorker - [fixed-127.0.0.1_8848-gs-lyzhsw] [sub-server] get server config exception, dataId=yx_config_ftp.yaml, group=DEFAULT_GROUP, tenant=gs-lyzhsw
- java.net.ConnectException: no available server
- at com.alibaba.nacos.client.config.http.ServerHttpAgent.httpGet(ServerHttpAgent.java:123)
- at com.alibaba.nacos.client.config.http.MetricsHttpAgent.httpGet(MetricsHttpAgent.java:48)
- at com.alibaba.nacos.client.config.impl.ClientWorker.getServerConfig(ClientWorker.java:230)
- at com.alibaba.nacos.client.config.NacosConfigService.getConfigInner(NacosConfigService.java:143)
- at com.alibaba.nacos.client.config.NacosConfigService.getConfig(NacosConfigService.java:92)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder.loadNacosData(NacosPropertySourceBuilder.java:85)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder.build(NacosPropertySourceBuilder.java:74)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosPropertySource(NacosPropertySourceLocator.java:204)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosDataIfPresent(NacosPropertySourceLocator.java:191)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosConfiguration(NacosPropertySourceLocator.java:161)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadSharedConfiguration(NacosPropertySourceLocator.java:117)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.locate(NacosPropertySourceLocator.java:101)
- at org.springframework.cloud.bootstrap.config.PropertySourceLocator.locateCollection(PropertySourceLocator.java:52)
- at org.springframework.cloud.bootstrap.config.PropertySourceLocator.locateCollection(PropertySourceLocator.java:47)
- at org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration.initialize(PropertySourceBootstrapConfiguration.java:98)
- at org.springframework.boot.SpringApplication.applyInitializers(SpringApplication.java:626)
- at org.springframework.boot.SpringApplication.prepareContext(SpringApplication.java:370)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:314)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1226)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1215)
- at com.tofly.feesapi.FeesApiApplication.main(FeesApiApplication.java:31)
- 2026-05-09 11:48:34.457 [main] WARN c.a.n.c.config.NacosConfigService - [fixed-127.0.0.1_8848-gs-lyzhsw] [get-config] get from server error, dataId=yx_config_ftp.yaml, group=DEFAULT_GROUP, tenant=gs-lyzhsw, msg=ErrCode:500, ErrMsg:no available server
- 2026-05-09 11:48:34.457 [main] WARN c.a.n.c.config.NacosConfigService - [fixed-127.0.0.1_8848-gs-lyzhsw] [get-config] get snapshot ok, dataId=yx_config_ftp.yaml, group=DEFAULT_GROUP, tenant=gs-lyzhsw, config=
- 2026-05-09 11:48:36.468 [main] ERROR c.a.n.c.config.http.ServerHttpAgent - [NACOS SocketTimeoutException httpGet] currentServerAddr:http://127.0.0.1:8848, err : connect timed out
- 2026-05-09 11:48:38.486 [main] ERROR c.a.n.c.config.http.ServerHttpAgent - [NACOS SocketTimeoutException httpGet] currentServerAddr:http://127.0.0.1:8848, err : connect timed out
- 2026-05-09 11:48:38.486 [main] ERROR c.a.n.c.config.http.ServerHttpAgent - no available server
- 2026-05-09 11:48:38.487 [main] ERROR c.a.n.c.config.impl.ClientWorker - [fixed-127.0.0.1_8848-gs-lyzhsw] [sub-server] get server config exception, dataId=collect-fees-api, group=DEFAULT_GROUP, tenant=gs-lyzhsw
- java.net.ConnectException: no available server
- at com.alibaba.nacos.client.config.http.ServerHttpAgent.httpGet(ServerHttpAgent.java:123)
- at com.alibaba.nacos.client.config.http.MetricsHttpAgent.httpGet(MetricsHttpAgent.java:48)
- at com.alibaba.nacos.client.config.impl.ClientWorker.getServerConfig(ClientWorker.java:230)
- at com.alibaba.nacos.client.config.NacosConfigService.getConfigInner(NacosConfigService.java:143)
- at com.alibaba.nacos.client.config.NacosConfigService.getConfig(NacosConfigService.java:92)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder.loadNacosData(NacosPropertySourceBuilder.java:85)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder.build(NacosPropertySourceBuilder.java:74)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosPropertySource(NacosPropertySourceLocator.java:204)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosDataIfPresent(NacosPropertySourceLocator.java:191)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadApplicationConfiguration(NacosPropertySourceLocator.java:142)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.locate(NacosPropertySourceLocator.java:103)
- at org.springframework.cloud.bootstrap.config.PropertySourceLocator.locateCollection(PropertySourceLocator.java:52)
- at org.springframework.cloud.bootstrap.config.PropertySourceLocator.locateCollection(PropertySourceLocator.java:47)
- at org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration.initialize(PropertySourceBootstrapConfiguration.java:98)
- at org.springframework.boot.SpringApplication.applyInitializers(SpringApplication.java:626)
- at org.springframework.boot.SpringApplication.prepareContext(SpringApplication.java:370)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:314)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1226)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1215)
- at com.tofly.feesapi.FeesApiApplication.main(FeesApiApplication.java:31)
- 2026-05-09 11:48:38.487 [main] WARN c.a.n.c.config.NacosConfigService - [fixed-127.0.0.1_8848-gs-lyzhsw] [get-config] get from server error, dataId=collect-fees-api, group=DEFAULT_GROUP, tenant=gs-lyzhsw, msg=ErrCode:500, ErrMsg:no available server
- 2026-05-09 11:48:38.487 [main] WARN c.a.n.c.config.NacosConfigService - [fixed-127.0.0.1_8848-gs-lyzhsw] [get-config] get snapshot ok, dataId=collect-fees-api, group=DEFAULT_GROUP, tenant=gs-lyzhsw, config=
- 2026-05-09 11:48:38.487 [main] WARN c.a.c.n.c.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[collect-fees-api] & group[DEFAULT_GROUP]
- 2026-05-09 11:48:40.503 [main] ERROR c.a.n.c.config.http.ServerHttpAgent - [NACOS SocketTimeoutException httpGet] currentServerAddr:http://127.0.0.1:8848, err : connect timed out
- 2026-05-09 11:48:42.525 [main] ERROR c.a.n.c.config.http.ServerHttpAgent - [NACOS SocketTimeoutException httpGet] currentServerAddr:http://127.0.0.1:8848, err : connect timed out
- 2026-05-09 11:48:42.526 [main] ERROR c.a.n.c.config.http.ServerHttpAgent - no available server
- 2026-05-09 11:48:42.527 [main] ERROR c.a.n.c.config.impl.ClientWorker - [fixed-127.0.0.1_8848-gs-lyzhsw] [sub-server] get server config exception, dataId=collect-fees-api.yaml, group=DEFAULT_GROUP, tenant=gs-lyzhsw
- java.net.ConnectException: no available server
- at com.alibaba.nacos.client.config.http.ServerHttpAgent.httpGet(ServerHttpAgent.java:123)
- at com.alibaba.nacos.client.config.http.MetricsHttpAgent.httpGet(MetricsHttpAgent.java:48)
- at com.alibaba.nacos.client.config.impl.ClientWorker.getServerConfig(ClientWorker.java:230)
- at com.alibaba.nacos.client.config.NacosConfigService.getConfigInner(NacosConfigService.java:143)
- at com.alibaba.nacos.client.config.NacosConfigService.getConfig(NacosConfigService.java:92)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder.loadNacosData(NacosPropertySourceBuilder.java:85)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder.build(NacosPropertySourceBuilder.java:74)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosPropertySource(NacosPropertySourceLocator.java:204)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosDataIfPresent(NacosPropertySourceLocator.java:191)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadApplicationConfiguration(NacosPropertySourceLocator.java:145)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.locate(NacosPropertySourceLocator.java:103)
- at org.springframework.cloud.bootstrap.config.PropertySourceLocator.locateCollection(PropertySourceLocator.java:52)
- at org.springframework.cloud.bootstrap.config.PropertySourceLocator.locateCollection(PropertySourceLocator.java:47)
- at org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration.initialize(PropertySourceBootstrapConfiguration.java:98)
- at org.springframework.boot.SpringApplication.applyInitializers(SpringApplication.java:626)
- at org.springframework.boot.SpringApplication.prepareContext(SpringApplication.java:370)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:314)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1226)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1215)
- at com.tofly.feesapi.FeesApiApplication.main(FeesApiApplication.java:31)
- 2026-05-09 11:48:42.527 [main] WARN c.a.n.c.config.NacosConfigService - [fixed-127.0.0.1_8848-gs-lyzhsw] [get-config] get from server error, dataId=collect-fees-api.yaml, group=DEFAULT_GROUP, tenant=gs-lyzhsw, msg=ErrCode:500, ErrMsg:no available server
- 2026-05-09 11:48:42.527 [main] WARN c.a.n.c.config.NacosConfigService - [fixed-127.0.0.1_8848-gs-lyzhsw] [get-config] get snapshot ok, dataId=collect-fees-api.yaml, group=DEFAULT_GROUP, tenant=gs-lyzhsw, config=
- 2026-05-09 11:48:44.542 [main] ERROR c.a.n.c.config.http.ServerHttpAgent - [NACOS SocketTimeoutException httpGet] currentServerAddr:http://127.0.0.1:8848, err : connect timed out
- 2026-05-09 11:48:46.566 [main] ERROR c.a.n.c.config.http.ServerHttpAgent - [NACOS SocketTimeoutException httpGet] currentServerAddr:http://127.0.0.1:8848, err : connect timed out
- 2026-05-09 11:48:46.566 [main] ERROR c.a.n.c.config.http.ServerHttpAgent - no available server
- 2026-05-09 11:48:46.567 [main] ERROR c.a.n.c.config.impl.ClientWorker - [fixed-127.0.0.1_8848-gs-lyzhsw] [sub-server] get server config exception, dataId=collect-fees-api-bd.yaml, group=DEFAULT_GROUP, tenant=gs-lyzhsw
- java.net.ConnectException: no available server
- at com.alibaba.nacos.client.config.http.ServerHttpAgent.httpGet(ServerHttpAgent.java:123)
- at com.alibaba.nacos.client.config.http.MetricsHttpAgent.httpGet(MetricsHttpAgent.java:48)
- at com.alibaba.nacos.client.config.impl.ClientWorker.getServerConfig(ClientWorker.java:230)
- at com.alibaba.nacos.client.config.NacosConfigService.getConfigInner(NacosConfigService.java:143)
- at com.alibaba.nacos.client.config.NacosConfigService.getConfig(NacosConfigService.java:92)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder.loadNacosData(NacosPropertySourceBuilder.java:85)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder.build(NacosPropertySourceBuilder.java:74)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosPropertySource(NacosPropertySourceLocator.java:204)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosDataIfPresent(NacosPropertySourceLocator.java:191)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadApplicationConfiguration(NacosPropertySourceLocator.java:150)
- at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.locate(NacosPropertySourceLocator.java:103)
- at org.springframework.cloud.bootstrap.config.PropertySourceLocator.locateCollection(PropertySourceLocator.java:52)
- at org.springframework.cloud.bootstrap.config.PropertySourceLocator.locateCollection(PropertySourceLocator.java:47)
- at org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration.initialize(PropertySourceBootstrapConfiguration.java:98)
- at org.springframework.boot.SpringApplication.applyInitializers(SpringApplication.java:626)
- at org.springframework.boot.SpringApplication.prepareContext(SpringApplication.java:370)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:314)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1226)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1215)
- at com.tofly.feesapi.FeesApiApplication.main(FeesApiApplication.java:31)
- 2026-05-09 11:48:46.567 [main] WARN c.a.n.c.config.NacosConfigService - [fixed-127.0.0.1_8848-gs-lyzhsw] [get-config] get from server error, dataId=collect-fees-api-bd.yaml, group=DEFAULT_GROUP, tenant=gs-lyzhsw, msg=ErrCode:500, ErrMsg:no available server
- 2026-05-09 11:48:46.567 [main] WARN c.a.n.c.config.NacosConfigService - [fixed-127.0.0.1_8848-gs-lyzhsw] [get-config] get snapshot ok, dataId=collect-fees-api-bd.yaml, group=DEFAULT_GROUP, tenant=gs-lyzhsw, config=
- 2026-05-09 11:48:46.567 [main] WARN c.a.c.n.c.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[collect-fees-api-bd.yaml] & group[DEFAULT_GROUP]
- 2026-05-09 11:48:46.567 [main] INFO o.s.c.b.c.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-collect-fees-api-bd.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-collect-fees-api.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-collect-fees-api,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-yx_config_ftp.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-public_config_redis.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-public_config_oracle.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-public_config_public.yaml,DEFAULT_GROUP'}]
- 2026-05-09 11:48:46.571 [main] INFO com.tofly.feesapi.FeesApiApplication - The following profiles are active: bd
- 2026-05-09 11:48:48.546 [main] WARN o.s.boot.actuate.endpoint.EndpointId - Endpoint ID 'nacos-config' contains invalid characters, please migrate to a valid format.
- 2026-05-09 11:48:48.553 [main] WARN o.s.boot.actuate.endpoint.EndpointId - Endpoint ID 'nacos-discovery' contains invalid characters, please migrate to a valid format.
- 2026-05-09 11:48:48.779 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode!
- 2026-05-09 11:48:48.782 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
- 2026-05-09 11:48:49.049 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 200ms. Found 0 Redis repository interfaces.
- 2026-05-09 11:48:49.129 [main] WARN o.s.boot.actuate.endpoint.EndpointId - Endpoint ID 'service-registry' contains invalid characters, please migrate to a valid format.
- 2026-05-09 11:48:49.213 [main] DEBUG org.apache.ibatis.logging.LogFactory - Logging initialized using 'class org.apache.ibatis.logging.slf4j.Slf4jImpl' adapter.
- 2026-05-09 11:48:49.359 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhBjflFbMapper' and 'com.tofly.feesapi.bjgl.mapper.YhBjflFbMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.359 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhBjflZbMapper' and 'com.tofly.feesapi.bjgl.mapper.YhBjflZbMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.359 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhCbkxxLogMapper' and 'com.tofly.feesapi.bjgl.mapper.YhCbkxxLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.359 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhCbkxxMapper' and 'com.tofly.feesapi.bjgl.mapper.YhCbkxxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.359 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhbglMapper' and 'com.tofly.feesapi.bjgl.mapper.YhbglMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.359 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'ykHbLogMapper' and 'com.tofly.feesapi.bjgl.mapper.YkHbLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.359 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'ykYhbgHbMapper' and 'com.tofly.feesapi.bjgl.mapper.YkYhbgHbMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.359 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmCbbMapper' and 'com.tofly.feesapi.bmgl.mapper.BmCbbMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.359 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmCbfsMapper' and 'com.tofly.feesapi.bmgl.mapper.BmCbfsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.359 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmCblxMapper' and 'com.tofly.feesapi.bmgl.mapper.BmCblxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.359 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmCbplMapper' and 'com.tofly.feesapi.bmgl.mapper.BmCbplMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.359 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmCbpqMapper' and 'com.tofly.feesapi.bmgl.mapper.BmCbpqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.359 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmDbhysyhMapper' and 'com.tofly.feesapi.bmgl.mapper.BmDbhysyhMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.359 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmFffsMapper' and 'com.tofly.feesapi.bmgl.mapper.BmFffsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.359 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmFylxMapper' and 'com.tofly.feesapi.bmgl.mapper.BmFylxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.359 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmGsMapper' and 'com.tofly.feesapi.bmgl.mapper.BmGsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.359 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSblbMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSblbMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.359 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSbsccjMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSbsccjMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.359 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSbxhMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSbxhMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.359 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSearchMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSearchMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.359 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSflxMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSflxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.359 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSfqdMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSfqdMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.359 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSjMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSjMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.359 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSjlsMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSjlsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.359 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmYmjzConfigLsMapper' and 'com.tofly.feesapi.bmgl.mapper.BmYmjzConfigLsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.360 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmYmjzConfigMapper' and 'com.tofly.feesapi.bmgl.mapper.BmYmjzConfigMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.360 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmYslxMapper' and 'com.tofly.feesapi.bmgl.mapper.BmYslxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.360 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'cbbConfigMapper' and 'com.tofly.feesapi.bmgl.mapper.CbbConfigMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.360 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysChildCodeMapper' and 'com.tofly.feesapi.bmgl.mapper.SysChildCodeMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.360 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysParentCodeMapper' and 'com.tofly.feesapi.bmgl.mapper.SysParentCodeMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.360 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyCblrLsMapper' and 'com.tofly.feesapi.cbgl.mapper.YyCblrLsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.360 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyCblrMapper' and 'com.tofly.feesapi.cbgl.mapper.YyCblrMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.360 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbCbDayMapper' and 'com.tofly.feesapi.cbgl.mapper.ZnbCbDayMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.360 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbCbLogMapper' and 'com.tofly.feesapi.cbgl.mapper.ZnbCbLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.360 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbZlLogMapper' and 'com.tofly.feesapi.cbgl.mapper.ZnbZlLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.360 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'commonMapper' and 'com.tofly.feesapi.common.mapper.CommonMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.360 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiFpkjMxMapper' and 'com.tofly.feesapi.dzfp.mapper.EiFpkjMxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.360 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiFpkjRequestMapper' and 'com.tofly.feesapi.dzfp.mapper.EiFpkjRequestMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.360 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiKprpzMapper' and 'com.tofly.feesapi.dzfp.mapper.EiKprpzMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.360 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiSalerConfigMapper' and 'com.tofly.feesapi.dzfp.mapper.EiSalerConfigMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.360 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiSpbmMapper' and 'com.tofly.feesapi.dzfp.mapper.EiSpbmMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.360 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiYkfpLogMapper' and 'com.tofly.feesapi.dzfp.mapper.EiYkfpLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.360 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'htFilesMapper' and 'com.tofly.feesapi.dzht.mapper.HtFilesMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.360 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'htTemplateMapper' and 'com.tofly.feesapi.dzht.mapper.HtTemplateMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.360 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'fileMapper' and 'com.tofly.feesapi.file.mapper.FileMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.360 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'flowMapper' and 'com.tofly.feesapi.flowdb.mapper.FlowMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.360 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyBgLogMapper' and 'com.tofly.feesapi.mxcx.mapper.YyBgLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.360 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bankDsdzhzMapper' and 'com.tofly.feesapi.sfds.mapper.BankDsdzhzMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.360 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bankDsdzxxMapper' and 'com.tofly.feesapi.sfds.mapper.BankDsdzxxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.360 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'plsfkhxxMapper' and 'com.tofly.feesapi.sfgl.mapper.PlsfkhxxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.360 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyPjbhMapper' and 'com.tofly.feesapi.sfgl.mapper.YyPjbhMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.360 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyQfmxCzlsMapper' and 'com.tofly.feesapi.sfgl.mapper.YyQfmxCzlsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.360 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyQfmxDzmxMapper' and 'com.tofly.feesapi.sfgl.mapper.YyQfmxDzmxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.360 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyQfmxGdMapper' and 'com.tofly.feesapi.sfgl.mapper.YyQfmxGdMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.360 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyQfmxMapper' and 'com.tofly.feesapi.sfgl.mapper.YyQfmxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.360 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yySspjxxMapper' and 'com.tofly.feesapi.sfgl.mapper.YySspjxxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.360 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yySspjxxReportMapper' and 'com.tofly.feesapi.sfgl.mapper.YySspjxxReportMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.360 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyWyjjmrqMapper' and 'com.tofly.feesapi.sfgl.mapper.YyWyjjmrqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.360 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyWyjtzMapper' and 'com.tofly.feesapi.sfgl.mapper.YyWyjtzMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.360 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbCsjsLogMapper' and 'com.tofly.feesapi.sfgl.mapper.ZnbCsjsLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.360 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'smsMessageMapper' and 'com.tofly.feesapi.sms.mapper.SmsMessageMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.360 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'smsTxlxMapper' and 'com.tofly.feesapi.sms.mapper.SmsTxlxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.360 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'companyMapper' and 'com.tofly.feesapi.udb.mapper.CompanyMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.361 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.tofly.feesapi.udb.mapper.UserMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.361 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userRoleMapper' and 'com.tofly.feesapi.udb.mapper.UserRoleMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.361 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxDtbmMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxDtbmMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.361 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxFwtzMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxFwtzMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.361 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxMessageMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxMessageMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.361 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxTokenMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxTokenMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.361 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxTstzMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxTstzMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.361 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxUserLsMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxUserLsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.361 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxUserMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxUserMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.361 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxYwxzMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxYwxzMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.361 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxYwxzbmMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxYwxzbmMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.361 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxBtsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxBtsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.361 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxBzsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxBzsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.361 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxDbsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxDbsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.361 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxGhsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxGhsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.361 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxGsdtMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxGsdtMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.361 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxHfsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxHfsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.361 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxLwsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxLwsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.361 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxLxdhsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxLxdhsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.361 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxRkssqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxRkssqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.361 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxWdMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxWdMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.361 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxWdbmMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxWdbmMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.361 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxWzjbsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxWzjbsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.361 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxXbsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxXbsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.361 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxXhsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxXhsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.361 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'paySelectMapper' and 'com.tofly.feesapi.wxgl.wechatpay.mapper.PaySelectMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.361 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysGdcsbMapper' and 'com.tofly.feesapi.xtgl.mapper.SysGdcsbMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.361 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'syscommlogMapper' and 'com.tofly.feesapi.xtgl.mapper.SyscommlogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.361 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhBtLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhBtLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.361 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhFfgxMapper' and 'com.tofly.feesapi.yhgl.mapper.YhFfgxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.361 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhGhLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhGhLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.361 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhGroupAccountsMapper' and 'com.tofly.feesapi.yhgl.mapper.YhGroupAccountsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.361 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhGroupMapper' and 'com.tofly.feesapi.yhgl.mapper.YhGroupMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.361 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhHfysLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhHfysLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.361 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhKhjbxxDbhlsMapper' and 'com.tofly.feesapi.yhgl.mapper.YhKhjbxxDbhlsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.361 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhKhjbxxLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhKhjbxxLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.361 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhKhjbxxMapper' and 'com.tofly.feesapi.yhgl.mapper.YhKhjbxxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.362 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhXzbgLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhXzbgLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.362 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhhLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhhLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.362 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhsjqxMapper' and 'com.tofly.feesapi.yhgl.mapper.YhsjqxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.362 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyZjzhMapper' and 'com.tofly.feesapi.yhgl.mapper.YyZjzhMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.362 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbDaLogMapper' and 'com.tofly.feesapi.znbgl.mapper.ZnbDaLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.362 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbYhdaMapper' and 'com.tofly.feesapi.znbgl.mapper.ZnbYhdaMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 11:48:49.362 [main] WARN o.m.s.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.tofly.feesapi.**.mapper]' package. Please check your configuration.
- 2026-05-09 11:48:49.449 [main] INFO o.s.cloud.context.scope.GenericScope - BeanFactory id=6ba9fcc8-98cb-35e6-8547-52fc325bd065
- 2026-05-09 11:48:49.498 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.tofly.feesapi.common.feign.UserClient' of type [org.springframework.cloud.openfeign.FeignClientFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-05-09 11:48:49.751 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.datasource.dynamic-com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-05-09 11:48:49.763 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$e2f5913e] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-05-09 11:48:49.782 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'dsProcessor' of type [com.baomidou.dynamic.datasource.processor.DsHeaderProcessor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-05-09 11:48:49.811 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@24a4e2c5' of type [org.springframework.security.oauth2.provider.expression.OAuth2MethodSecurityExpressionHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-05-09 11:48:49.822 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'methodSecurityMetadataSource' of type [org.springframework.security.access.method.DelegatingMethodSecurityMetadataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-05-09 11:48:50.116 [main] WARN io.undertow.websockets.jsr - UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
- 2026-05-09 11:48:50.150 [main] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
- 2026-05-09 11:48:50.150 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3561 ms
- 2026-05-09 11:48:57.862 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1,master} inited
- 2026-05-09 11:49:00.077 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-2,udb} inited
- 2026-05-09 11:49:01.818 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-3,flowDB} inited
- 2026-05-09 11:49:01.818 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [udb] success
- 2026-05-09 11:49:01.818 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [flowDB] success
- 2026-05-09 11:49:01.818 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
- 2026-05-09 11:49:01.818 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [3] datasource,primary datasource named [master]
- 2026-05-09 11:49:08.220 [main] WARN c.b.m.core.injector.AbstractMethod - [com.tofly.feesapi.bmgl.mapper.SysParentCodeMapper.selectCount] Has been loaded by XML or SqlProvider or Mybatis's Annotation, so ignoring this injection for [class com.baomidou.mybatisplus.core.injector.methods.SelectCount]
- 2026-05-09 11:49:09.220 [main] WARN c.b.m.core.injector.AbstractMethod - [com.tofly.feesapi.flowdb.mapper.FlowMapper.updateById] Has been loaded by XML or SqlProvider or Mybatis's Annotation, so ignoring this injection for [class com.baomidou.mybatisplus.core.injector.methods.UpdateById]
- 2026-05-09 11:49:11.216 [main] WARN c.b.m.core.metadata.TableInfoHelper - Can not find table primary key in Class: "com.tofly.feesapi.wxgl.wechatpay.entity.PaySelect".
- 2026-05-09 11:49:11.216 [main] WARN c.b.m.c.injector.DefaultSqlInjector - class com.tofly.feesapi.wxgl.wechatpay.entity.PaySelect ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method.
- 2026-05-09 11:49:11.242 [main] WARN c.b.m.core.metadata.TableInfoHelper - Can not find table primary key in Class: "com.tofly.feesapi.xtgl.entity.SysGdcsb".
- 2026-05-09 11:49:11.242 [main] WARN c.b.m.c.injector.DefaultSqlInjector - class com.tofly.feesapi.xtgl.entity.SysGdcsb ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method.
- 2026-05-09 11:49:22.462 [main] INFO org.redisson.Version - Redisson 3.23.2
- 2026-05-09 11:49:24.409 [redisson-netty-2-4] INFO o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 127.0.0.1/127.0.0.1:6379
- 2026-05-09 11:49:24.469 [redisson-netty-2-19] INFO o.r.c.pool.MasterConnectionPool - 24 connections initialized for 127.0.0.1/127.0.0.1:6379
- 2026-05-09 11:49:31.841 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
- 2026-05-09 11:49:31.990 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 19 endpoint(s) beneath base path '/actuator'
- 2026-05-09 11:49:32.099 [main] INFO s.d.s.w.WebMvcPropertySourcedRequestMappingHandlerMapping - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
- 2026-05-09 11:49:32.239 [main] INFO c.n.c.sources.URLConfigurationSource - URLs to be used as dynamic configuration source: [file:/D:/work/tf/%e5%b1%b1%e4%b8%9c%e8%8e%b1%e9%98%b3%e6%b0%b4%e5%8f%b8/%e8%8e%b1%e9%98%b3%e6%99%ba%e6%85%a7%e6%b0%b4%e5%8a%a1JAVA%e8%90%a5%e9%94%80/20260403/lywebmis/collect_fees_ly_api/fees-ly-api/target/classes/config.properties]
- 2026-05-09 11:49:32.247 [main] INFO c.n.c.sources.URLConfigurationSource - URLs to be used as dynamic configuration source: [file:/D:/work/tf/%e5%b1%b1%e4%b8%9c%e8%8e%b1%e9%98%b3%e6%b0%b4%e5%8f%b8/%e8%8e%b1%e9%98%b3%e6%99%ba%e6%85%a7%e6%b0%b4%e5%8a%a1JAVA%e8%90%a5%e9%94%80/20260403/lywebmis/collect_fees_ly_api/fees-ly-api/target/classes/config.properties]
- 2026-05-09 11:49:32.477 [main] INFO o.s.s.c.ThreadPoolTaskScheduler - Initializing ExecutorService 'taskScheduler'
- 2026-05-09 11:49:32.633 [main] INFO o.s.b.a.s.s.UserDetailsServiceAutoConfiguration -
- Using generated security password: ddff6996-e1ae-4c53-82db-6cbd1a942758
- 2026-05-09 11:49:32.728 [main] INFO o.s.s.web.DefaultSecurityFilterChain - Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@c4ef770, org.springframework.security.web.context.SecurityContextPersistenceFilter@139f1db4, org.springframework.security.web.header.HeaderWriterFilter@5e7d994c, org.springframework.security.web.authentication.logout.LogoutFilter@12f52ca4, org.springframework.security.oauth2.provider.authentication.OAuth2AuthenticationProcessingFilter@6846e4e8, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@532860c7, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@7c9a39cb, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@228f15de, org.springframework.security.web.session.SessionManagementFilter@806a687, org.springframework.security.web.access.ExceptionTranslationFilter@3094111c, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@69c00140]
- 2026-05-09 11:49:34.075 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
- 2026-05-09 11:49:34.197 [main] WARN o.s.c.s.o.SpringCloudSecurityAutoConfiguration - All Spring Cloud Security modules and starters are deprecated. They will be moved to individual projects in the next major release.
- 2026-05-09 11:49:34.323 [main] INFO s.d.s.w.p.DocumentationPluginsBootstrapper - Documentation plugins bootstrapped
- 2026-05-09 11:49:34.325 [main] INFO s.d.s.w.p.DocumentationPluginsBootstrapper - Found 1 custom documentation plugin(s)
- 2026-05-09 11:49:34.434 [main] INFO s.d.s.w.s.ApiListingReferenceScanner - Scanning for api listing references
- 2026-05-09 11:49:34.782 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_1
- 2026-05-09 11:49:34.785 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_1
- 2026-05-09 11:49:34.786 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_1
- 2026-05-09 11:49:34.786 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_1
- 2026-05-09 11:49:34.789 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_1
- 2026-05-09 11:49:34.790 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_1
- 2026-05-09 11:49:34.807 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: addCustomerUsingPOST_1
- 2026-05-09 11:49:34.807 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: deleteCustomerUsingPOST_1
- 2026-05-09 11:49:34.808 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getBindCustomerUsingGET_1
- 2026-05-09 11:49:34.809 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: selectCustomerUsingGET_1
- 2026-05-09 11:49:34.810 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getBindCustomerAndQfUsingGET_1
- 2026-05-09 11:49:34.811 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerBasicInFoUsingGET_1
- 2026-05-09 11:49:34.811 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerChargeInFoUsingGET_1
- 2026-05-09 11:49:34.812 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerInFoUsingGET_1
- 2026-05-09 11:49:34.813 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerQfInFoUsingGET_1
- 2026-05-09 11:49:34.813 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerReadMeterInFoUsingGET_1
- 2026-05-09 11:49:34.822 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_2
- 2026-05-09 11:49:34.843 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_2
- 2026-05-09 11:49:34.845 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_2
- 2026-05-09 11:49:34.845 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_2
- 2026-05-09 11:49:34.849 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_2
- 2026-05-09 11:49:34.850 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_2
- 2026-05-09 11:49:34.863 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_3
- 2026-05-09 11:49:34.864 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_3
- 2026-05-09 11:49:34.864 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_3
- 2026-05-09 11:49:34.866 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_3
- 2026-05-09 11:49:34.867 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_3
- 2026-05-09 11:49:34.872 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_3
- 2026-05-09 11:49:34.877 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_4
- 2026-05-09 11:49:34.877 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_4
- 2026-05-09 11:49:34.878 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_4
- 2026-05-09 11:49:34.879 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_4
- 2026-05-09 11:49:34.880 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_4
- 2026-05-09 11:49:34.881 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_5
- 2026-05-09 11:49:34.881 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_5
- 2026-05-09 11:49:34.882 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_5
- 2026-05-09 11:49:34.884 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_5
- 2026-05-09 11:49:34.885 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_5
- 2026-05-09 11:49:34.889 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_4
- 2026-05-09 11:49:34.893 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_6
- 2026-05-09 11:49:34.898 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_5
- 2026-05-09 11:49:34.898 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_6
- 2026-05-09 11:49:34.899 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_6
- 2026-05-09 11:49:34.901 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_6
- 2026-05-09 11:49:34.902 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_6
- 2026-05-09 11:49:34.904 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_1
- 2026-05-09 11:49:34.908 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_7
- 2026-05-09 11:49:34.909 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_7
- 2026-05-09 11:49:34.910 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_7
- 2026-05-09 11:49:34.912 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_7
- 2026-05-09 11:49:34.913 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_7
- 2026-05-09 11:49:34.915 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_8
- 2026-05-09 11:49:34.916 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getFffsListUsingGET_1
- 2026-05-09 11:49:34.916 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_8
- 2026-05-09 11:49:34.917 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_9
- 2026-05-09 11:49:34.920 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_8
- 2026-05-09 11:49:34.921 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_8
- 2026-05-09 11:49:34.924 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_2
- 2026-05-09 11:49:34.928 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_9
- 2026-05-09 11:49:34.929 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_10
- 2026-05-09 11:49:34.929 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_11
- 2026-05-09 11:49:34.931 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_9
- 2026-05-09 11:49:34.932 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_9
- 2026-05-09 11:49:34.934 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_10
- 2026-05-09 11:49:34.935 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_12
- 2026-05-09 11:49:34.935 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_13
- 2026-05-09 11:49:34.938 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_10
- 2026-05-09 11:49:34.938 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_10
- 2026-05-09 11:49:34.941 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_11
- 2026-05-09 11:49:34.942 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_14
- 2026-05-09 11:49:34.943 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_15
- 2026-05-09 11:49:34.945 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_11
- 2026-05-09 11:49:34.945 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_11
- 2026-05-09 11:49:34.951 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_12
- 2026-05-09 11:49:34.951 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_16
- 2026-05-09 11:49:34.952 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_8
- 2026-05-09 11:49:34.953 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_12
- 2026-05-09 11:49:34.954 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_12
- 2026-05-09 11:49:34.958 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_13
- 2026-05-09 11:49:34.959 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_17
- 2026-05-09 11:49:34.959 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_9
- 2026-05-09 11:49:34.961 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_13
- 2026-05-09 11:49:34.961 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_13
- 2026-05-09 11:49:34.963 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_14
- 2026-05-09 11:49:34.964 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_18
- 2026-05-09 11:49:34.965 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_19
- 2026-05-09 11:49:34.967 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_14
- 2026-05-09 11:49:34.968 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_14
- 2026-05-09 11:49:34.973 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_15
- 2026-05-09 11:49:34.982 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_6
- 2026-05-09 11:49:34.999 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_15
- 2026-05-09 11:49:35.002 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_3
- 2026-05-09 11:49:35.006 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_16
- 2026-05-09 11:49:35.007 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_20
- 2026-05-09 11:49:35.008 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_10
- 2026-05-09 11:49:35.009 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_16
- 2026-05-09 11:49:35.010 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_15
- 2026-05-09 11:49:35.015 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_17
- 2026-05-09 11:49:35.020 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_7
- 2026-05-09 11:49:35.021 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_21
- 2026-05-09 11:49:35.022 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_11
- 2026-05-09 11:49:35.024 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_17
- 2026-05-09 11:49:35.024 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_16
- 2026-05-09 11:49:35.038 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_8
- 2026-05-09 11:49:35.039 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveBatchUsingPOST_1
- 2026-05-09 11:49:35.135 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_18
- 2026-05-09 11:49:35.139 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_22
- 2026-05-09 11:49:35.139 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_12
- 2026-05-09 11:49:35.140 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_18
- 2026-05-09 11:49:35.141 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_17
- 2026-05-09 11:49:35.142 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_19
- 2026-05-09 11:49:35.145 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_23
- 2026-05-09 11:49:35.146 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_13
- 2026-05-09 11:49:35.148 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_19
- 2026-05-09 11:49:35.149 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_18
- 2026-05-09 11:49:35.150 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_20
- 2026-05-09 11:49:35.151 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_24
- 2026-05-09 11:49:35.154 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_20
- 2026-05-09 11:49:35.155 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_19
- 2026-05-09 11:49:35.160 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_21
- 2026-05-09 11:49:35.161 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_25
- 2026-05-09 11:49:35.161 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_14
- 2026-05-09 11:49:35.163 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_21
- 2026-05-09 11:49:35.178 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: Xh_WordToPdfUsingPOST_1
- 2026-05-09 11:49:35.180 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_22
- 2026-05-09 11:49:35.185 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_26
- 2026-05-09 11:49:35.185 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_15
- 2026-05-09 11:49:35.188 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_22
- 2026-05-09 11:49:35.189 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_27
- 2026-05-09 11:49:35.190 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_16
- 2026-05-09 11:49:35.192 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_23
- 2026-05-09 11:49:35.193 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_20
- 2026-05-09 11:49:35.215 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_23
- 2026-05-09 11:49:35.289 [main] WARN s.d.s.w.r.p.ParameterTypeReader - @ModelAttribute annotated parameters should have already been expanded via the ExpandedParameterBuilderPlugin
- 2026-05-09 11:49:35.289 [main] WARN s.d.s.w.r.p.ParameterTypeReader - @ModelAttribute annotated parameters should have already been expanded via the ExpandedParameterBuilderPlugin
- 2026-05-09 11:49:35.295 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportYsqdUsingGET_1
- 2026-05-09 11:49:35.335 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_24
- 2026-05-09 11:49:35.336 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_28
- 2026-05-09 11:49:35.337 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_17
- 2026-05-09 11:49:35.355 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_25
- 2026-05-09 11:49:35.356 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_29
- 2026-05-09 11:49:35.356 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_18
- 2026-05-09 11:49:35.359 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_24
- 2026-05-09 11:49:35.359 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_21
- 2026-05-09 11:49:35.368 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_26
- 2026-05-09 11:49:35.373 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_30
- 2026-05-09 11:49:35.373 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_19
- 2026-05-09 11:49:35.374 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_25
- 2026-05-09 11:49:35.375 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_22
- 2026-05-09 11:49:35.377 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_27
- 2026-05-09 11:49:35.380 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_31
- 2026-05-09 11:49:35.381 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_20
- 2026-05-09 11:49:35.382 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_26
- 2026-05-09 11:49:35.383 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_23
- 2026-05-09 11:49:35.392 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_28
- 2026-05-09 11:49:35.396 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_32
- 2026-05-09 11:49:35.397 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_21
- 2026-05-09 11:49:35.400 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_27
- 2026-05-09 11:49:35.400 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_24
- 2026-05-09 11:49:35.407 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxBtsqPageUsingGET_1
- 2026-05-09 11:49:35.409 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_29
- 2026-05-09 11:49:35.412 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_33
- 2026-05-09 11:49:35.413 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_22
- 2026-05-09 11:49:35.415 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_28
- 2026-05-09 11:49:35.417 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_25
- 2026-05-09 11:49:35.421 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxBzsqPageUsingGET_1
- 2026-05-09 11:49:35.426 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_30
- 2026-05-09 11:49:35.431 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_34
- 2026-05-09 11:49:35.432 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_23
- 2026-05-09 11:49:35.435 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_29
- 2026-05-09 11:49:35.435 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_26
- 2026-05-09 11:49:35.441 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxDbsqPageUsingGET_1
- 2026-05-09 11:49:35.444 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPOST_1
- 2026-05-09 11:49:35.446 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_31
- 2026-05-09 11:49:35.450 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_35
- 2026-05-09 11:49:35.450 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_24
- 2026-05-09 11:49:35.453 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_30
- 2026-05-09 11:49:35.454 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_27
- 2026-05-09 11:49:35.455 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_32
- 2026-05-09 11:49:35.457 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_36
- 2026-05-09 11:49:35.458 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_25
- 2026-05-09 11:49:35.462 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_31
- 2026-05-09 11:49:35.463 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_28
- 2026-05-09 11:49:35.465 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_33
- 2026-05-09 11:49:35.466 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_37
- 2026-05-09 11:49:35.467 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_26
- 2026-05-09 11:49:35.470 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_32
- 2026-05-09 11:49:35.472 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_29
- 2026-05-09 11:49:35.481 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_34
- 2026-05-09 11:49:35.484 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_38
- 2026-05-09 11:49:35.484 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_39
- 2026-05-09 11:49:35.486 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_33
- 2026-05-09 11:49:35.487 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_30
- 2026-05-09 11:49:35.489 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_35
- 2026-05-09 11:49:35.495 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_40
- 2026-05-09 11:49:35.496 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_27
- 2026-05-09 11:49:35.499 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_34
- 2026-05-09 11:49:35.500 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_31
- 2026-05-09 11:49:35.505 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxHfsqPageUsingGET_1
- 2026-05-09 11:49:35.507 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_36
- 2026-05-09 11:49:35.512 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_41
- 2026-05-09 11:49:35.513 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_28
- 2026-05-09 11:49:35.515 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_35
- 2026-05-09 11:49:35.516 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_32
- 2026-05-09 11:49:35.523 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxLwsqPageUsingGET_1
- 2026-05-09 11:49:35.525 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_37
- 2026-05-09 11:49:35.530 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_42
- 2026-05-09 11:49:35.531 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_29
- 2026-05-09 11:49:35.533 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_36
- 2026-05-09 11:49:35.534 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_33
- 2026-05-09 11:49:35.539 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxLxdhsqPageUsingGET_1
- 2026-05-09 11:49:35.541 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_38
- 2026-05-09 11:49:35.546 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_43
- 2026-05-09 11:49:35.546 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_30
- 2026-05-09 11:49:35.550 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_37
- 2026-05-09 11:49:35.551 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_34
- 2026-05-09 11:49:35.559 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_39
- 2026-05-09 11:49:35.564 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_44
- 2026-05-09 11:49:35.565 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_31
- 2026-05-09 11:49:35.568 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_38
- 2026-05-09 11:49:35.569 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_35
- 2026-05-09 11:49:35.574 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxDbsqPageUsingGET_2
- 2026-05-09 11:49:35.580 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_1
- 2026-05-09 11:49:35.582 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_40
- 2026-05-09 11:49:35.584 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_45
- 2026-05-09 11:49:35.585 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_32
- 2026-05-09 11:49:35.588 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_39
- 2026-05-09 11:49:35.594 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_36
- 2026-05-09 11:49:35.595 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_41
- 2026-05-09 11:49:35.597 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_46
- 2026-05-09 11:49:35.598 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_33
- 2026-05-09 11:49:35.600 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_40
- 2026-05-09 11:49:35.601 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_37
- 2026-05-09 11:49:35.603 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_42
- 2026-05-09 11:49:35.605 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_47
- 2026-05-09 11:49:35.606 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_34
- 2026-05-09 11:49:35.609 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_41
- 2026-05-09 11:49:35.610 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_38
- 2026-05-09 11:49:35.611 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_43
- 2026-05-09 11:49:35.613 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_48
- 2026-05-09 11:49:35.614 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_49
- 2026-05-09 11:49:35.616 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_42
- 2026-05-09 11:49:35.617 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_39
- 2026-05-09 11:49:35.619 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_44
- 2026-05-09 11:49:35.621 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_50
- 2026-05-09 11:49:35.622 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_51
- 2026-05-09 11:49:35.624 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_43
- 2026-05-09 11:49:35.625 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_40
- 2026-05-09 11:49:35.627 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_45
- 2026-05-09 11:49:35.631 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_52
- 2026-05-09 11:49:35.632 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_35
- 2026-05-09 11:49:35.635 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_44
- 2026-05-09 11:49:35.636 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_41
- 2026-05-09 11:49:35.640 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxWzjbsqPageUsingGET_1
- 2026-05-09 11:49:35.642 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_46
- 2026-05-09 11:49:35.647 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_53
- 2026-05-09 11:49:35.648 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_36
- 2026-05-09 11:49:35.651 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_45
- 2026-05-09 11:49:35.652 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_42
- 2026-05-09 11:49:35.658 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxXbsqPageUsingGET_1
- 2026-05-09 11:49:35.660 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_47
- 2026-05-09 11:49:35.665 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_54
- 2026-05-09 11:49:35.666 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_37
- 2026-05-09 11:49:35.668 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_46
- 2026-05-09 11:49:35.670 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_43
- 2026-05-09 11:49:35.675 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxXhsqPageUsingGET_1
- 2026-05-09 11:49:35.676 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPOST_2
- 2026-05-09 11:49:35.678 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_48
- 2026-05-09 11:49:35.680 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_55
- 2026-05-09 11:49:35.681 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_38
- 2026-05-09 11:49:35.685 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_47
- 2026-05-09 11:49:35.685 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_44
- 2026-05-09 11:49:35.687 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_49
- 2026-05-09 11:49:35.691 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_56
- 2026-05-09 11:49:35.692 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_39
- 2026-05-09 11:49:35.694 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_48
- 2026-05-09 11:49:35.695 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_45
- 2026-05-09 11:49:35.701 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_9
- 2026-05-09 11:49:35.703 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_57
- 2026-05-09 11:49:35.704 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_40
- 2026-05-09 11:49:35.706 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_49
- 2026-05-09 11:49:35.707 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_58
- 2026-05-09 11:49:35.708 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_41
- 2026-05-09 11:49:35.710 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_50
- 2026-05-09 11:49:35.716 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_10
- 2026-05-09 11:49:35.718 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_50
- 2026-05-09 11:49:35.722 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_59
- 2026-05-09 11:49:35.723 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_42
- 2026-05-09 11:49:35.726 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_51
- 2026-05-09 11:49:35.729 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_46
- 2026-05-09 11:49:35.730 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_2
- 2026-05-09 11:49:35.745 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_52
- 2026-05-09 11:49:35.751 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_51
- 2026-05-09 11:49:35.758 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_11
- 2026-05-09 11:49:35.766 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_1
- 2026-05-09 11:49:35.773 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_52
- 2026-05-09 11:49:35.774 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_43
- 2026-05-09 11:49:35.789 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_53
- 2026-05-09 11:49:35.793 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_60
- 2026-05-09 11:49:35.794 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_44
- 2026-05-09 11:49:35.796 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_53
- 2026-05-09 11:49:35.797 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_47
- 2026-05-09 11:49:35.798 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_54
- 2026-05-09 11:49:35.801 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_61
- 2026-05-09 11:49:35.801 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_45
- 2026-05-09 11:49:35.806 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_54
- 2026-05-09 11:49:35.810 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_48
- 2026-05-09 11:49:35.811 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_3
- 2026-05-09 11:49:35.813 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_62
- 2026-05-09 11:49:35.814 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_46
- 2026-05-09 11:49:35.816 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_55
- 2026-05-09 11:49:35.820 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_12
- 2026-05-09 11:49:35.824 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_63
- 2026-05-09 11:49:35.826 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_47
- 2026-05-09 11:49:35.828 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_56
- 2026-05-09 11:49:35.834 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_13
- 2026-05-09 11:49:35.836 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_55
- 2026-05-09 11:49:35.838 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_64
- 2026-05-09 11:49:35.839 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_48
- 2026-05-09 11:49:35.844 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_57
- 2026-05-09 11:49:35.850 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_49
- 2026-05-09 11:49:35.851 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_4
- 2026-05-09 11:49:35.869 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getDaCustomerPageUsingGET_1
- 2026-05-09 11:49:35.893 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_1
- 2026-05-09 11:49:35.904 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_14
- 2026-05-09 11:49:35.923 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_56
- 2026-05-09 11:49:35.957 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: delByIdUsingDELETE_1
- 2026-05-09 11:49:35.958 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: delByIdsUsingDELETE_1
- 2026-05-09 11:49:35.959 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: disableUsingPUT_1
- 2026-05-09 11:49:35.960 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: enableUsingPUT_1
- 2026-05-09 11:49:35.962 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: importExcelUsingPOST_1
- 2026-05-09 11:49:35.964 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_2
- 2026-05-09 11:49:35.968 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_3
- 2026-05-09 11:49:35.982 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_5
- 2026-05-09 11:49:35.984 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_6
- 2026-05-09 11:49:35.985 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_7
- 2026-05-09 11:49:35.987 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_57
- 2026-05-09 11:49:35.994 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_49
- 2026-05-09 11:49:36.012 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: addUsingPOST_1
- 2026-05-09 11:49:36.017 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_58
- 2026-05-09 11:49:36.023 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_65
- 2026-05-09 11:49:36.024 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_50
- 2026-05-09 11:49:36.026 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_58
- 2026-05-09 11:49:36.029 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: save_gdUsingPOST_1
- 2026-05-09 11:49:36.038 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_50
- 2026-05-09 11:49:36.052 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_59
- 2026-05-09 11:49:36.058 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_66
- 2026-05-09 11:49:36.060 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_51
- 2026-05-09 11:49:36.063 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_59
- 2026-05-09 11:49:36.065 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_51
- 2026-05-09 11:49:36.067 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_60
- 2026-05-09 11:49:36.070 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_67
- 2026-05-09 11:49:36.071 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_52
- 2026-05-09 11:49:36.076 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_60
- 2026-05-09 11:49:36.078 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: save_gdUsingPOST_2
- 2026-05-09 11:49:36.082 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_52
- 2026-05-09 11:49:36.083 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_8
- 2026-05-09 11:49:36.091 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_9
- 2026-05-09 11:49:36.102 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_61
- 2026-05-09 11:49:36.142 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_2
- 2026-05-09 11:49:36.146 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_62
- 2026-05-09 11:49:36.149 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_15
- 2026-05-09 11:49:36.175 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_4
- 2026-05-09 11:49:36.181 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_10
- 2026-05-09 11:49:36.187 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_63
- 2026-05-09 11:49:36.192 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_68
- 2026-05-09 11:49:36.193 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_53
- 2026-05-09 11:49:36.200 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_61
- 2026-05-09 11:49:36.202 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_53
- 2026-05-09 11:49:36.241 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_54
- 2026-05-09 11:49:36.326 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_16
- 2026-05-09 11:49:36.368 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getListUsingGET_1
- 2026-05-09 11:49:36.428 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_64
- 2026-05-09 11:49:36.460 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: statUsingGET_1
- 2026-05-09 11:49:36.488 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_11
- 2026-05-09 11:49:36.491 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_65
- 2026-05-09 11:49:36.500 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_69
- 2026-05-09 11:49:36.501 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_54
- 2026-05-09 11:49:36.528 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_62
- 2026-05-09 11:49:36.530 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_55
- 2026-05-09 11:49:36.532 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_66
- 2026-05-09 11:49:36.536 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_63
- 2026-05-09 11:49:36.538 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_56
- 2026-05-09 11:49:36.547 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_12
- 2026-05-09 11:49:36.572 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_64
- 2026-05-09 11:49:36.594 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_17
- 2026-05-09 11:49:36.609 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: monthlyStatUsingGET_1
- 2026-05-09 11:49:36.612 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: monthlyStatSummaryUsingGET_1
- 2026-05-09 11:49:36.615 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getListUsingGET_2
- 2026-05-09 11:49:36.667 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_67
- 2026-05-09 11:49:36.692 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageListUsingGET_1
- 2026-05-09 11:49:36.695 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: statUsingGET_2
- 2026-05-09 11:49:36.723 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_13
- 2026-05-09 11:49:36.725 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_14
- 2026-05-09 11:49:36.756 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_65
- 2026-05-09 11:49:36.764 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_68
- 2026-05-09 11:49:36.799 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getYyWyjtzPageUsingGET_1
- 2026-05-09 11:49:36.800 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_15
- 2026-05-09 11:49:36.803 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_5
- 2026-05-09 11:49:36.810 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_18
- 2026-05-09 11:49:36.811 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_16
- 2026-05-09 11:49:36.821 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_19
- 2026-05-09 11:49:36.822 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_17
- 2026-05-09 11:49:36.864 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_20
- 2026-05-09 11:49:36.865 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_18
- 2026-05-09 11:49:36.868 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_69
- 2026-05-09 11:49:36.875 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_70
- 2026-05-09 11:49:36.877 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_55
- 2026-05-09 11:49:36.884 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_66
- 2026-05-09 11:49:36.889 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_57
- 2026-05-09 11:49:36.893 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_70
- 2026-05-09 11:49:36.896 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_71
- 2026-05-09 11:49:36.899 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_56
- 2026-05-09 11:49:36.907 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_67
- 2026-05-09 11:49:36.910 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_58
- 2026-05-09 11:49:36.913 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_21
- 2026-05-09 11:49:36.915 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_3
- 2026-05-09 11:49:36.921 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_68
- 2026-05-09 11:49:36.930 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_22
- 2026-05-09 11:49:36.966 [main] INFO io.undertow - starting server: Undertow - 2.0.31.Final
- 2026-05-09 11:49:36.974 [main] INFO org.xnio - XNIO version 3.3.8.Final
- 2026-05-09 11:49:36.980 [main] INFO org.xnio.nio - XNIO NIO Implementation Version 3.3.8.Final
- 2026-05-09 11:49:37.019 [main] INFO o.s.b.w.e.u.UndertowServletWebServer - Undertow started on port(s) 10506 (http) with context path ''
- 2026-05-09 11:49:37.177 [main] INFO c.a.c.n.r.NacosServiceRegistry - nacos registry, DEFAULT_GROUP collect-fees-api 172.19.0.11:10506 register finished
- 2026-05-09 11:49:38.453 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
- 2026-05-09 11:49:38.455 [main] INFO com.tofly.feesapi.FeesApiApplication - Started FeesApiApplication in 83.649 seconds (JVM running for 85.718)
- 2026-05-09 11:49:39.810 [RMI TCP Connection(10)-192.168.1.105] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
- 2026-05-09 11:49:39.810 [RMI TCP Connection(10)-192.168.1.105] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
- 2026-05-09 11:49:39.844 [RMI TCP Connection(10)-192.168.1.105] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 34 ms
- 2026-05-09 11:52:24.709 [XNIO-1 task-34] ERROR io.undertow.request - UT005023: Exception handling request to /yysspjxx/getPageList
- org.springframework.web.client.ResourceAccessException: I/O error on POST request for "http://127.0.0.1:10501/oauth/check_token": Connect to 127.0.0.1:10501 [/127.0.0.1] failed: Connection refused: connect; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to 127.0.0.1:10501 [/127.0.0.1] failed: Connection refused: connect
- at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:748)
- at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:674)
- at org.springframework.web.client.RestTemplate.exchange(RestTemplate.java:583)
- at org.springframework.security.oauth2.provider.token.RemoteTokenServices.postForMap(RemoteTokenServices.java:149)
- at org.springframework.security.oauth2.provider.token.RemoteTokenServices.loadAuthentication(RemoteTokenServices.java:106)
- at org.springframework.security.oauth2.provider.authentication.OAuth2AuthenticationManager.authenticate(OAuth2AuthenticationManager.java:83)
- at org.springframework.security.oauth2.provider.authentication.OAuth2AuthenticationProcessingFilter.doFilter(OAuth2AuthenticationProcessingFilter.java:150)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
- at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
- at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:92)
- at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:77)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
- at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
- at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
- at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:215)
- at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:178)
- at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:358)
- at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:271)
- at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
- at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
- at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
- at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
- at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
- at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
- at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
- at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
- at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:109)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
- at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
- at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
- at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
- at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
- at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
- at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:84)
- at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:62)
- at io.undertow.servlet.handlers.ServletChain$1.handleRequest(ServletChain.java:68)
- at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36)
- at io.undertow.servlet.handlers.RedirectDirHandler.handleRequest(RedirectDirHandler.java:68)
- at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:132)
- at io.undertow.servlet.handlers.security.ServletAuthenticationCallHandler.handleRequest(ServletAuthenticationCallHandler.java:57)
- at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
- at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:46)
- at io.undertow.servlet.handlers.security.ServletConfidentialityConstraintHandler.handleRequest(ServletConfidentialityConstraintHandler.java:64)
- at io.undertow.security.handlers.AuthenticationMechanismsHandler.handleRequest(AuthenticationMechanismsHandler.java:60)
- at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:77)
- at io.undertow.security.handlers.AbstractSecurityContextAssociationHandler.handleRequest(AbstractSecurityContextAssociationHandler.java:43)
- at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
- at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
- at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:269)
- at io.undertow.servlet.handlers.ServletInitialHandler.access$100(ServletInitialHandler.java:78)
- at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:133)
- at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:130)
- at io.undertow.servlet.core.ServletRequestContextThreadSetupAction$1.call(ServletRequestContextThreadSetupAction.java:48)
- at io.undertow.servlet.core.ContextClassLoaderSetupAction$1.call(ContextClassLoaderSetupAction.java:43)
- at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:249)
- at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:78)
- at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:99)
- at io.undertow.server.Connectors.executeRootHandler(Connectors.java:376)
- at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:830)
- at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
- at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
- at java.lang.Thread.run(Thread.java:748)
- Caused by: org.apache.http.conn.HttpHostConnectException: Connect to 127.0.0.1:10501 [/127.0.0.1] failed: Connection refused: connect
- at org.apache.http.impl.conn.DefaultHttpClientConnectionOperator.connect(DefaultHttpClientConnectionOperator.java:156)
- at org.apache.http.impl.conn.PoolingHttpClientConnectionManager.connect(PoolingHttpClientConnectionManager.java:376)
- at org.apache.http.impl.execchain.MainClientExec.establishRoute(MainClientExec.java:393)
- at org.apache.http.impl.execchain.MainClientExec.execute(MainClientExec.java:236)
- at org.apache.http.impl.execchain.ProtocolExec.execute(ProtocolExec.java:186)
- at org.apache.http.impl.execchain.RetryExec.execute(RetryExec.java:89)
- at org.apache.http.impl.execchain.RedirectExec.execute(RedirectExec.java:110)
- at org.apache.http.impl.client.InternalHttpClient.doExecute(InternalHttpClient.java:185)
- at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:83)
- at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:56)
- at org.springframework.http.client.HttpComponentsClientHttpRequest.executeInternal(HttpComponentsClientHttpRequest.java:87)
- at org.springframework.http.client.AbstractBufferingClientHttpRequest.executeInternal(AbstractBufferingClientHttpRequest.java:48)
- at org.springframework.http.client.AbstractClientHttpRequest.execute(AbstractClientHttpRequest.java:53)
- at org.springframework.http.client.InterceptingClientHttpRequest$InterceptingRequestExecution.execute(InterceptingClientHttpRequest.java:109)
- at org.springframework.boot.actuate.metrics.web.client.MetricsClientHttpRequestInterceptor.intercept(MetricsClientHttpRequestInterceptor.java:95)
- at org.springframework.http.client.InterceptingClientHttpRequest$InterceptingRequestExecution.execute(InterceptingClientHttpRequest.java:93)
- at org.springframework.http.client.InterceptingClientHttpRequest.executeInternal(InterceptingClientHttpRequest.java:77)
- at org.springframework.http.client.AbstractBufferingClientHttpRequest.executeInternal(AbstractBufferingClientHttpRequest.java:48)
- at org.springframework.http.client.AbstractClientHttpRequest.execute(AbstractClientHttpRequest.java:53)
- at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:739)
- ... 69 common frames omitted
- Caused by: java.net.ConnectException: Connection refused: connect
- at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method)
- at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:85)
- at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)
- at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
- at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
- at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:172)
- at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
- at java.net.Socket.connect(Socket.java:589)
- at org.apache.http.conn.socket.PlainConnectionSocketFactory.connectSocket(PlainConnectionSocketFactory.java:75)
- at org.apache.http.impl.conn.DefaultHttpClientConnectionOperator.connect(DefaultHttpClientConnectionOperator.java:142)
- ... 88 common frames omitted
- 2026-05-09 11:52:26.753 [XNIO-1 task-34] ERROR io.undertow.request - UT005022: Exception generating error page /error
- java.lang.RuntimeException: org.springframework.web.client.ResourceAccessException: I/O error on POST request for "http://127.0.0.1:10501/oauth/check_token": Connect to 127.0.0.1:10501 [/127.0.0.1] failed: Connection refused: connect; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to 127.0.0.1:10501 [/127.0.0.1] failed: Connection refused: connect
- at io.undertow.servlet.spec.RequestDispatcherImpl.error(RequestDispatcherImpl.java:507)
- at io.undertow.servlet.spec.RequestDispatcherImpl.error(RequestDispatcherImpl.java:427)
- at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:308)
- at io.undertow.servlet.handlers.ServletInitialHandler.access$100(ServletInitialHandler.java:78)
- at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:133)
- at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:130)
- at io.undertow.servlet.core.ServletRequestContextThreadSetupAction$1.call(ServletRequestContextThreadSetupAction.java:48)
- at io.undertow.servlet.core.ContextClassLoaderSetupAction$1.call(ContextClassLoaderSetupAction.java:43)
- at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:249)
- at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:78)
- at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:99)
- at io.undertow.server.Connectors.executeRootHandler(Connectors.java:376)
- at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:830)
- at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
- at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
- at java.lang.Thread.run(Thread.java:748)
- Caused by: org.springframework.web.client.ResourceAccessException: I/O error on POST request for "http://127.0.0.1:10501/oauth/check_token": Connect to 127.0.0.1:10501 [/127.0.0.1] failed: Connection refused: connect; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to 127.0.0.1:10501 [/127.0.0.1] failed: Connection refused: connect
- at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:748)
- at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:674)
- at org.springframework.web.client.RestTemplate.exchange(RestTemplate.java:583)
- at org.springframework.security.oauth2.provider.token.RemoteTokenServices.postForMap(RemoteTokenServices.java:149)
- at org.springframework.security.oauth2.provider.token.RemoteTokenServices.loadAuthentication(RemoteTokenServices.java:106)
- at org.springframework.security.oauth2.provider.authentication.OAuth2AuthenticationManager.authenticate(OAuth2AuthenticationManager.java:83)
- at org.springframework.security.oauth2.provider.authentication.OAuth2AuthenticationProcessingFilter.doFilter(OAuth2AuthenticationProcessingFilter.java:150)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
- at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:103)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
- at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:103)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
- at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:215)
- at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:178)
- at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:358)
- at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:271)
- at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
- at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
- at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:84)
- at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:62)
- at io.undertow.servlet.handlers.ServletChain$1.handleRequest(ServletChain.java:68)
- at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36)
- at io.undertow.servlet.handlers.RedirectDirHandler.handleRequest(RedirectDirHandler.java:68)
- at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
- at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
- at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:251)
- at io.undertow.servlet.handlers.ServletInitialHandler.dispatchToPath(ServletInitialHandler.java:186)
- at io.undertow.servlet.spec.RequestDispatcherImpl.error(RequestDispatcherImpl.java:501)
- ... 15 common frames omitted
- Caused by: org.apache.http.conn.HttpHostConnectException: Connect to 127.0.0.1:10501 [/127.0.0.1] failed: Connection refused: connect
- at org.apache.http.impl.conn.DefaultHttpClientConnectionOperator.connect(DefaultHttpClientConnectionOperator.java:156)
- at org.apache.http.impl.conn.PoolingHttpClientConnectionManager.connect(PoolingHttpClientConnectionManager.java:376)
- at org.apache.http.impl.execchain.MainClientExec.establishRoute(MainClientExec.java:393)
- at org.apache.http.impl.execchain.MainClientExec.execute(MainClientExec.java:236)
- at org.apache.http.impl.execchain.ProtocolExec.execute(ProtocolExec.java:186)
- at org.apache.http.impl.execchain.RetryExec.execute(RetryExec.java:89)
- at org.apache.http.impl.execchain.RedirectExec.execute(RedirectExec.java:110)
- at org.apache.http.impl.client.InternalHttpClient.doExecute(InternalHttpClient.java:185)
- at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:83)
- at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:56)
- at org.springframework.http.client.HttpComponentsClientHttpRequest.executeInternal(HttpComponentsClientHttpRequest.java:87)
- at org.springframework.http.client.AbstractBufferingClientHttpRequest.executeInternal(AbstractBufferingClientHttpRequest.java:48)
- at org.springframework.http.client.AbstractClientHttpRequest.execute(AbstractClientHttpRequest.java:53)
- at org.springframework.http.client.InterceptingClientHttpRequest$InterceptingRequestExecution.execute(InterceptingClientHttpRequest.java:109)
- at org.springframework.boot.actuate.metrics.web.client.MetricsClientHttpRequestInterceptor.intercept(MetricsClientHttpRequestInterceptor.java:95)
- at org.springframework.http.client.InterceptingClientHttpRequest$InterceptingRequestExecution.execute(InterceptingClientHttpRequest.java:93)
- at org.springframework.http.client.InterceptingClientHttpRequest.executeInternal(InterceptingClientHttpRequest.java:77)
- at org.springframework.http.client.AbstractBufferingClientHttpRequest.executeInternal(AbstractBufferingClientHttpRequest.java:48)
- at org.springframework.http.client.AbstractClientHttpRequest.execute(AbstractClientHttpRequest.java:53)
- at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:739)
- ... 46 common frames omitted
- Caused by: java.net.ConnectException: Connection refused: connect
- at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method)
- at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:85)
- at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)
- at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
- at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
- at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:172)
- at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
- at java.net.Socket.connect(Socket.java:589)
- at org.apache.http.conn.socket.PlainConnectionSocketFactory.connectSocket(PlainConnectionSocketFactory.java:75)
- at org.apache.http.impl.conn.DefaultHttpClientConnectionOperator.connect(DefaultHttpClientConnectionOperator.java:142)
- ... 65 common frames omitted
- 2026-05-09 11:54:17.034 [XNIO-1 task-35] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/yysspjxx/getPageList/getPageList】请求开始==================
- 2026-05-09 11:54:17.313 [XNIO-1 task-35] DEBUG c.t.f.s.m.Y.getPageList_mpCount - ==> Preparing: SELECT COUNT(*) AS total FROM yy_sspjxx a LEFT JOIN bm_fffs b ON a.fffs = b.code LEFT JOIN bm_sflx c ON a.sflx = c.code LEFT JOIN (SELECT sj.code, sj.name AS sjmc, yslx.name, yslx.code AS ysxzbm FROM bm_sj sj LEFT JOIN bm_yslx yslx ON sj.yslx = yslx.code) d ON a.sjbm = d.code INNER JOIN yh_khjbxx kh ON a.yhbh = kh.yhbh WHERE 1 = 1 AND a.ssgs = ? AND a.sfrybm = ? AND a.sfrq > ? + 0 AND a.sfrq <= ? + 0 AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?)
- 2026-05-09 11:54:17.350 [XNIO-1 task-35] DEBUG c.t.f.s.m.Y.getPageList_mpCount - ==> Parameters: 1(String), 10753(String), 2026-05-09 00:00:00.0(Timestamp), 2026-05-09 23:59:59.0(Timestamp), 10753(String)
- 2026-05-09 11:54:17.431 [XNIO-1 task-35] DEBUG c.t.f.s.m.Y.getPageList_mpCount - <== Total: 1
- 2026-05-09 11:54:17.475 [XNIO-1 task-35] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - ==> Preparing: SELECT CODE,name,sj,yslx,ssgs,czry,czsj,czxl,nxl,jtbz,jt1_zs,jt1_sj,jt2_zs,jt2_sj,jt3_zs,jt3_sj,jt4_zs,jt4_sj,wsfdj,ljfdj,szyfdj,jtrksl,jtrkjs,bz,isdisabled,xgrq,jtjslx,jtsffs,taxrate FROM BM_SJ ORDER BY czsj ASC
- 2026-05-09 11:54:17.475 [XNIO-1 task-35] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - ==> Parameters:
- 2026-05-09 11:54:17.667 [XNIO-1 task-35] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - <== Total: 21
- 2026-05-09 11:54:17.677 [XNIO-1 task-35] DEBUG c.t.f.s.m.Y.getPageCount - ==> Preparing: select sum(case when nvl(yssf,0)!=0 then yssl else 0 end) zyssl, sum(nvl(yssf,0)) zyssf, sum(nvl(yswsf,0)) zyswsf, sum(nvl(ysljf,0)) zysljf, sum(nvl(ysszyf,0)) zysszyf, sum(nvl(ysecjyf, 0) ) zysecjyf, sum(nvl(ysfjf, 0) ) zysfjf, sum(nvl(ysqt, 0) ) zysqtf, sum(nvl(ysje,0)) zysje, sum(nvl(znj,0)) zznj, sum(nvl(sszje,0)) zsszje, sum(nvl(bcyc,0)) zbcyc, sum(nvl(bckj,0)) zbckj from yy_sspjxx a LEFT JOIN bm_fffs b on a.fffs = b.code LEFT JOIN bm_sflx c on a.sflx = c.code LEFT JOIN (SELECT sj.code, sj.name as sjmc, yslx.name, yslx.code as ysxzbm FROM bm_sj sj LEFT JOIN bm_yslx yslx on sj.yslx = yslx.code ) d on a.sjbm = d.code INNER JOIN yh_khjbxx kh on a.yhbh = kh.yhbh where 1=1 AND a.ssgs = ? AND a.sfrybm = ? and a.sfrq >?+0 and a.sfrq <= ?+0 AND a.sscbb in (select cbbbm from yh_sjqx where user_id=?)
- 2026-05-09 11:54:17.677 [XNIO-1 task-35] DEBUG c.t.f.s.m.Y.getPageCount - ==> Parameters: 1(String), 10753(String), 2026-05-09 00:00:00.0(Timestamp), 2026-05-09 23:59:59.0(Timestamp), 10753(String)
- 2026-05-09 11:54:17.757 [XNIO-1 task-35] DEBUG c.t.f.s.m.Y.getPageCount - <== Total: 1
- 2026-05-09 11:54:17.760 [XNIO-1 task-35] INFO c.t.feesapi.common.LogRecordAspect - =================【getPageList】请求结束==================
- 2026-05-09 11:54:33.365 [XNIO-1 task-36] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/yysspjxx/getPageList/getPageList】请求开始==================
- 2026-05-09 11:54:33.369 [XNIO-1 task-36] DEBUG c.t.f.s.m.Y.getPageList_mpCount - ==> Preparing: SELECT COUNT(*) AS total FROM yy_sspjxx a LEFT JOIN bm_fffs b ON a.fffs = b.code LEFT JOIN bm_sflx c ON a.sflx = c.code LEFT JOIN (SELECT sj.code, sj.name AS sjmc, yslx.name, yslx.code AS ysxzbm FROM bm_sj sj LEFT JOIN bm_yslx yslx ON sj.yslx = yslx.code) d ON a.sjbm = d.code INNER JOIN yh_khjbxx kh ON a.yhbh = kh.yhbh WHERE 1 = 1 AND a.ssgs = ? AND a.sfrq > ? + 0 AND a.sfrq <= ? + 0 AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?)
- 2026-05-09 11:54:33.369 [XNIO-1 task-36] DEBUG c.t.f.s.m.Y.getPageList_mpCount - ==> Parameters: 1(String), 2026-05-09 00:00:00.0(Timestamp), 2026-05-09 23:59:59.0(Timestamp), 10753(String)
- 2026-05-09 11:54:33.425 [XNIO-1 task-36] DEBUG c.t.f.s.m.Y.getPageList_mpCount - <== Total: 1
- 2026-05-09 11:54:33.455 [XNIO-1 task-36] DEBUG c.t.f.s.m.YySspjxxMapper.getPageList - ==> Preparing: SELECT * FROM ( SELECT TMP.*, ROWNUM ROW_ID FROM ( SELECT a.*, b.name fffsmc, c.name sflxmc, d.ysxzbm ysxz, d.name ysxzmc, d.sjmc, kh.yhdz FROM yy_sspjxx a LEFT JOIN bm_fffs b ON a.fffs = b.code LEFT JOIN bm_sflx c ON a.sflx = c.code LEFT JOIN (SELECT sj.code, sj.name AS sjmc, yslx.name, yslx.code AS ysxzbm FROM bm_sj sj LEFT JOIN bm_yslx yslx ON sj.yslx = yslx.code) d ON a.sjbm = d.code INNER JOIN yh_khjbxx kh ON a.yhbh = kh.yhbh WHERE 1 = 1 AND a.ssgs = ? AND a.sfrq > ? + 0 AND a.sfrq <= ? + 0 AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?) ORDER BY sfrq ASC, cwrq ASC, a.yhbh ASC ) TMP WHERE ROWNUM <=?) WHERE ROW_ID > ?
- 2026-05-09 11:54:33.458 [XNIO-1 task-36] DEBUG c.t.f.s.m.YySspjxxMapper.getPageList - ==> Parameters: 1(String), 2026-05-09 00:00:00.0(Timestamp), 2026-05-09 23:59:59.0(Timestamp), 10753(String), 20(Long), 0(Long)
- 2026-05-09 11:54:33.809 [XNIO-1 task-36] DEBUG c.t.f.s.m.YySspjxxMapper.getPageList - <== Total: 20
- 2026-05-09 11:54:33.810 [XNIO-1 task-36] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - ==> Preparing: SELECT CODE,name,sj,yslx,ssgs,czry,czsj,czxl,nxl,jtbz,jt1_zs,jt1_sj,jt2_zs,jt2_sj,jt3_zs,jt3_sj,jt4_zs,jt4_sj,wsfdj,ljfdj,szyfdj,jtrksl,jtrkjs,bz,isdisabled,xgrq,jtjslx,jtsffs,taxrate FROM BM_SJ ORDER BY czsj ASC
- 2026-05-09 11:54:33.810 [XNIO-1 task-36] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - ==> Parameters:
- 2026-05-09 11:54:33.984 [XNIO-1 task-36] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - <== Total: 21
- 2026-05-09 11:54:33.985 [XNIO-1 task-36] DEBUG c.t.f.s.m.Y.getPageCount - ==> Preparing: select sum(case when nvl(yssf,0)!=0 then yssl else 0 end) zyssl, sum(nvl(yssf,0)) zyssf, sum(nvl(yswsf,0)) zyswsf, sum(nvl(ysljf,0)) zysljf, sum(nvl(ysszyf,0)) zysszyf, sum(nvl(ysecjyf, 0) ) zysecjyf, sum(nvl(ysfjf, 0) ) zysfjf, sum(nvl(ysqt, 0) ) zysqtf, sum(nvl(ysje,0)) zysje, sum(nvl(znj,0)) zznj, sum(nvl(sszje,0)) zsszje, sum(nvl(bcyc,0)) zbcyc, sum(nvl(bckj,0)) zbckj from yy_sspjxx a LEFT JOIN bm_fffs b on a.fffs = b.code LEFT JOIN bm_sflx c on a.sflx = c.code LEFT JOIN (SELECT sj.code, sj.name as sjmc, yslx.name, yslx.code as ysxzbm FROM bm_sj sj LEFT JOIN bm_yslx yslx on sj.yslx = yslx.code ) d on a.sjbm = d.code INNER JOIN yh_khjbxx kh on a.yhbh = kh.yhbh where 1=1 AND a.ssgs = ? and a.sfrq >?+0 and a.sfrq <= ?+0 AND a.sscbb in (select cbbbm from yh_sjqx where user_id=?)
- 2026-05-09 11:54:33.986 [XNIO-1 task-36] DEBUG c.t.f.s.m.Y.getPageCount - ==> Parameters: 1(String), 2026-05-09 00:00:00.0(Timestamp), 2026-05-09 23:59:59.0(Timestamp), 10753(String)
- 2026-05-09 11:54:34.051 [XNIO-1 task-36] DEBUG c.t.f.s.m.Y.getPageCount - <== Total: 1
- 2026-05-09 11:54:34.058 [XNIO-1 task-36] INFO c.t.feesapi.common.LogRecordAspect - =================【getPageList】请求结束==================
- 2026-05-09 11:55:20.136 [XNIO-1 task-37] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/yysspjxx/getPageList/getPageList】请求开始==================
- 2026-05-09 11:55:20.153 [XNIO-1 task-37] DEBUG c.t.f.s.m.Y.getPageListByKhbm_mpCount - ==> Preparing: SELECT COUNT(*) FROM (SELECT khbm, max(yhxm) yhxm, max(yhdz) yhdz, sum(CASE WHEN fylx IN ('1', '2') THEN yssl ELSE 0 END) yssl, sum(ysje) ysje, sum(sszje) sszje, sum(yssf) yssf, sum(yswsf) yswsf, sum(ysszyf) ysszyf, sum(ysecjyf) ysecjyf, sum(ysqt) ysqt, sum(ysfjf) ysfjf FROM (SELECT a.*, b.name fffsmc, c.name sflxmc, d.ysxzbm ysxz, d.name ysxzmc, d.sjmc, kh.yhdz FROM yy_sspjxx a LEFT JOIN bm_fffs b ON a.fffs = b.code LEFT JOIN bm_sflx c ON a.sflx = c.code LEFT JOIN (SELECT sj.code, sj.name AS sjmc, yslx.name, yslx.code AS ysxzbm FROM bm_sj sj LEFT JOIN bm_yslx yslx ON sj.yslx = yslx.code) d ON a.sjbm = d.code INNER JOIN yh_khjbxx kh ON a.yhbh = kh.yhbh WHERE 1 = 1 AND a.ssgs = ? AND a.sfrq > ? + 0 AND a.sfrq <= ? + 0 AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?)) GROUP BY khbm ORDER BY khbm ASC) TOTAL
- 2026-05-09 11:55:20.153 [XNIO-1 task-37] DEBUG c.t.f.s.m.Y.getPageListByKhbm_mpCount - ==> Parameters: 1(String), 2026-05-09 00:00:00.0(Timestamp), 2026-05-09 23:59:59.0(Timestamp), 10753(String)
- 2026-05-09 11:55:20.229 [XNIO-1 task-37] DEBUG c.t.f.s.m.Y.getPageListByKhbm_mpCount - <== Total: 1
- 2026-05-09 11:55:20.229 [XNIO-1 task-37] DEBUG c.t.f.s.m.Y.getPageListByKhbm - ==> Preparing: SELECT * FROM ( SELECT TMP.*, ROWNUM ROW_ID FROM ( select khbm,max(yhxm) yhxm,max(yhdz) yhdz,sum(case when fylx in ('1','2') then yssl else 0 end ) yssl,sum(ysje) ysje,sum(sszje) sszje,sum(yssf) yssf,sum(yswsf) yswsf,sum(ysszyf) ysszyf,sum(ysecjyf) ysecjyf,sum(ysqt) ysqt,sum(ysfjf) ysfjf from ( SELECT a.*, b.name fffsmc, c.name sflxmc,d.ysxzbm ysxz, d.name ysxzmc,d.sjmc,kh.yhdz FROM yy_sspjxx a LEFT JOIN bm_fffs b on a.fffs = b.code LEFT JOIN bm_sflx c on a.sflx = c.code LEFT JOIN (SELECT sj.code, sj.name as sjmc, yslx.name, yslx.code as ysxzbm FROM bm_sj sj LEFT JOIN bm_yslx yslx on sj.yslx = yslx.code ) d on a.sjbm = d.code INNER JOIN yh_khjbxx kh on a.yhbh = kh.yhbh where 1=1 AND a.ssgs = ? and a.sfrq >?+0 and a.sfrq <= ?+0 AND a.sscbb in (select cbbbm from yh_sjqx where user_id=?) ) group by khbm order by khbm asc ) TMP WHERE ROWNUM <=?) WHERE ROW_ID > ?
- 2026-05-09 11:55:20.230 [XNIO-1 task-37] DEBUG c.t.f.s.m.Y.getPageListByKhbm - ==> Parameters: 1(String), 2026-05-09 00:00:00.0(Timestamp), 2026-05-09 23:59:59.0(Timestamp), 10753(String), 20(Long), 0(Long)
- 2026-05-09 11:55:20.303 [XNIO-1 task-37] DEBUG c.t.f.s.m.Y.getPageListByKhbm - <== Total: 1
- 2026-05-09 11:55:20.304 [XNIO-1 task-37] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - ==> Preparing: SELECT CODE,name,sj,yslx,ssgs,czry,czsj,czxl,nxl,jtbz,jt1_zs,jt1_sj,jt2_zs,jt2_sj,jt3_zs,jt3_sj,jt4_zs,jt4_sj,wsfdj,ljfdj,szyfdj,jtrksl,jtrkjs,bz,isdisabled,xgrq,jtjslx,jtsffs,taxrate FROM BM_SJ ORDER BY czsj ASC
- 2026-05-09 11:55:20.305 [XNIO-1 task-37] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - ==> Parameters:
- 2026-05-09 11:55:20.480 [XNIO-1 task-37] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - <== Total: 21
- 2026-05-09 11:55:20.481 [XNIO-1 task-37] DEBUG c.t.f.s.m.Y.getPageCount - ==> Preparing: select sum(case when nvl(yssf,0)!=0 then yssl else 0 end) zyssl, sum(nvl(yssf,0)) zyssf, sum(nvl(yswsf,0)) zyswsf, sum(nvl(ysljf,0)) zysljf, sum(nvl(ysszyf,0)) zysszyf, sum(nvl(ysecjyf, 0) ) zysecjyf, sum(nvl(ysfjf, 0) ) zysfjf, sum(nvl(ysqt, 0) ) zysqtf, sum(nvl(ysje,0)) zysje, sum(nvl(znj,0)) zznj, sum(nvl(sszje,0)) zsszje, sum(nvl(bcyc,0)) zbcyc, sum(nvl(bckj,0)) zbckj from yy_sspjxx a LEFT JOIN bm_fffs b on a.fffs = b.code LEFT JOIN bm_sflx c on a.sflx = c.code LEFT JOIN (SELECT sj.code, sj.name as sjmc, yslx.name, yslx.code as ysxzbm FROM bm_sj sj LEFT JOIN bm_yslx yslx on sj.yslx = yslx.code ) d on a.sjbm = d.code INNER JOIN yh_khjbxx kh on a.yhbh = kh.yhbh where 1=1 AND a.ssgs = ? and a.sfrq >?+0 and a.sfrq <= ?+0 AND a.sscbb in (select cbbbm from yh_sjqx where user_id=?)
- 2026-05-09 11:55:20.482 [XNIO-1 task-37] DEBUG c.t.f.s.m.Y.getPageCount - ==> Parameters: 1(String), 2026-05-09 00:00:00.0(Timestamp), 2026-05-09 23:59:59.0(Timestamp), 10753(String)
- 2026-05-09 11:55:20.533 [XNIO-1 task-37] DEBUG c.t.f.s.m.Y.getPageCount - <== Total: 1
- 2026-05-09 11:55:20.534 [XNIO-1 task-37] INFO c.t.feesapi.common.LogRecordAspect - =================【getPageList】请求结束==================
- 2026-05-09 12:35:22.141 [SpringContextShutdownHook] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'taskScheduler'
- 2026-05-09 12:35:22.171 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registering from Nacos Server now...
- 2026-05-09 12:35:22.180 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registration finished.
- 2026-05-09 12:35:22.184 [SpringContextShutdownHook] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'taskScheduler'
- 2026-05-09 12:35:40.216 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.0.20.Final
- 2026-05-09 12:35:40.689 [background-preinit] WARN o.s.h.c.j.Jackson2ObjectMapperBuilder - For Jackson Kotlin classes support please add "com.fasterxml.jackson.module:jackson-module-kotlin" to the classpath
- 2026-05-09 12:35:42.168 [main] WARN c.a.c.n.c.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[collect-fees-api] & group[DEFAULT_GROUP]
- 2026-05-09 12:35:42.177 [main] WARN c.a.c.n.c.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[collect-fees-api-bd.yaml] & group[DEFAULT_GROUP]
- 2026-05-09 12:35:42.178 [main] INFO o.s.c.b.c.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-collect-fees-api-bd.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-collect-fees-api.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-collect-fees-api,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-yx_config_ftp.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-public_config_redis.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-public_config_oracle.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-public_config_public.yaml,DEFAULT_GROUP'}]
- 2026-05-09 12:35:42.183 [main] INFO com.tofly.feesapi.FeesApiApplication - The following profiles are active: bd
- 2026-05-09 12:35:43.986 [main] WARN o.s.boot.actuate.endpoint.EndpointId - Endpoint ID 'nacos-config' contains invalid characters, please migrate to a valid format.
- 2026-05-09 12:35:43.989 [main] WARN o.s.boot.actuate.endpoint.EndpointId - Endpoint ID 'nacos-discovery' contains invalid characters, please migrate to a valid format.
- 2026-05-09 12:35:44.220 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode!
- 2026-05-09 12:35:44.222 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
- 2026-05-09 12:35:44.482 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 199ms. Found 0 Redis repository interfaces.
- 2026-05-09 12:35:44.565 [main] WARN o.s.boot.actuate.endpoint.EndpointId - Endpoint ID 'service-registry' contains invalid characters, please migrate to a valid format.
- 2026-05-09 12:35:44.667 [main] DEBUG org.apache.ibatis.logging.LogFactory - Logging initialized using 'class org.apache.ibatis.logging.slf4j.Slf4jImpl' adapter.
- 2026-05-09 12:35:44.849 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhBjflFbMapper' and 'com.tofly.feesapi.bjgl.mapper.YhBjflFbMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.849 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhBjflZbMapper' and 'com.tofly.feesapi.bjgl.mapper.YhBjflZbMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.849 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhCbkxxLogMapper' and 'com.tofly.feesapi.bjgl.mapper.YhCbkxxLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.849 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhCbkxxMapper' and 'com.tofly.feesapi.bjgl.mapper.YhCbkxxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.849 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhbglMapper' and 'com.tofly.feesapi.bjgl.mapper.YhbglMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.849 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'ykHbLogMapper' and 'com.tofly.feesapi.bjgl.mapper.YkHbLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.849 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'ykYhbgHbMapper' and 'com.tofly.feesapi.bjgl.mapper.YkYhbgHbMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.849 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmCbbMapper' and 'com.tofly.feesapi.bmgl.mapper.BmCbbMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.849 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmCbfsMapper' and 'com.tofly.feesapi.bmgl.mapper.BmCbfsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.849 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmCblxMapper' and 'com.tofly.feesapi.bmgl.mapper.BmCblxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.849 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmCbplMapper' and 'com.tofly.feesapi.bmgl.mapper.BmCbplMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.849 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmCbpqMapper' and 'com.tofly.feesapi.bmgl.mapper.BmCbpqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.849 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmDbhysyhMapper' and 'com.tofly.feesapi.bmgl.mapper.BmDbhysyhMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.849 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmFffsMapper' and 'com.tofly.feesapi.bmgl.mapper.BmFffsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.849 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmFylxMapper' and 'com.tofly.feesapi.bmgl.mapper.BmFylxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.849 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmGsMapper' and 'com.tofly.feesapi.bmgl.mapper.BmGsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.849 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSblbMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSblbMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.849 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSbsccjMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSbsccjMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.849 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSbxhMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSbxhMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.850 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSearchMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSearchMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.850 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSflxMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSflxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.850 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSfqdMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSfqdMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.850 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSjMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSjMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.850 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSjlsMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSjlsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.850 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmYmjzConfigLsMapper' and 'com.tofly.feesapi.bmgl.mapper.BmYmjzConfigLsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.850 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmYmjzConfigMapper' and 'com.tofly.feesapi.bmgl.mapper.BmYmjzConfigMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.850 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmYslxMapper' and 'com.tofly.feesapi.bmgl.mapper.BmYslxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.850 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'cbbConfigMapper' and 'com.tofly.feesapi.bmgl.mapper.CbbConfigMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.850 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysChildCodeMapper' and 'com.tofly.feesapi.bmgl.mapper.SysChildCodeMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.850 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysParentCodeMapper' and 'com.tofly.feesapi.bmgl.mapper.SysParentCodeMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.850 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyCblrLsMapper' and 'com.tofly.feesapi.cbgl.mapper.YyCblrLsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.850 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyCblrMapper' and 'com.tofly.feesapi.cbgl.mapper.YyCblrMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.850 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbCbDayMapper' and 'com.tofly.feesapi.cbgl.mapper.ZnbCbDayMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.850 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbCbLogMapper' and 'com.tofly.feesapi.cbgl.mapper.ZnbCbLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.850 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbZlLogMapper' and 'com.tofly.feesapi.cbgl.mapper.ZnbZlLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.850 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'commonMapper' and 'com.tofly.feesapi.common.mapper.CommonMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.850 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiFpkjMxMapper' and 'com.tofly.feesapi.dzfp.mapper.EiFpkjMxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.850 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiFpkjRequestMapper' and 'com.tofly.feesapi.dzfp.mapper.EiFpkjRequestMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.850 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiKprpzMapper' and 'com.tofly.feesapi.dzfp.mapper.EiKprpzMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.851 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiSalerConfigMapper' and 'com.tofly.feesapi.dzfp.mapper.EiSalerConfigMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.851 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiSpbmMapper' and 'com.tofly.feesapi.dzfp.mapper.EiSpbmMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.851 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiYkfpLogMapper' and 'com.tofly.feesapi.dzfp.mapper.EiYkfpLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.851 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'htFilesMapper' and 'com.tofly.feesapi.dzht.mapper.HtFilesMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.851 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'htTemplateMapper' and 'com.tofly.feesapi.dzht.mapper.HtTemplateMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.851 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'fileMapper' and 'com.tofly.feesapi.file.mapper.FileMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.851 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'flowMapper' and 'com.tofly.feesapi.flowdb.mapper.FlowMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.851 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyBgLogMapper' and 'com.tofly.feesapi.mxcx.mapper.YyBgLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.851 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bankDsdzhzMapper' and 'com.tofly.feesapi.sfds.mapper.BankDsdzhzMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.851 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bankDsdzxxMapper' and 'com.tofly.feesapi.sfds.mapper.BankDsdzxxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.851 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'plsfkhxxMapper' and 'com.tofly.feesapi.sfgl.mapper.PlsfkhxxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.851 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyPjbhMapper' and 'com.tofly.feesapi.sfgl.mapper.YyPjbhMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.851 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyQfmxCzlsMapper' and 'com.tofly.feesapi.sfgl.mapper.YyQfmxCzlsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.851 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyQfmxDzmxMapper' and 'com.tofly.feesapi.sfgl.mapper.YyQfmxDzmxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.851 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyQfmxGdMapper' and 'com.tofly.feesapi.sfgl.mapper.YyQfmxGdMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.851 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyQfmxMapper' and 'com.tofly.feesapi.sfgl.mapper.YyQfmxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yySspjxxMapper' and 'com.tofly.feesapi.sfgl.mapper.YySspjxxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yySspjxxReportMapper' and 'com.tofly.feesapi.sfgl.mapper.YySspjxxReportMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyWyjjmrqMapper' and 'com.tofly.feesapi.sfgl.mapper.YyWyjjmrqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyWyjtzMapper' and 'com.tofly.feesapi.sfgl.mapper.YyWyjtzMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbCsjsLogMapper' and 'com.tofly.feesapi.sfgl.mapper.ZnbCsjsLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'smsMessageMapper' and 'com.tofly.feesapi.sms.mapper.SmsMessageMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'smsTxlxMapper' and 'com.tofly.feesapi.sms.mapper.SmsTxlxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'companyMapper' and 'com.tofly.feesapi.udb.mapper.CompanyMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.tofly.feesapi.udb.mapper.UserMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userRoleMapper' and 'com.tofly.feesapi.udb.mapper.UserRoleMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxDtbmMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxDtbmMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxFwtzMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxFwtzMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxMessageMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxMessageMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxTokenMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxTokenMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxTstzMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxTstzMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxUserLsMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxUserLsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxUserMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxUserMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxYwxzMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxYwxzMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxYwxzbmMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxYwxzbmMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxBtsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxBtsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxBzsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxBzsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxDbsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxDbsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxGhsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxGhsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxGsdtMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxGsdtMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxHfsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxHfsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxLwsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxLwsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxLxdhsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxLxdhsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxRkssqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxRkssqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxWdMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxWdMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxWdbmMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxWdbmMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxWzjbsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxWzjbsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxXbsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxXbsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxXhsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxXhsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'paySelectMapper' and 'com.tofly.feesapi.wxgl.wechatpay.mapper.PaySelectMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysGdcsbMapper' and 'com.tofly.feesapi.xtgl.mapper.SysGdcsbMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'syscommlogMapper' and 'com.tofly.feesapi.xtgl.mapper.SyscommlogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhBtLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhBtLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhFfgxMapper' and 'com.tofly.feesapi.yhgl.mapper.YhFfgxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhGhLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhGhLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhGroupAccountsMapper' and 'com.tofly.feesapi.yhgl.mapper.YhGroupAccountsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhGroupMapper' and 'com.tofly.feesapi.yhgl.mapper.YhGroupMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhHfysLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhHfysLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhKhjbxxDbhlsMapper' and 'com.tofly.feesapi.yhgl.mapper.YhKhjbxxDbhlsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhKhjbxxLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhKhjbxxLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhKhjbxxMapper' and 'com.tofly.feesapi.yhgl.mapper.YhKhjbxxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhXzbgLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhXzbgLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhhLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhhLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhsjqxMapper' and 'com.tofly.feesapi.yhgl.mapper.YhsjqxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyZjzhMapper' and 'com.tofly.feesapi.yhgl.mapper.YyZjzhMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbDaLogMapper' and 'com.tofly.feesapi.znbgl.mapper.ZnbDaLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.852 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbYhdaMapper' and 'com.tofly.feesapi.znbgl.mapper.ZnbYhdaMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:35:44.853 [main] WARN o.m.s.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.tofly.feesapi.**.mapper]' package. Please check your configuration.
- 2026-05-09 12:35:44.951 [main] INFO o.s.cloud.context.scope.GenericScope - BeanFactory id=6ba9fcc8-98cb-35e6-8547-52fc325bd065
- 2026-05-09 12:35:45.003 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.tofly.feesapi.common.feign.UserClient' of type [org.springframework.cloud.openfeign.FeignClientFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-05-09 12:35:45.272 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.datasource.dynamic-com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-05-09 12:35:45.282 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$e7ee8ff4] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-05-09 12:35:45.299 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'dsProcessor' of type [com.baomidou.dynamic.datasource.processor.DsHeaderProcessor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-05-09 12:35:45.331 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@6744707b' of type [org.springframework.security.oauth2.provider.expression.OAuth2MethodSecurityExpressionHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-05-09 12:35:45.341 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'methodSecurityMetadataSource' of type [org.springframework.security.access.method.DelegatingMethodSecurityMetadataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-05-09 12:35:45.653 [main] WARN io.undertow.websockets.jsr - UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
- 2026-05-09 12:35:45.685 [main] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
- 2026-05-09 12:35:45.685 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3485 ms
- 2026-05-09 12:35:53.382 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1,master} inited
- 2026-05-09 12:35:54.785 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-2,udb} inited
- 2026-05-09 12:35:56.340 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-3,flowDB} inited
- 2026-05-09 12:35:56.341 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [udb] success
- 2026-05-09 12:35:56.341 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [flowDB] success
- 2026-05-09 12:35:56.341 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
- 2026-05-09 12:35:56.341 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [3] datasource,primary datasource named [master]
- 2026-05-09 12:35:58.397 [main] WARN c.b.m.core.injector.AbstractMethod - [com.tofly.feesapi.bmgl.mapper.SysParentCodeMapper.selectCount] Has been loaded by XML or SqlProvider or Mybatis's Annotation, so ignoring this injection for [class com.baomidou.mybatisplus.core.injector.methods.SelectCount]
- 2026-05-09 12:35:58.889 [main] WARN c.b.m.core.injector.AbstractMethod - [com.tofly.feesapi.flowdb.mapper.FlowMapper.updateById] Has been loaded by XML or SqlProvider or Mybatis's Annotation, so ignoring this injection for [class com.baomidou.mybatisplus.core.injector.methods.UpdateById]
- 2026-05-09 12:36:00.498 [main] WARN c.b.m.core.metadata.TableInfoHelper - Can not find table primary key in Class: "com.tofly.feesapi.wxgl.wechatpay.entity.PaySelect".
- 2026-05-09 12:36:00.498 [main] WARN c.b.m.c.injector.DefaultSqlInjector - class com.tofly.feesapi.wxgl.wechatpay.entity.PaySelect ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method.
- 2026-05-09 12:36:00.533 [main] WARN c.b.m.core.metadata.TableInfoHelper - Can not find table primary key in Class: "com.tofly.feesapi.xtgl.entity.SysGdcsb".
- 2026-05-09 12:36:00.533 [main] WARN c.b.m.c.injector.DefaultSqlInjector - class com.tofly.feesapi.xtgl.entity.SysGdcsb ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method.
- 2026-05-09 12:36:06.419 [main] INFO org.redisson.Version - Redisson 3.23.2
- 2026-05-09 12:36:07.410 [redisson-netty-2-5] INFO o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 127.0.0.1/127.0.0.1:6379
- 2026-05-09 12:36:07.459 [redisson-netty-2-19] INFO o.r.c.pool.MasterConnectionPool - 24 connections initialized for 127.0.0.1/127.0.0.1:6379
- 2026-05-09 12:36:15.118 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
- 2026-05-09 12:36:15.296 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 19 endpoint(s) beneath base path '/actuator'
- 2026-05-09 12:36:15.407 [main] INFO s.d.s.w.WebMvcPropertySourcedRequestMappingHandlerMapping - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
- 2026-05-09 12:36:15.617 [main] INFO c.n.c.sources.URLConfigurationSource - URLs to be used as dynamic configuration source: [file:/D:/work/tf/%e5%b1%b1%e4%b8%9c%e8%8e%b1%e9%98%b3%e6%b0%b4%e5%8f%b8/%e8%8e%b1%e9%98%b3%e6%99%ba%e6%85%a7%e6%b0%b4%e5%8a%a1JAVA%e8%90%a5%e9%94%80/20260403/lywebmis/collect_fees_ly_api/fees-ly-api/target/classes/config.properties]
- 2026-05-09 12:36:15.628 [main] INFO c.n.c.sources.URLConfigurationSource - URLs to be used as dynamic configuration source: [file:/D:/work/tf/%e5%b1%b1%e4%b8%9c%e8%8e%b1%e9%98%b3%e6%b0%b4%e5%8f%b8/%e8%8e%b1%e9%98%b3%e6%99%ba%e6%85%a7%e6%b0%b4%e5%8a%a1JAVA%e8%90%a5%e9%94%80/20260403/lywebmis/collect_fees_ly_api/fees-ly-api/target/classes/config.properties]
- 2026-05-09 12:36:15.959 [main] INFO o.s.s.c.ThreadPoolTaskScheduler - Initializing ExecutorService 'taskScheduler'
- 2026-05-09 12:36:16.245 [main] INFO o.s.b.a.s.s.UserDetailsServiceAutoConfiguration -
- Using generated security password: 65220b30-6804-423d-8300-74ac0e1a9618
- 2026-05-09 12:36:16.384 [main] INFO o.s.s.web.DefaultSecurityFilterChain - Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@67dc7d0, org.springframework.security.web.context.SecurityContextPersistenceFilter@1a48e48e, org.springframework.security.web.header.HeaderWriterFilter@564b86b, org.springframework.security.web.authentication.logout.LogoutFilter@7ff48cdc, org.springframework.security.oauth2.provider.authentication.OAuth2AuthenticationProcessingFilter@4e216b7e, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@10847aeb, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@5bb1c104, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@46b2e0e4, org.springframework.security.web.session.SessionManagementFilter@23faae85, org.springframework.security.web.access.ExceptionTranslationFilter@22a7ff5d, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@2e67df05]
- 2026-05-09 12:36:17.858 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
- 2026-05-09 12:36:17.980 [main] WARN o.s.c.s.o.SpringCloudSecurityAutoConfiguration - All Spring Cloud Security modules and starters are deprecated. They will be moved to individual projects in the next major release.
- 2026-05-09 12:36:18.118 [main] INFO s.d.s.w.p.DocumentationPluginsBootstrapper - Documentation plugins bootstrapped
- 2026-05-09 12:36:18.121 [main] INFO s.d.s.w.p.DocumentationPluginsBootstrapper - Found 1 custom documentation plugin(s)
- 2026-05-09 12:36:18.263 [main] INFO s.d.s.w.s.ApiListingReferenceScanner - Scanning for api listing references
- 2026-05-09 12:36:18.636 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_1
- 2026-05-09 12:36:18.640 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_1
- 2026-05-09 12:36:18.641 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_1
- 2026-05-09 12:36:18.642 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_1
- 2026-05-09 12:36:18.646 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_1
- 2026-05-09 12:36:18.647 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_1
- 2026-05-09 12:36:18.667 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: addCustomerUsingPOST_1
- 2026-05-09 12:36:18.668 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: deleteCustomerUsingPOST_1
- 2026-05-09 12:36:18.668 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getBindCustomerUsingGET_1
- 2026-05-09 12:36:18.669 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: selectCustomerUsingGET_1
- 2026-05-09 12:36:18.671 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getBindCustomerAndQfUsingGET_1
- 2026-05-09 12:36:18.672 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerBasicInFoUsingGET_1
- 2026-05-09 12:36:18.672 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerChargeInFoUsingGET_1
- 2026-05-09 12:36:18.673 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerInFoUsingGET_1
- 2026-05-09 12:36:18.674 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerQfInFoUsingGET_1
- 2026-05-09 12:36:18.675 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerReadMeterInFoUsingGET_1
- 2026-05-09 12:36:18.685 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_2
- 2026-05-09 12:36:18.709 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_2
- 2026-05-09 12:36:18.711 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_2
- 2026-05-09 12:36:18.712 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_2
- 2026-05-09 12:36:18.716 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_2
- 2026-05-09 12:36:18.717 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_2
- 2026-05-09 12:36:18.733 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_3
- 2026-05-09 12:36:18.735 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_3
- 2026-05-09 12:36:18.735 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_3
- 2026-05-09 12:36:18.738 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_3
- 2026-05-09 12:36:18.738 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_3
- 2026-05-09 12:36:18.745 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_3
- 2026-05-09 12:36:18.752 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_4
- 2026-05-09 12:36:18.752 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_4
- 2026-05-09 12:36:18.753 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_4
- 2026-05-09 12:36:18.754 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_4
- 2026-05-09 12:36:18.756 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_4
- 2026-05-09 12:36:18.758 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_5
- 2026-05-09 12:36:18.759 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_5
- 2026-05-09 12:36:18.760 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_5
- 2026-05-09 12:36:18.762 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_5
- 2026-05-09 12:36:18.762 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_5
- 2026-05-09 12:36:18.768 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_4
- 2026-05-09 12:36:18.774 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_6
- 2026-05-09 12:36:18.781 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_5
- 2026-05-09 12:36:18.782 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_6
- 2026-05-09 12:36:18.783 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_6
- 2026-05-09 12:36:18.786 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_6
- 2026-05-09 12:36:18.787 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_6
- 2026-05-09 12:36:18.789 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_1
- 2026-05-09 12:36:18.795 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_7
- 2026-05-09 12:36:18.796 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_7
- 2026-05-09 12:36:18.796 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_7
- 2026-05-09 12:36:18.799 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_7
- 2026-05-09 12:36:18.800 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_7
- 2026-05-09 12:36:18.804 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_8
- 2026-05-09 12:36:18.804 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getFffsListUsingGET_1
- 2026-05-09 12:36:18.805 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_8
- 2026-05-09 12:36:18.806 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_9
- 2026-05-09 12:36:18.808 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_8
- 2026-05-09 12:36:18.809 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_8
- 2026-05-09 12:36:18.814 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_2
- 2026-05-09 12:36:18.818 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_9
- 2026-05-09 12:36:18.821 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_10
- 2026-05-09 12:36:18.822 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_11
- 2026-05-09 12:36:18.824 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_9
- 2026-05-09 12:36:18.825 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_9
- 2026-05-09 12:36:18.828 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_10
- 2026-05-09 12:36:18.829 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_12
- 2026-05-09 12:36:18.830 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_13
- 2026-05-09 12:36:18.833 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_10
- 2026-05-09 12:36:18.833 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_10
- 2026-05-09 12:36:18.837 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_11
- 2026-05-09 12:36:18.838 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_14
- 2026-05-09 12:36:18.839 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_15
- 2026-05-09 12:36:18.842 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_11
- 2026-05-09 12:36:18.843 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_11
- 2026-05-09 12:36:18.849 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_12
- 2026-05-09 12:36:18.850 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_16
- 2026-05-09 12:36:18.851 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_8
- 2026-05-09 12:36:18.853 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_12
- 2026-05-09 12:36:18.853 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_12
- 2026-05-09 12:36:18.859 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_13
- 2026-05-09 12:36:18.860 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_17
- 2026-05-09 12:36:18.861 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_9
- 2026-05-09 12:36:18.863 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_13
- 2026-05-09 12:36:18.864 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_13
- 2026-05-09 12:36:18.867 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_14
- 2026-05-09 12:36:18.868 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_18
- 2026-05-09 12:36:18.870 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_19
- 2026-05-09 12:36:18.874 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_14
- 2026-05-09 12:36:18.875 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_14
- 2026-05-09 12:36:18.881 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_15
- 2026-05-09 12:36:18.893 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_6
- 2026-05-09 12:36:18.915 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_15
- 2026-05-09 12:36:18.921 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_3
- 2026-05-09 12:36:18.927 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_16
- 2026-05-09 12:36:18.928 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_20
- 2026-05-09 12:36:18.930 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_10
- 2026-05-09 12:36:18.931 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_16
- 2026-05-09 12:36:18.932 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_15
- 2026-05-09 12:36:18.938 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_17
- 2026-05-09 12:36:18.945 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_7
- 2026-05-09 12:36:18.946 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_21
- 2026-05-09 12:36:18.947 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_11
- 2026-05-09 12:36:18.949 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_17
- 2026-05-09 12:36:18.950 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_16
- 2026-05-09 12:36:18.964 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_8
- 2026-05-09 12:36:18.966 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveBatchUsingPOST_1
- 2026-05-09 12:36:19.084 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_18
- 2026-05-09 12:36:19.088 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_22
- 2026-05-09 12:36:19.089 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_12
- 2026-05-09 12:36:19.091 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_18
- 2026-05-09 12:36:19.092 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_17
- 2026-05-09 12:36:19.094 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_19
- 2026-05-09 12:36:19.098 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_23
- 2026-05-09 12:36:19.099 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_13
- 2026-05-09 12:36:19.101 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_19
- 2026-05-09 12:36:19.102 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_18
- 2026-05-09 12:36:19.104 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_20
- 2026-05-09 12:36:19.106 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_24
- 2026-05-09 12:36:19.109 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_20
- 2026-05-09 12:36:19.110 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_19
- 2026-05-09 12:36:19.118 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_21
- 2026-05-09 12:36:19.120 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_25
- 2026-05-09 12:36:19.120 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_14
- 2026-05-09 12:36:19.124 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_21
- 2026-05-09 12:36:19.147 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: Xh_WordToPdfUsingPOST_1
- 2026-05-09 12:36:19.152 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_22
- 2026-05-09 12:36:19.158 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_26
- 2026-05-09 12:36:19.159 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_15
- 2026-05-09 12:36:19.164 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_22
- 2026-05-09 12:36:19.165 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_27
- 2026-05-09 12:36:19.166 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_16
- 2026-05-09 12:36:19.169 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_23
- 2026-05-09 12:36:19.171 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_20
- 2026-05-09 12:36:19.188 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_23
- 2026-05-09 12:36:19.281 [main] WARN s.d.s.w.r.p.ParameterTypeReader - @ModelAttribute annotated parameters should have already been expanded via the ExpandedParameterBuilderPlugin
- 2026-05-09 12:36:19.281 [main] WARN s.d.s.w.r.p.ParameterTypeReader - @ModelAttribute annotated parameters should have already been expanded via the ExpandedParameterBuilderPlugin
- 2026-05-09 12:36:19.289 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportYsqdUsingGET_1
- 2026-05-09 12:36:19.357 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_24
- 2026-05-09 12:36:19.359 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_28
- 2026-05-09 12:36:19.360 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_17
- 2026-05-09 12:36:19.389 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_25
- 2026-05-09 12:36:19.390 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_29
- 2026-05-09 12:36:19.392 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_18
- 2026-05-09 12:36:19.395 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_24
- 2026-05-09 12:36:19.396 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_21
- 2026-05-09 12:36:19.411 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_26
- 2026-05-09 12:36:19.418 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_30
- 2026-05-09 12:36:19.419 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_19
- 2026-05-09 12:36:19.421 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_25
- 2026-05-09 12:36:19.422 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_22
- 2026-05-09 12:36:19.424 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_27
- 2026-05-09 12:36:19.429 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_31
- 2026-05-09 12:36:19.430 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_20
- 2026-05-09 12:36:19.432 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_26
- 2026-05-09 12:36:19.433 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_23
- 2026-05-09 12:36:19.446 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_28
- 2026-05-09 12:36:19.452 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_32
- 2026-05-09 12:36:19.453 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_21
- 2026-05-09 12:36:19.457 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_27
- 2026-05-09 12:36:19.458 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_24
- 2026-05-09 12:36:19.468 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxBtsqPageUsingGET_1
- 2026-05-09 12:36:19.470 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_29
- 2026-05-09 12:36:19.475 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_33
- 2026-05-09 12:36:19.476 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_22
- 2026-05-09 12:36:19.479 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_28
- 2026-05-09 12:36:19.480 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_25
- 2026-05-09 12:36:19.484 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxBzsqPageUsingGET_1
- 2026-05-09 12:36:19.492 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_30
- 2026-05-09 12:36:19.497 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_34
- 2026-05-09 12:36:19.498 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_23
- 2026-05-09 12:36:19.502 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_29
- 2026-05-09 12:36:19.504 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_26
- 2026-05-09 12:36:19.511 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxDbsqPageUsingGET_1
- 2026-05-09 12:36:19.514 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPOST_1
- 2026-05-09 12:36:19.517 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_31
- 2026-05-09 12:36:19.521 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_35
- 2026-05-09 12:36:19.523 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_24
- 2026-05-09 12:36:19.525 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_30
- 2026-05-09 12:36:19.527 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_27
- 2026-05-09 12:36:19.528 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_32
- 2026-05-09 12:36:19.531 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_36
- 2026-05-09 12:36:19.532 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_25
- 2026-05-09 12:36:19.537 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_31
- 2026-05-09 12:36:19.538 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_28
- 2026-05-09 12:36:19.540 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_33
- 2026-05-09 12:36:19.541 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_37
- 2026-05-09 12:36:19.542 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_26
- 2026-05-09 12:36:19.547 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_32
- 2026-05-09 12:36:19.549 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_29
- 2026-05-09 12:36:19.562 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_34
- 2026-05-09 12:36:19.565 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_38
- 2026-05-09 12:36:19.566 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_39
- 2026-05-09 12:36:19.570 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_33
- 2026-05-09 12:36:19.571 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_30
- 2026-05-09 12:36:19.573 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_35
- 2026-05-09 12:36:19.580 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_40
- 2026-05-09 12:36:19.582 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_27
- 2026-05-09 12:36:19.586 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_34
- 2026-05-09 12:36:19.588 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_31
- 2026-05-09 12:36:19.595 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxHfsqPageUsingGET_1
- 2026-05-09 12:36:19.598 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_36
- 2026-05-09 12:36:19.604 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_41
- 2026-05-09 12:36:19.605 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_28
- 2026-05-09 12:36:19.608 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_35
- 2026-05-09 12:36:19.610 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_32
- 2026-05-09 12:36:19.618 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxLwsqPageUsingGET_1
- 2026-05-09 12:36:19.620 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_37
- 2026-05-09 12:36:19.627 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_42
- 2026-05-09 12:36:19.628 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_29
- 2026-05-09 12:36:19.631 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_36
- 2026-05-09 12:36:19.633 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_33
- 2026-05-09 12:36:19.639 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxLxdhsqPageUsingGET_1
- 2026-05-09 12:36:19.642 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_38
- 2026-05-09 12:36:19.647 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_43
- 2026-05-09 12:36:19.648 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_30
- 2026-05-09 12:36:19.653 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_37
- 2026-05-09 12:36:19.654 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_34
- 2026-05-09 12:36:19.665 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_39
- 2026-05-09 12:36:19.670 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_44
- 2026-05-09 12:36:19.672 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_31
- 2026-05-09 12:36:19.675 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_38
- 2026-05-09 12:36:19.677 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_35
- 2026-05-09 12:36:19.683 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxDbsqPageUsingGET_2
- 2026-05-09 12:36:19.690 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_1
- 2026-05-09 12:36:19.693 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_40
- 2026-05-09 12:36:19.695 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_45
- 2026-05-09 12:36:19.697 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_32
- 2026-05-09 12:36:19.702 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_39
- 2026-05-09 12:36:19.710 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_36
- 2026-05-09 12:36:19.712 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_41
- 2026-05-09 12:36:19.715 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_46
- 2026-05-09 12:36:19.716 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_33
- 2026-05-09 12:36:19.720 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_40
- 2026-05-09 12:36:19.722 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_37
- 2026-05-09 12:36:19.724 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_42
- 2026-05-09 12:36:19.727 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_47
- 2026-05-09 12:36:19.728 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_34
- 2026-05-09 12:36:19.732 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_41
- 2026-05-09 12:36:19.734 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_38
- 2026-05-09 12:36:19.735 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_43
- 2026-05-09 12:36:19.738 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_48
- 2026-05-09 12:36:19.740 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_49
- 2026-05-09 12:36:19.743 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_42
- 2026-05-09 12:36:19.744 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_39
- 2026-05-09 12:36:19.746 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_44
- 2026-05-09 12:36:19.749 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_50
- 2026-05-09 12:36:19.750 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_51
- 2026-05-09 12:36:19.752 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_43
- 2026-05-09 12:36:19.753 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_40
- 2026-05-09 12:36:19.756 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_45
- 2026-05-09 12:36:19.761 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_52
- 2026-05-09 12:36:19.762 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_35
- 2026-05-09 12:36:19.765 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_44
- 2026-05-09 12:36:19.767 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_41
- 2026-05-09 12:36:19.773 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxWzjbsqPageUsingGET_1
- 2026-05-09 12:36:19.776 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_46
- 2026-05-09 12:36:19.782 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_53
- 2026-05-09 12:36:19.783 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_36
- 2026-05-09 12:36:19.786 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_45
- 2026-05-09 12:36:19.788 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_42
- 2026-05-09 12:36:19.795 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxXbsqPageUsingGET_1
- 2026-05-09 12:36:19.797 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_47
- 2026-05-09 12:36:19.803 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_54
- 2026-05-09 12:36:19.804 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_37
- 2026-05-09 12:36:19.808 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_46
- 2026-05-09 12:36:19.809 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_43
- 2026-05-09 12:36:19.816 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxXhsqPageUsingGET_1
- 2026-05-09 12:36:19.817 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPOST_2
- 2026-05-09 12:36:19.819 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_48
- 2026-05-09 12:36:19.821 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_55
- 2026-05-09 12:36:19.823 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_38
- 2026-05-09 12:36:19.826 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_47
- 2026-05-09 12:36:19.827 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_44
- 2026-05-09 12:36:19.830 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_49
- 2026-05-09 12:36:19.834 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_56
- 2026-05-09 12:36:19.835 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_39
- 2026-05-09 12:36:19.837 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_48
- 2026-05-09 12:36:19.839 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_45
- 2026-05-09 12:36:19.846 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_9
- 2026-05-09 12:36:19.847 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_57
- 2026-05-09 12:36:19.849 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_40
- 2026-05-09 12:36:19.851 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_49
- 2026-05-09 12:36:19.853 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_58
- 2026-05-09 12:36:19.854 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_41
- 2026-05-09 12:36:19.856 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_50
- 2026-05-09 12:36:19.862 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_10
- 2026-05-09 12:36:19.864 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_50
- 2026-05-09 12:36:19.868 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_59
- 2026-05-09 12:36:19.869 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_42
- 2026-05-09 12:36:19.873 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_51
- 2026-05-09 12:36:19.877 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_46
- 2026-05-09 12:36:19.878 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_2
- 2026-05-09 12:36:19.896 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_52
- 2026-05-09 12:36:19.913 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_51
- 2026-05-09 12:36:19.923 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_11
- 2026-05-09 12:36:19.935 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_1
- 2026-05-09 12:36:19.946 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_52
- 2026-05-09 12:36:19.948 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_43
- 2026-05-09 12:36:19.969 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_53
- 2026-05-09 12:36:19.975 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_60
- 2026-05-09 12:36:19.976 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_44
- 2026-05-09 12:36:19.979 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_53
- 2026-05-09 12:36:19.980 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_47
- 2026-05-09 12:36:19.982 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_54
- 2026-05-09 12:36:19.986 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_61
- 2026-05-09 12:36:19.987 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_45
- 2026-05-09 12:36:19.992 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_54
- 2026-05-09 12:36:19.999 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_48
- 2026-05-09 12:36:20.000 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_3
- 2026-05-09 12:36:20.002 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_62
- 2026-05-09 12:36:20.004 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_46
- 2026-05-09 12:36:20.006 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_55
- 2026-05-09 12:36:20.012 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_12
- 2026-05-09 12:36:20.017 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_63
- 2026-05-09 12:36:20.019 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_47
- 2026-05-09 12:36:20.022 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_56
- 2026-05-09 12:36:20.028 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_13
- 2026-05-09 12:36:20.031 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_55
- 2026-05-09 12:36:20.034 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_64
- 2026-05-09 12:36:20.035 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_48
- 2026-05-09 12:36:20.040 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_57
- 2026-05-09 12:36:20.045 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_49
- 2026-05-09 12:36:20.046 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_4
- 2026-05-09 12:36:20.065 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getDaCustomerPageUsingGET_1
- 2026-05-09 12:36:20.094 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_1
- 2026-05-09 12:36:20.104 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_14
- 2026-05-09 12:36:20.127 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_56
- 2026-05-09 12:36:20.170 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: delByIdUsingDELETE_1
- 2026-05-09 12:36:20.172 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: delByIdsUsingDELETE_1
- 2026-05-09 12:36:20.173 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: disableUsingPUT_1
- 2026-05-09 12:36:20.175 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: enableUsingPUT_1
- 2026-05-09 12:36:20.176 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: importExcelUsingPOST_1
- 2026-05-09 12:36:20.179 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_2
- 2026-05-09 12:36:20.186 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_3
- 2026-05-09 12:36:20.206 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_5
- 2026-05-09 12:36:20.208 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_6
- 2026-05-09 12:36:20.210 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_7
- 2026-05-09 12:36:20.213 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_57
- 2026-05-09 12:36:20.223 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_49
- 2026-05-09 12:36:20.245 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: addUsingPOST_1
- 2026-05-09 12:36:20.251 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_58
- 2026-05-09 12:36:20.258 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_65
- 2026-05-09 12:36:20.259 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_50
- 2026-05-09 12:36:20.262 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_58
- 2026-05-09 12:36:20.266 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: save_gdUsingPOST_1
- 2026-05-09 12:36:20.274 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_50
- 2026-05-09 12:36:20.287 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_59
- 2026-05-09 12:36:20.291 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_66
- 2026-05-09 12:36:20.293 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_51
- 2026-05-09 12:36:20.296 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_59
- 2026-05-09 12:36:20.298 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_51
- 2026-05-09 12:36:20.301 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_60
- 2026-05-09 12:36:20.304 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_67
- 2026-05-09 12:36:20.305 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_52
- 2026-05-09 12:36:20.309 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_60
- 2026-05-09 12:36:20.312 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: save_gdUsingPOST_2
- 2026-05-09 12:36:20.316 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_52
- 2026-05-09 12:36:20.317 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_8
- 2026-05-09 12:36:20.327 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_9
- 2026-05-09 12:36:20.341 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_61
- 2026-05-09 12:36:20.389 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_2
- 2026-05-09 12:36:20.394 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_62
- 2026-05-09 12:36:20.398 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_15
- 2026-05-09 12:36:20.434 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_4
- 2026-05-09 12:36:20.441 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_10
- 2026-05-09 12:36:20.450 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_63
- 2026-05-09 12:36:20.459 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_68
- 2026-05-09 12:36:20.460 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_53
- 2026-05-09 12:36:20.469 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_61
- 2026-05-09 12:36:20.471 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_53
- 2026-05-09 12:36:20.526 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_54
- 2026-05-09 12:36:20.626 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_16
- 2026-05-09 12:36:20.685 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getListUsingGET_1
- 2026-05-09 12:36:20.738 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_64
- 2026-05-09 12:36:20.786 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: statUsingGET_1
- 2026-05-09 12:36:20.823 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_11
- 2026-05-09 12:36:20.830 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_65
- 2026-05-09 12:36:20.846 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_69
- 2026-05-09 12:36:20.848 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_54
- 2026-05-09 12:36:20.893 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_62
- 2026-05-09 12:36:20.896 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_55
- 2026-05-09 12:36:20.899 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_66
- 2026-05-09 12:36:20.905 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_63
- 2026-05-09 12:36:20.908 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_56
- 2026-05-09 12:36:20.919 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_12
- 2026-05-09 12:36:20.966 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_64
- 2026-05-09 12:36:21.008 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_17
- 2026-05-09 12:36:21.039 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: monthlyStatUsingGET_1
- 2026-05-09 12:36:21.043 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: monthlyStatSummaryUsingGET_1
- 2026-05-09 12:36:21.049 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getListUsingGET_2
- 2026-05-09 12:36:21.140 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_67
- 2026-05-09 12:36:21.185 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageListUsingGET_1
- 2026-05-09 12:36:21.190 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: statUsingGET_2
- 2026-05-09 12:36:21.253 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_13
- 2026-05-09 12:36:21.256 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_14
- 2026-05-09 12:36:21.315 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_65
- 2026-05-09 12:36:21.328 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_68
- 2026-05-09 12:36:21.394 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getYyWyjtzPageUsingGET_1
- 2026-05-09 12:36:21.397 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_15
- 2026-05-09 12:36:21.403 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_5
- 2026-05-09 12:36:21.416 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_18
- 2026-05-09 12:36:21.419 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_16
- 2026-05-09 12:36:21.440 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_19
- 2026-05-09 12:36:21.443 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_17
- 2026-05-09 12:36:21.517 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_20
- 2026-05-09 12:36:21.519 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_18
- 2026-05-09 12:36:21.526 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_69
- 2026-05-09 12:36:21.537 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_70
- 2026-05-09 12:36:21.540 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_55
- 2026-05-09 12:36:21.551 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_66
- 2026-05-09 12:36:21.555 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_57
- 2026-05-09 12:36:21.559 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_70
- 2026-05-09 12:36:21.563 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_71
- 2026-05-09 12:36:21.566 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_56
- 2026-05-09 12:36:21.594 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_67
- 2026-05-09 12:36:21.598 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_58
- 2026-05-09 12:36:21.603 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_21
- 2026-05-09 12:36:21.606 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_3
- 2026-05-09 12:36:21.615 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_68
- 2026-05-09 12:36:21.631 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_22
- 2026-05-09 12:36:21.696 [main] INFO io.undertow - starting server: Undertow - 2.0.31.Final
- 2026-05-09 12:36:21.713 [main] INFO org.xnio - XNIO version 3.3.8.Final
- 2026-05-09 12:36:21.723 [main] INFO org.xnio.nio - XNIO NIO Implementation Version 3.3.8.Final
- 2026-05-09 12:36:21.796 [main] INFO o.s.b.w.e.u.UndertowServletWebServer - Undertow started on port(s) 10506 (http) with context path ''
- 2026-05-09 12:36:21.872 [main] INFO c.a.c.n.r.NacosServiceRegistry - nacos registry, DEFAULT_GROUP collect-fees-api 172.19.0.11:10506 register finished
- 2026-05-09 12:36:23.299 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
- 2026-05-09 12:36:23.302 [main] INFO com.tofly.feesapi.FeesApiApplication - Started FeesApiApplication in 44.857 seconds (JVM running for 46.753)
- 2026-05-09 12:36:23.954 [RMI TCP Connection(3)-192.168.1.105] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
- 2026-05-09 12:36:23.955 [RMI TCP Connection(3)-192.168.1.105] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
- 2026-05-09 12:36:23.978 [RMI TCP Connection(3)-192.168.1.105] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 23 ms
- 2026-05-09 12:37:30.587 [XNIO-1 task-1] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/yysspjxx/getPageList/getPageList】请求开始==================
- 2026-05-09 12:37:30.780 [XNIO-1 task-1] DEBUG c.t.f.s.m.Y.getPageListByKhbm_mpCount - ==> Preparing: SELECT COUNT(*) FROM (SELECT khbm, max(yhxm) yhxm, max(yhdz) yhdz, sum(CASE WHEN fylx IN ('1', '2') THEN yssl ELSE 0 END) yssl, sum(ysje) ysje, sum(sszje) sszje, sum(yssf) yssf, sum(yswsf) yswsf, sum(ysszyf) ysszyf, sum(ysecjyf) ysecjyf, sum(ysqt) ysqt, sum(ysfjf) ysfjf FROM (SELECT a.*, b.name fffsmc, c.name sflxmc, d.ysxzbm ysxz, d.name ysxzmc, d.sjmc, kh.yhdz FROM yy_sspjxx a LEFT JOIN bm_fffs b ON a.fffs = b.code LEFT JOIN bm_sflx c ON a.sflx = c.code LEFT JOIN (SELECT sj.code, sj.name AS sjmc, yslx.name, yslx.code AS ysxzbm FROM bm_sj sj LEFT JOIN bm_yslx yslx ON sj.yslx = yslx.code) d ON a.sjbm = d.code INNER JOIN yh_khjbxx kh ON a.yhbh = kh.yhbh WHERE 1 = 1 AND a.ssgs = ? AND a.sfrq > ? + 0 AND a.sfrq <= ? + 0 AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?)) GROUP BY khbm ORDER BY khbm ASC) TOTAL
- 2026-05-09 12:37:30.816 [XNIO-1 task-1] DEBUG c.t.f.s.m.Y.getPageListByKhbm_mpCount - ==> Parameters: 1(String), 2026-05-09 00:00:00.0(Timestamp), 2026-05-09 23:59:59.0(Timestamp), 10753(String)
- 2026-05-09 12:37:30.895 [XNIO-1 task-1] DEBUG c.t.f.s.m.Y.getPageListByKhbm_mpCount - <== Total: 1
- 2026-05-09 12:37:30.901 [XNIO-1 task-1] DEBUG c.t.f.s.m.Y.getPageListByKhbm - ==> Preparing: SELECT * FROM ( SELECT TMP.*, ROWNUM ROW_ID FROM ( select khbm,max(yhxm) yhxm,max(yhdz) yhdz,sum(case when fylx in ('1','2') then yssl else 0 end ) yssl,sum(ysje) ysje,sum(sszje) sszje,sum(yssf) yssf,sum(yswsf) yswsf,sum(ysszyf) ysszyf,sum(ysecjyf) ysecjyf,sum(ysqt) ysqt,sum(ysfjf) ysfjf from ( SELECT a.*, b.name fffsmc, c.name sflxmc,d.ysxzbm ysxz, d.name ysxzmc,d.sjmc,kh.yhdz FROM yy_sspjxx a LEFT JOIN bm_fffs b on a.fffs = b.code LEFT JOIN bm_sflx c on a.sflx = c.code LEFT JOIN (SELECT sj.code, sj.name as sjmc, yslx.name, yslx.code as ysxzbm FROM bm_sj sj LEFT JOIN bm_yslx yslx on sj.yslx = yslx.code ) d on a.sjbm = d.code INNER JOIN yh_khjbxx kh on a.yhbh = kh.yhbh where 1=1 AND a.ssgs = ? and a.sfrq >?+0 and a.sfrq <= ?+0 AND a.sscbb in (select cbbbm from yh_sjqx where user_id=?) ) group by khbm order by khbm asc ) TMP WHERE ROWNUM <=?) WHERE ROW_ID > ?
- 2026-05-09 12:37:30.903 [XNIO-1 task-1] DEBUG c.t.f.s.m.Y.getPageListByKhbm - ==> Parameters: 1(String), 2026-05-09 00:00:00.0(Timestamp), 2026-05-09 23:59:59.0(Timestamp), 10753(String), 20(Long), 0(Long)
- 2026-05-09 12:37:30.975 [XNIO-1 task-1] DEBUG c.t.f.s.m.Y.getPageListByKhbm - <== Total: 1
- 2026-05-09 12:37:31.007 [XNIO-1 task-1] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - ==> Preparing: SELECT CODE,name,sj,yslx,ssgs,czry,czsj,czxl,nxl,jtbz,jt1_zs,jt1_sj,jt2_zs,jt2_sj,jt3_zs,jt3_sj,jt4_zs,jt4_sj,wsfdj,ljfdj,szyfdj,jtrksl,jtrkjs,bz,isdisabled,xgrq,jtjslx,jtsffs,taxrate FROM BM_SJ ORDER BY czsj ASC
- 2026-05-09 12:37:31.008 [XNIO-1 task-1] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - ==> Parameters:
- 2026-05-09 12:37:31.178 [XNIO-1 task-1] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - <== Total: 21
- 2026-05-09 12:37:31.180 [XNIO-1 task-1] DEBUG c.t.f.s.m.Y.getPageCount - ==> Preparing: select sum(case when nvl(yssf,0)!=0 then yssl else 0 end) zyssl, sum(nvl(yssf,0)) zyssf, sum(nvl(yswsf,0)) zyswsf, sum(nvl(ysljf,0)) zysljf, sum(nvl(ysszyf,0)) zysszyf, sum(nvl(ysecjyf, 0) ) zysecjyf, sum(nvl(ysfjf, 0) ) zysfjf, sum(nvl(ysqt, 0) ) zysqtf, sum(nvl(ysje,0)) zysje, sum(nvl(znj,0)) zznj, sum(nvl(sszje,0)) zsszje, sum(nvl(bcyc,0)) zbcyc, sum(nvl(bckj,0)) zbckj from yy_sspjxx a LEFT JOIN bm_fffs b on a.fffs = b.code LEFT JOIN bm_sflx c on a.sflx = c.code LEFT JOIN (SELECT sj.code, sj.name as sjmc, yslx.name, yslx.code as ysxzbm FROM bm_sj sj LEFT JOIN bm_yslx yslx on sj.yslx = yslx.code ) d on a.sjbm = d.code INNER JOIN yh_khjbxx kh on a.yhbh = kh.yhbh where 1=1 AND a.ssgs = ? and a.sfrq >?+0 and a.sfrq <= ?+0 AND a.sscbb in (select cbbbm from yh_sjqx where user_id=?)
- 2026-05-09 12:37:31.181 [XNIO-1 task-1] DEBUG c.t.f.s.m.Y.getPageCount - ==> Parameters: 1(String), 2026-05-09 00:00:00.0(Timestamp), 2026-05-09 23:59:59.0(Timestamp), 10753(String)
- 2026-05-09 12:37:31.236 [XNIO-1 task-1] DEBUG c.t.f.s.m.Y.getPageCount - <== Total: 1
- 2026-05-09 12:37:31.247 [XNIO-1 task-1] INFO c.t.feesapi.common.LogRecordAspect - =================【getPageList】请求结束==================
- 2026-05-09 12:37:57.641 [SpringContextShutdownHook] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'taskScheduler'
- 2026-05-09 12:37:57.652 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registering from Nacos Server now...
- 2026-05-09 12:37:57.654 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registration finished.
- 2026-05-09 12:37:57.656 [SpringContextShutdownHook] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'taskScheduler'
- 2026-05-09 12:38:10.456 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.0.20.Final
- 2026-05-09 12:38:10.767 [background-preinit] WARN o.s.h.c.j.Jackson2ObjectMapperBuilder - For Jackson Kotlin classes support please add "com.fasterxml.jackson.module:jackson-module-kotlin" to the classpath
- 2026-05-09 12:38:12.178 [main] WARN c.a.c.n.c.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[collect-fees-api] & group[DEFAULT_GROUP]
- 2026-05-09 12:38:12.185 [main] WARN c.a.c.n.c.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[collect-fees-api-bd.yaml] & group[DEFAULT_GROUP]
- 2026-05-09 12:38:12.186 [main] INFO o.s.c.b.c.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-collect-fees-api-bd.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-collect-fees-api.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-collect-fees-api,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-yx_config_ftp.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-public_config_redis.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-public_config_oracle.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-public_config_public.yaml,DEFAULT_GROUP'}]
- 2026-05-09 12:38:12.190 [main] INFO com.tofly.feesapi.FeesApiApplication - The following profiles are active: bd
- 2026-05-09 12:38:13.766 [main] WARN o.s.boot.actuate.endpoint.EndpointId - Endpoint ID 'nacos-config' contains invalid characters, please migrate to a valid format.
- 2026-05-09 12:38:13.769 [main] WARN o.s.boot.actuate.endpoint.EndpointId - Endpoint ID 'nacos-discovery' contains invalid characters, please migrate to a valid format.
- 2026-05-09 12:38:13.959 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode!
- 2026-05-09 12:38:13.961 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
- 2026-05-09 12:38:14.191 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 175ms. Found 0 Redis repository interfaces.
- 2026-05-09 12:38:14.257 [main] WARN o.s.boot.actuate.endpoint.EndpointId - Endpoint ID 'service-registry' contains invalid characters, please migrate to a valid format.
- 2026-05-09 12:38:14.330 [main] DEBUG org.apache.ibatis.logging.LogFactory - Logging initialized using 'class org.apache.ibatis.logging.slf4j.Slf4jImpl' adapter.
- 2026-05-09 12:38:14.485 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhBjflFbMapper' and 'com.tofly.feesapi.bjgl.mapper.YhBjflFbMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.485 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhBjflZbMapper' and 'com.tofly.feesapi.bjgl.mapper.YhBjflZbMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.485 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhCbkxxLogMapper' and 'com.tofly.feesapi.bjgl.mapper.YhCbkxxLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.485 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhCbkxxMapper' and 'com.tofly.feesapi.bjgl.mapper.YhCbkxxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.485 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhbglMapper' and 'com.tofly.feesapi.bjgl.mapper.YhbglMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.485 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'ykHbLogMapper' and 'com.tofly.feesapi.bjgl.mapper.YkHbLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.485 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'ykYhbgHbMapper' and 'com.tofly.feesapi.bjgl.mapper.YkYhbgHbMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.485 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmCbbMapper' and 'com.tofly.feesapi.bmgl.mapper.BmCbbMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.485 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmCbfsMapper' and 'com.tofly.feesapi.bmgl.mapper.BmCbfsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.485 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmCblxMapper' and 'com.tofly.feesapi.bmgl.mapper.BmCblxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.485 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmCbplMapper' and 'com.tofly.feesapi.bmgl.mapper.BmCbplMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.485 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmCbpqMapper' and 'com.tofly.feesapi.bmgl.mapper.BmCbpqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.485 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmDbhysyhMapper' and 'com.tofly.feesapi.bmgl.mapper.BmDbhysyhMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.485 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmFffsMapper' and 'com.tofly.feesapi.bmgl.mapper.BmFffsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.486 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmFylxMapper' and 'com.tofly.feesapi.bmgl.mapper.BmFylxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.486 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmGsMapper' and 'com.tofly.feesapi.bmgl.mapper.BmGsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.486 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSblbMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSblbMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.486 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSbsccjMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSbsccjMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.486 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSbxhMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSbxhMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.486 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSearchMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSearchMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.486 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSflxMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSflxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.486 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSfqdMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSfqdMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.486 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSjMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSjMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.486 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSjlsMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSjlsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.486 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmYmjzConfigLsMapper' and 'com.tofly.feesapi.bmgl.mapper.BmYmjzConfigLsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.486 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmYmjzConfigMapper' and 'com.tofly.feesapi.bmgl.mapper.BmYmjzConfigMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.486 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmYslxMapper' and 'com.tofly.feesapi.bmgl.mapper.BmYslxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.486 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'cbbConfigMapper' and 'com.tofly.feesapi.bmgl.mapper.CbbConfigMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.486 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysChildCodeMapper' and 'com.tofly.feesapi.bmgl.mapper.SysChildCodeMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.486 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysParentCodeMapper' and 'com.tofly.feesapi.bmgl.mapper.SysParentCodeMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.486 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyCblrLsMapper' and 'com.tofly.feesapi.cbgl.mapper.YyCblrLsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.486 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyCblrMapper' and 'com.tofly.feesapi.cbgl.mapper.YyCblrMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.486 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbCbDayMapper' and 'com.tofly.feesapi.cbgl.mapper.ZnbCbDayMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.486 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbCbLogMapper' and 'com.tofly.feesapi.cbgl.mapper.ZnbCbLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.486 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbZlLogMapper' and 'com.tofly.feesapi.cbgl.mapper.ZnbZlLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.486 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'commonMapper' and 'com.tofly.feesapi.common.mapper.CommonMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.486 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiFpkjMxMapper' and 'com.tofly.feesapi.dzfp.mapper.EiFpkjMxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.486 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiFpkjRequestMapper' and 'com.tofly.feesapi.dzfp.mapper.EiFpkjRequestMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.487 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiKprpzMapper' and 'com.tofly.feesapi.dzfp.mapper.EiKprpzMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.487 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiSalerConfigMapper' and 'com.tofly.feesapi.dzfp.mapper.EiSalerConfigMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.487 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiSpbmMapper' and 'com.tofly.feesapi.dzfp.mapper.EiSpbmMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.487 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiYkfpLogMapper' and 'com.tofly.feesapi.dzfp.mapper.EiYkfpLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.487 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'htFilesMapper' and 'com.tofly.feesapi.dzht.mapper.HtFilesMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.487 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'htTemplateMapper' and 'com.tofly.feesapi.dzht.mapper.HtTemplateMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.487 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'fileMapper' and 'com.tofly.feesapi.file.mapper.FileMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.487 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'flowMapper' and 'com.tofly.feesapi.flowdb.mapper.FlowMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.487 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyBgLogMapper' and 'com.tofly.feesapi.mxcx.mapper.YyBgLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.487 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bankDsdzhzMapper' and 'com.tofly.feesapi.sfds.mapper.BankDsdzhzMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.487 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bankDsdzxxMapper' and 'com.tofly.feesapi.sfds.mapper.BankDsdzxxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.487 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'plsfkhxxMapper' and 'com.tofly.feesapi.sfgl.mapper.PlsfkhxxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.487 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyPjbhMapper' and 'com.tofly.feesapi.sfgl.mapper.YyPjbhMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.487 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyQfmxCzlsMapper' and 'com.tofly.feesapi.sfgl.mapper.YyQfmxCzlsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.487 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyQfmxDzmxMapper' and 'com.tofly.feesapi.sfgl.mapper.YyQfmxDzmxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.487 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyQfmxGdMapper' and 'com.tofly.feesapi.sfgl.mapper.YyQfmxGdMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.487 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyQfmxMapper' and 'com.tofly.feesapi.sfgl.mapper.YyQfmxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.487 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yySspjxxMapper' and 'com.tofly.feesapi.sfgl.mapper.YySspjxxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.487 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yySspjxxReportMapper' and 'com.tofly.feesapi.sfgl.mapper.YySspjxxReportMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.487 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyWyjjmrqMapper' and 'com.tofly.feesapi.sfgl.mapper.YyWyjjmrqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.487 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyWyjtzMapper' and 'com.tofly.feesapi.sfgl.mapper.YyWyjtzMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.487 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbCsjsLogMapper' and 'com.tofly.feesapi.sfgl.mapper.ZnbCsjsLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.487 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'smsMessageMapper' and 'com.tofly.feesapi.sms.mapper.SmsMessageMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.487 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'smsTxlxMapper' and 'com.tofly.feesapi.sms.mapper.SmsTxlxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.487 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'companyMapper' and 'com.tofly.feesapi.udb.mapper.CompanyMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.487 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.tofly.feesapi.udb.mapper.UserMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.487 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userRoleMapper' and 'com.tofly.feesapi.udb.mapper.UserRoleMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.487 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxDtbmMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxDtbmMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.487 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxFwtzMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxFwtzMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.487 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxMessageMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxMessageMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.487 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxTokenMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxTokenMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.487 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxTstzMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxTstzMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.487 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxUserLsMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxUserLsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.487 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxUserMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxUserMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.487 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxYwxzMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxYwxzMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.487 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxYwxzbmMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxYwxzbmMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.487 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxBtsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxBtsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.488 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxBzsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxBzsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.488 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxDbsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxDbsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.488 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxGhsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxGhsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.488 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxGsdtMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxGsdtMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.488 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxHfsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxHfsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.488 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxLwsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxLwsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.488 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxLxdhsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxLxdhsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.488 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxRkssqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxRkssqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.488 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxWdMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxWdMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.488 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxWdbmMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxWdbmMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.488 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxWzjbsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxWzjbsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.488 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxXbsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxXbsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.488 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxXhsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxXhsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.488 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'paySelectMapper' and 'com.tofly.feesapi.wxgl.wechatpay.mapper.PaySelectMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.488 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysGdcsbMapper' and 'com.tofly.feesapi.xtgl.mapper.SysGdcsbMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.488 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'syscommlogMapper' and 'com.tofly.feesapi.xtgl.mapper.SyscommlogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.488 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhBtLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhBtLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.488 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhFfgxMapper' and 'com.tofly.feesapi.yhgl.mapper.YhFfgxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.488 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhGhLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhGhLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.488 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhGroupAccountsMapper' and 'com.tofly.feesapi.yhgl.mapper.YhGroupAccountsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.488 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhGroupMapper' and 'com.tofly.feesapi.yhgl.mapper.YhGroupMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.488 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhHfysLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhHfysLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.488 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhKhjbxxDbhlsMapper' and 'com.tofly.feesapi.yhgl.mapper.YhKhjbxxDbhlsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.488 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhKhjbxxLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhKhjbxxLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.488 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhKhjbxxMapper' and 'com.tofly.feesapi.yhgl.mapper.YhKhjbxxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.488 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhXzbgLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhXzbgLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.488 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhhLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhhLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.488 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhsjqxMapper' and 'com.tofly.feesapi.yhgl.mapper.YhsjqxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.488 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyZjzhMapper' and 'com.tofly.feesapi.yhgl.mapper.YyZjzhMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.489 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbDaLogMapper' and 'com.tofly.feesapi.znbgl.mapper.ZnbDaLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.489 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbYhdaMapper' and 'com.tofly.feesapi.znbgl.mapper.ZnbYhdaMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 12:38:14.489 [main] WARN o.m.s.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.tofly.feesapi.**.mapper]' package. Please check your configuration.
- 2026-05-09 12:38:14.577 [main] INFO o.s.cloud.context.scope.GenericScope - BeanFactory id=6ba9fcc8-98cb-35e6-8547-52fc325bd065
- 2026-05-09 12:38:14.630 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.tofly.feesapi.common.feign.UserClient' of type [org.springframework.cloud.openfeign.FeignClientFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-05-09 12:38:14.850 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.datasource.dynamic-com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-05-09 12:38:14.859 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$5c581374] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-05-09 12:38:14.874 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'dsProcessor' of type [com.baomidou.dynamic.datasource.processor.DsHeaderProcessor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-05-09 12:38:14.899 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@684ce74c' of type [org.springframework.security.oauth2.provider.expression.OAuth2MethodSecurityExpressionHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-05-09 12:38:14.905 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'methodSecurityMetadataSource' of type [org.springframework.security.access.method.DelegatingMethodSecurityMetadataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-05-09 12:38:15.137 [main] WARN io.undertow.websockets.jsr - UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
- 2026-05-09 12:38:15.164 [main] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
- 2026-05-09 12:38:15.164 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2959 ms
- 2026-05-09 12:38:22.573 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1,master} inited
- 2026-05-09 12:38:23.558 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-2,udb} inited
- 2026-05-09 12:38:25.007 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-3,flowDB} inited
- 2026-05-09 12:38:25.007 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [udb] success
- 2026-05-09 12:38:25.007 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [flowDB] success
- 2026-05-09 12:38:25.007 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
- 2026-05-09 12:38:25.007 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [3] datasource,primary datasource named [master]
- 2026-05-09 12:38:26.315 [main] WARN c.b.m.core.injector.AbstractMethod - [com.tofly.feesapi.bmgl.mapper.SysParentCodeMapper.selectCount] Has been loaded by XML or SqlProvider or Mybatis's Annotation, so ignoring this injection for [class com.baomidou.mybatisplus.core.injector.methods.SelectCount]
- 2026-05-09 12:38:26.668 [main] WARN c.b.m.core.injector.AbstractMethod - [com.tofly.feesapi.flowdb.mapper.FlowMapper.updateById] Has been loaded by XML or SqlProvider or Mybatis's Annotation, so ignoring this injection for [class com.baomidou.mybatisplus.core.injector.methods.UpdateById]
- 2026-05-09 12:38:27.493 [main] WARN c.b.m.core.metadata.TableInfoHelper - Can not find table primary key in Class: "com.tofly.feesapi.wxgl.wechatpay.entity.PaySelect".
- 2026-05-09 12:38:27.493 [main] WARN c.b.m.c.injector.DefaultSqlInjector - class com.tofly.feesapi.wxgl.wechatpay.entity.PaySelect ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method.
- 2026-05-09 12:38:27.507 [main] WARN c.b.m.core.metadata.TableInfoHelper - Can not find table primary key in Class: "com.tofly.feesapi.xtgl.entity.SysGdcsb".
- 2026-05-09 12:38:27.507 [main] WARN c.b.m.c.injector.DefaultSqlInjector - class com.tofly.feesapi.xtgl.entity.SysGdcsb ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method.
- 2026-05-09 12:38:30.599 [main] INFO org.redisson.Version - Redisson 3.23.2
- 2026-05-09 12:38:31.444 [redisson-netty-2-4] INFO o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 127.0.0.1/127.0.0.1:6379
- 2026-05-09 12:38:31.493 [redisson-netty-2-19] INFO o.r.c.pool.MasterConnectionPool - 24 connections initialized for 127.0.0.1/127.0.0.1:6379
- 2026-05-09 12:38:38.568 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
- 2026-05-09 12:38:38.719 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 19 endpoint(s) beneath base path '/actuator'
- 2026-05-09 12:38:38.816 [main] INFO s.d.s.w.WebMvcPropertySourcedRequestMappingHandlerMapping - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
- 2026-05-09 12:38:38.984 [main] INFO c.n.c.sources.URLConfigurationSource - URLs to be used as dynamic configuration source: [file:/D:/work/tf/%e5%b1%b1%e4%b8%9c%e8%8e%b1%e9%98%b3%e6%b0%b4%e5%8f%b8/%e8%8e%b1%e9%98%b3%e6%99%ba%e6%85%a7%e6%b0%b4%e5%8a%a1JAVA%e8%90%a5%e9%94%80/20260403/lywebmis/collect_fees_ly_api/fees-ly-api/target/classes/config.properties]
- 2026-05-09 12:38:38.991 [main] INFO c.n.c.sources.URLConfigurationSource - URLs to be used as dynamic configuration source: [file:/D:/work/tf/%e5%b1%b1%e4%b8%9c%e8%8e%b1%e9%98%b3%e6%b0%b4%e5%8f%b8/%e8%8e%b1%e9%98%b3%e6%99%ba%e6%85%a7%e6%b0%b4%e5%8a%a1JAVA%e8%90%a5%e9%94%80/20260403/lywebmis/collect_fees_ly_api/fees-ly-api/target/classes/config.properties]
- 2026-05-09 12:38:39.249 [main] INFO o.s.s.c.ThreadPoolTaskScheduler - Initializing ExecutorService 'taskScheduler'
- 2026-05-09 12:38:39.449 [main] INFO o.s.b.a.s.s.UserDetailsServiceAutoConfiguration -
- Using generated security password: 0bdcd5f9-57df-448f-b45d-84e26e37547f
- 2026-05-09 12:38:39.553 [main] INFO o.s.s.web.DefaultSecurityFilterChain - Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@68f4c6e7, org.springframework.security.web.context.SecurityContextPersistenceFilter@1a4eb392, org.springframework.security.web.header.HeaderWriterFilter@7b4fbedb, org.springframework.security.web.authentication.logout.LogoutFilter@b632594, org.springframework.security.oauth2.provider.authentication.OAuth2AuthenticationProcessingFilter@59f2a9e9, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@2495a351, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@3fd64d6b, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@33bd3549, org.springframework.security.web.session.SessionManagementFilter@3af4b14e, org.springframework.security.web.access.ExceptionTranslationFilter@6ca95b1e, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@636e6791]
- 2026-05-09 12:38:41.042 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
- 2026-05-09 12:38:41.133 [main] WARN o.s.c.s.o.SpringCloudSecurityAutoConfiguration - All Spring Cloud Security modules and starters are deprecated. They will be moved to individual projects in the next major release.
- 2026-05-09 12:38:41.279 [main] INFO s.d.s.w.p.DocumentationPluginsBootstrapper - Documentation plugins bootstrapped
- 2026-05-09 12:38:41.282 [main] INFO s.d.s.w.p.DocumentationPluginsBootstrapper - Found 1 custom documentation plugin(s)
- 2026-05-09 12:38:41.436 [main] INFO s.d.s.w.s.ApiListingReferenceScanner - Scanning for api listing references
- 2026-05-09 12:38:41.855 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_1
- 2026-05-09 12:38:41.860 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_1
- 2026-05-09 12:38:41.861 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_1
- 2026-05-09 12:38:41.862 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_1
- 2026-05-09 12:38:41.866 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_1
- 2026-05-09 12:38:41.867 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_1
- 2026-05-09 12:38:41.888 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: addCustomerUsingPOST_1
- 2026-05-09 12:38:41.889 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: deleteCustomerUsingPOST_1
- 2026-05-09 12:38:41.890 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getBindCustomerUsingGET_1
- 2026-05-09 12:38:41.892 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: selectCustomerUsingGET_1
- 2026-05-09 12:38:41.893 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getBindCustomerAndQfUsingGET_1
- 2026-05-09 12:38:41.894 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerBasicInFoUsingGET_1
- 2026-05-09 12:38:41.895 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerChargeInFoUsingGET_1
- 2026-05-09 12:38:41.896 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerInFoUsingGET_1
- 2026-05-09 12:38:41.897 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerQfInFoUsingGET_1
- 2026-05-09 12:38:41.898 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerReadMeterInFoUsingGET_1
- 2026-05-09 12:38:41.909 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_2
- 2026-05-09 12:38:41.933 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_2
- 2026-05-09 12:38:41.935 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_2
- 2026-05-09 12:38:41.936 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_2
- 2026-05-09 12:38:41.941 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_2
- 2026-05-09 12:38:41.942 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_2
- 2026-05-09 12:38:41.959 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_3
- 2026-05-09 12:38:41.961 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_3
- 2026-05-09 12:38:41.961 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_3
- 2026-05-09 12:38:41.964 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_3
- 2026-05-09 12:38:41.965 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_3
- 2026-05-09 12:38:41.971 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_3
- 2026-05-09 12:38:41.978 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_4
- 2026-05-09 12:38:41.979 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_4
- 2026-05-09 12:38:41.980 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_4
- 2026-05-09 12:38:41.982 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_4
- 2026-05-09 12:38:41.983 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_4
- 2026-05-09 12:38:41.985 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_5
- 2026-05-09 12:38:41.986 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_5
- 2026-05-09 12:38:41.987 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_5
- 2026-05-09 12:38:41.990 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_5
- 2026-05-09 12:38:41.990 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_5
- 2026-05-09 12:38:41.997 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_4
- 2026-05-09 12:38:42.002 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_6
- 2026-05-09 12:38:42.009 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_5
- 2026-05-09 12:38:42.010 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_6
- 2026-05-09 12:38:42.011 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_6
- 2026-05-09 12:38:42.014 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_6
- 2026-05-09 12:38:42.015 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_6
- 2026-05-09 12:38:42.017 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_1
- 2026-05-09 12:38:42.024 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_7
- 2026-05-09 12:38:42.025 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_7
- 2026-05-09 12:38:42.025 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_7
- 2026-05-09 12:38:42.029 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_7
- 2026-05-09 12:38:42.030 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_7
- 2026-05-09 12:38:42.034 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_8
- 2026-05-09 12:38:42.034 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getFffsListUsingGET_1
- 2026-05-09 12:38:42.035 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_8
- 2026-05-09 12:38:42.036 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_9
- 2026-05-09 12:38:42.040 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_8
- 2026-05-09 12:38:42.040 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_8
- 2026-05-09 12:38:42.046 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_2
- 2026-05-09 12:38:42.051 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_9
- 2026-05-09 12:38:42.052 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_10
- 2026-05-09 12:38:42.053 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_11
- 2026-05-09 12:38:42.055 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_9
- 2026-05-09 12:38:42.056 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_9
- 2026-05-09 12:38:42.059 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_10
- 2026-05-09 12:38:42.061 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_12
- 2026-05-09 12:38:42.061 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_13
- 2026-05-09 12:38:42.064 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_10
- 2026-05-09 12:38:42.065 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_10
- 2026-05-09 12:38:42.069 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_11
- 2026-05-09 12:38:42.071 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_14
- 2026-05-09 12:38:42.072 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_15
- 2026-05-09 12:38:42.075 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_11
- 2026-05-09 12:38:42.076 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_11
- 2026-05-09 12:38:42.083 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_12
- 2026-05-09 12:38:42.084 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_16
- 2026-05-09 12:38:42.085 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_8
- 2026-05-09 12:38:42.087 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_12
- 2026-05-09 12:38:42.088 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_12
- 2026-05-09 12:38:42.094 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_13
- 2026-05-09 12:38:42.095 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_17
- 2026-05-09 12:38:42.096 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_9
- 2026-05-09 12:38:42.098 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_13
- 2026-05-09 12:38:42.100 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_13
- 2026-05-09 12:38:42.104 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_14
- 2026-05-09 12:38:42.105 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_18
- 2026-05-09 12:38:42.106 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_19
- 2026-05-09 12:38:42.111 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_14
- 2026-05-09 12:38:42.112 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_14
- 2026-05-09 12:38:42.120 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_15
- 2026-05-09 12:38:42.134 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_6
- 2026-05-09 12:38:42.161 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_15
- 2026-05-09 12:38:42.168 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_3
- 2026-05-09 12:38:42.175 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_16
- 2026-05-09 12:38:42.176 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_20
- 2026-05-09 12:38:42.178 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_10
- 2026-05-09 12:38:42.180 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_16
- 2026-05-09 12:38:42.181 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_15
- 2026-05-09 12:38:42.187 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_17
- 2026-05-09 12:38:42.196 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_7
- 2026-05-09 12:38:42.197 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_21
- 2026-05-09 12:38:42.198 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_11
- 2026-05-09 12:38:42.201 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_17
- 2026-05-09 12:38:42.202 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_16
- 2026-05-09 12:38:42.219 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_8
- 2026-05-09 12:38:42.221 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveBatchUsingPOST_1
- 2026-05-09 12:38:42.366 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_18
- 2026-05-09 12:38:42.370 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_22
- 2026-05-09 12:38:42.371 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_12
- 2026-05-09 12:38:42.373 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_18
- 2026-05-09 12:38:42.374 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_17
- 2026-05-09 12:38:42.376 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_19
- 2026-05-09 12:38:42.382 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_23
- 2026-05-09 12:38:42.382 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_13
- 2026-05-09 12:38:42.385 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_19
- 2026-05-09 12:38:42.386 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_18
- 2026-05-09 12:38:42.389 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_20
- 2026-05-09 12:38:42.391 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_24
- 2026-05-09 12:38:42.394 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_20
- 2026-05-09 12:38:42.395 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_19
- 2026-05-09 12:38:42.403 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_21
- 2026-05-09 12:38:42.405 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_25
- 2026-05-09 12:38:42.405 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_14
- 2026-05-09 12:38:42.408 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_21
- 2026-05-09 12:38:42.433 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: Xh_WordToPdfUsingPOST_1
- 2026-05-09 12:38:42.437 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_22
- 2026-05-09 12:38:42.443 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_26
- 2026-05-09 12:38:42.444 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_15
- 2026-05-09 12:38:42.448 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_22
- 2026-05-09 12:38:42.450 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_27
- 2026-05-09 12:38:42.451 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_16
- 2026-05-09 12:38:42.455 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_23
- 2026-05-09 12:38:42.455 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_20
- 2026-05-09 12:38:42.472 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_23
- 2026-05-09 12:38:42.565 [main] WARN s.d.s.w.r.p.ParameterTypeReader - @ModelAttribute annotated parameters should have already been expanded via the ExpandedParameterBuilderPlugin
- 2026-05-09 12:38:42.566 [main] WARN s.d.s.w.r.p.ParameterTypeReader - @ModelAttribute annotated parameters should have already been expanded via the ExpandedParameterBuilderPlugin
- 2026-05-09 12:38:42.574 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportYsqdUsingGET_1
- 2026-05-09 12:38:42.632 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_24
- 2026-05-09 12:38:42.635 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_28
- 2026-05-09 12:38:42.636 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_17
- 2026-05-09 12:38:42.661 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_25
- 2026-05-09 12:38:42.661 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_29
- 2026-05-09 12:38:42.662 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_18
- 2026-05-09 12:38:42.665 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_24
- 2026-05-09 12:38:42.666 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_21
- 2026-05-09 12:38:42.679 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_26
- 2026-05-09 12:38:42.685 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_30
- 2026-05-09 12:38:42.686 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_19
- 2026-05-09 12:38:42.689 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_25
- 2026-05-09 12:38:42.690 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_22
- 2026-05-09 12:38:42.692 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_27
- 2026-05-09 12:38:42.696 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_31
- 2026-05-09 12:38:42.697 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_20
- 2026-05-09 12:38:42.699 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_26
- 2026-05-09 12:38:42.700 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_23
- 2026-05-09 12:38:42.710 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_28
- 2026-05-09 12:38:42.716 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_32
- 2026-05-09 12:38:42.717 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_21
- 2026-05-09 12:38:42.721 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_27
- 2026-05-09 12:38:42.722 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_24
- 2026-05-09 12:38:42.732 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxBtsqPageUsingGET_1
- 2026-05-09 12:38:42.734 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_29
- 2026-05-09 12:38:42.738 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_33
- 2026-05-09 12:38:42.739 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_22
- 2026-05-09 12:38:42.742 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_28
- 2026-05-09 12:38:42.743 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_25
- 2026-05-09 12:38:42.746 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxBzsqPageUsingGET_1
- 2026-05-09 12:38:42.753 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_30
- 2026-05-09 12:38:42.758 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_34
- 2026-05-09 12:38:42.758 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_23
- 2026-05-09 12:38:42.762 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_29
- 2026-05-09 12:38:42.763 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_26
- 2026-05-09 12:38:42.770 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxDbsqPageUsingGET_1
- 2026-05-09 12:38:42.772 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPOST_1
- 2026-05-09 12:38:42.774 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_31
- 2026-05-09 12:38:42.779 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_35
- 2026-05-09 12:38:42.780 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_24
- 2026-05-09 12:38:42.782 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_30
- 2026-05-09 12:38:42.783 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_27
- 2026-05-09 12:38:42.785 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_32
- 2026-05-09 12:38:42.788 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_36
- 2026-05-09 12:38:42.789 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_25
- 2026-05-09 12:38:42.793 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_31
- 2026-05-09 12:38:42.794 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_28
- 2026-05-09 12:38:42.796 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_33
- 2026-05-09 12:38:42.797 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_37
- 2026-05-09 12:38:42.798 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_26
- 2026-05-09 12:38:42.803 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_32
- 2026-05-09 12:38:42.804 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_29
- 2026-05-09 12:38:42.815 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_34
- 2026-05-09 12:38:42.819 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_38
- 2026-05-09 12:38:42.820 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_39
- 2026-05-09 12:38:42.824 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_33
- 2026-05-09 12:38:42.824 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_30
- 2026-05-09 12:38:42.827 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_35
- 2026-05-09 12:38:42.833 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_40
- 2026-05-09 12:38:42.835 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_27
- 2026-05-09 12:38:42.839 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_34
- 2026-05-09 12:38:42.840 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_31
- 2026-05-09 12:38:42.849 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxHfsqPageUsingGET_1
- 2026-05-09 12:38:42.851 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_36
- 2026-05-09 12:38:42.857 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_41
- 2026-05-09 12:38:42.859 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_28
- 2026-05-09 12:38:42.862 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_35
- 2026-05-09 12:38:42.864 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_32
- 2026-05-09 12:38:42.873 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxLwsqPageUsingGET_1
- 2026-05-09 12:38:42.876 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_37
- 2026-05-09 12:38:42.884 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_42
- 2026-05-09 12:38:42.885 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_29
- 2026-05-09 12:38:42.889 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_36
- 2026-05-09 12:38:42.891 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_33
- 2026-05-09 12:38:42.898 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxLxdhsqPageUsingGET_1
- 2026-05-09 12:38:42.901 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_38
- 2026-05-09 12:38:42.908 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_43
- 2026-05-09 12:38:42.910 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_30
- 2026-05-09 12:38:42.915 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_37
- 2026-05-09 12:38:42.917 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_34
- 2026-05-09 12:38:42.929 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_39
- 2026-05-09 12:38:42.936 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_44
- 2026-05-09 12:38:42.938 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_31
- 2026-05-09 12:38:42.942 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_38
- 2026-05-09 12:38:42.944 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_35
- 2026-05-09 12:38:42.951 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxDbsqPageUsingGET_2
- 2026-05-09 12:38:42.959 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_1
- 2026-05-09 12:38:42.962 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_40
- 2026-05-09 12:38:42.965 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_45
- 2026-05-09 12:38:42.966 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_32
- 2026-05-09 12:38:42.971 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_39
- 2026-05-09 12:38:42.980 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_36
- 2026-05-09 12:38:42.981 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_41
- 2026-05-09 12:38:42.984 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_46
- 2026-05-09 12:38:42.985 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_33
- 2026-05-09 12:38:42.989 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_40
- 2026-05-09 12:38:42.991 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_37
- 2026-05-09 12:38:42.992 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_42
- 2026-05-09 12:38:42.996 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_47
- 2026-05-09 12:38:42.997 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_34
- 2026-05-09 12:38:43.002 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_41
- 2026-05-09 12:38:43.003 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_38
- 2026-05-09 12:38:43.005 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_43
- 2026-05-09 12:38:43.008 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_48
- 2026-05-09 12:38:43.009 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_49
- 2026-05-09 12:38:43.013 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_42
- 2026-05-09 12:38:43.014 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_39
- 2026-05-09 12:38:43.016 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_44
- 2026-05-09 12:38:43.019 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_50
- 2026-05-09 12:38:43.020 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_51
- 2026-05-09 12:38:43.023 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_43
- 2026-05-09 12:38:43.024 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_40
- 2026-05-09 12:38:43.026 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_45
- 2026-05-09 12:38:43.032 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_52
- 2026-05-09 12:38:43.034 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_35
- 2026-05-09 12:38:43.037 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_44
- 2026-05-09 12:38:43.038 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_41
- 2026-05-09 12:38:43.046 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxWzjbsqPageUsingGET_1
- 2026-05-09 12:38:43.049 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_46
- 2026-05-09 12:38:43.056 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_53
- 2026-05-09 12:38:43.057 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_36
- 2026-05-09 12:38:43.061 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_45
- 2026-05-09 12:38:43.062 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_42
- 2026-05-09 12:38:43.070 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxXbsqPageUsingGET_1
- 2026-05-09 12:38:43.073 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_47
- 2026-05-09 12:38:43.080 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_54
- 2026-05-09 12:38:43.081 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_37
- 2026-05-09 12:38:43.084 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_46
- 2026-05-09 12:38:43.087 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_43
- 2026-05-09 12:38:43.094 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxXhsqPageUsingGET_1
- 2026-05-09 12:38:43.096 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPOST_2
- 2026-05-09 12:38:43.097 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_48
- 2026-05-09 12:38:43.100 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_55
- 2026-05-09 12:38:43.101 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_38
- 2026-05-09 12:38:43.105 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_47
- 2026-05-09 12:38:43.107 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_44
- 2026-05-09 12:38:43.109 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_49
- 2026-05-09 12:38:43.114 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_56
- 2026-05-09 12:38:43.115 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_39
- 2026-05-09 12:38:43.118 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_48
- 2026-05-09 12:38:43.120 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_45
- 2026-05-09 12:38:43.128 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_9
- 2026-05-09 12:38:43.129 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_57
- 2026-05-09 12:38:43.131 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_40
- 2026-05-09 12:38:43.133 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_49
- 2026-05-09 12:38:43.135 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_58
- 2026-05-09 12:38:43.136 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_41
- 2026-05-09 12:38:43.139 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_50
- 2026-05-09 12:38:43.147 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_10
- 2026-05-09 12:38:43.149 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_50
- 2026-05-09 12:38:43.155 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_59
- 2026-05-09 12:38:43.156 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_42
- 2026-05-09 12:38:43.160 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_51
- 2026-05-09 12:38:43.164 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_46
- 2026-05-09 12:38:43.166 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_2
- 2026-05-09 12:38:43.187 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_52
- 2026-05-09 12:38:43.198 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_51
- 2026-05-09 12:38:43.212 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_11
- 2026-05-09 12:38:43.225 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_1
- 2026-05-09 12:38:43.239 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_52
- 2026-05-09 12:38:43.240 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_43
- 2026-05-09 12:38:43.262 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_53
- 2026-05-09 12:38:43.270 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_60
- 2026-05-09 12:38:43.271 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_44
- 2026-05-09 12:38:43.274 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_53
- 2026-05-09 12:38:43.276 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_47
- 2026-05-09 12:38:43.278 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_54
- 2026-05-09 12:38:43.282 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_61
- 2026-05-09 12:38:43.284 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_45
- 2026-05-09 12:38:43.290 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_54
- 2026-05-09 12:38:43.297 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_48
- 2026-05-09 12:38:43.299 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_3
- 2026-05-09 12:38:43.302 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_62
- 2026-05-09 12:38:43.303 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_46
- 2026-05-09 12:38:43.306 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_55
- 2026-05-09 12:38:43.312 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_12
- 2026-05-09 12:38:43.319 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_63
- 2026-05-09 12:38:43.320 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_47
- 2026-05-09 12:38:43.324 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_56
- 2026-05-09 12:38:43.330 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_13
- 2026-05-09 12:38:43.333 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_55
- 2026-05-09 12:38:43.336 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_64
- 2026-05-09 12:38:43.337 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_48
- 2026-05-09 12:38:43.342 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_57
- 2026-05-09 12:38:43.348 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_49
- 2026-05-09 12:38:43.349 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_4
- 2026-05-09 12:38:43.369 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getDaCustomerPageUsingGET_1
- 2026-05-09 12:38:43.402 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_1
- 2026-05-09 12:38:43.417 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_14
- 2026-05-09 12:38:43.448 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_56
- 2026-05-09 12:38:43.496 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: delByIdUsingDELETE_1
- 2026-05-09 12:38:43.498 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: delByIdsUsingDELETE_1
- 2026-05-09 12:38:43.500 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: disableUsingPUT_1
- 2026-05-09 12:38:43.501 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: enableUsingPUT_1
- 2026-05-09 12:38:43.504 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: importExcelUsingPOST_1
- 2026-05-09 12:38:43.507 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_2
- 2026-05-09 12:38:43.513 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_3
- 2026-05-09 12:38:43.531 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_5
- 2026-05-09 12:38:43.534 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_6
- 2026-05-09 12:38:43.536 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_7
- 2026-05-09 12:38:43.539 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_57
- 2026-05-09 12:38:43.550 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_49
- 2026-05-09 12:38:43.574 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: addUsingPOST_1
- 2026-05-09 12:38:43.581 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_58
- 2026-05-09 12:38:43.589 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_65
- 2026-05-09 12:38:43.590 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_50
- 2026-05-09 12:38:43.593 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_58
- 2026-05-09 12:38:43.597 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: save_gdUsingPOST_1
- 2026-05-09 12:38:43.606 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_50
- 2026-05-09 12:38:43.620 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_59
- 2026-05-09 12:38:43.627 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_66
- 2026-05-09 12:38:43.628 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_51
- 2026-05-09 12:38:43.632 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_59
- 2026-05-09 12:38:43.634 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_51
- 2026-05-09 12:38:43.637 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_60
- 2026-05-09 12:38:43.640 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_67
- 2026-05-09 12:38:43.642 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_52
- 2026-05-09 12:38:43.647 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_60
- 2026-05-09 12:38:43.649 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: save_gdUsingPOST_2
- 2026-05-09 12:38:43.654 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_52
- 2026-05-09 12:38:43.655 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_8
- 2026-05-09 12:38:43.665 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_9
- 2026-05-09 12:38:43.679 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_61
- 2026-05-09 12:38:43.728 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_2
- 2026-05-09 12:38:43.732 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_62
- 2026-05-09 12:38:43.736 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_15
- 2026-05-09 12:38:43.767 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_4
- 2026-05-09 12:38:43.773 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_10
- 2026-05-09 12:38:43.780 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_63
- 2026-05-09 12:38:43.787 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_68
- 2026-05-09 12:38:43.789 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_53
- 2026-05-09 12:38:43.796 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_61
- 2026-05-09 12:38:43.798 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_53
- 2026-05-09 12:38:43.855 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_54
- 2026-05-09 12:38:43.947 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_16
- 2026-05-09 12:38:43.998 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getListUsingGET_1
- 2026-05-09 12:38:44.049 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_64
- 2026-05-09 12:38:44.092 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: statUsingGET_1
- 2026-05-09 12:38:44.128 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_11
- 2026-05-09 12:38:44.134 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_65
- 2026-05-09 12:38:44.145 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_69
- 2026-05-09 12:38:44.146 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_54
- 2026-05-09 12:38:44.180 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_62
- 2026-05-09 12:38:44.183 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_55
- 2026-05-09 12:38:44.185 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_66
- 2026-05-09 12:38:44.191 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_63
- 2026-05-09 12:38:44.193 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_56
- 2026-05-09 12:38:44.204 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_12
- 2026-05-09 12:38:44.236 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_64
- 2026-05-09 12:38:44.263 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_17
- 2026-05-09 12:38:44.282 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: monthlyStatUsingGET_1
- 2026-05-09 12:38:44.285 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: monthlyStatSummaryUsingGET_1
- 2026-05-09 12:38:44.289 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getListUsingGET_2
- 2026-05-09 12:38:44.356 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_67
- 2026-05-09 12:38:44.408 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageListUsingGET_1
- 2026-05-09 12:38:44.411 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: statUsingGET_2
- 2026-05-09 12:38:44.447 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_13
- 2026-05-09 12:38:44.449 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_14
- 2026-05-09 12:38:44.483 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_65
- 2026-05-09 12:38:44.491 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_68
- 2026-05-09 12:38:44.536 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getYyWyjtzPageUsingGET_1
- 2026-05-09 12:38:44.537 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_15
- 2026-05-09 12:38:44.540 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_5
- 2026-05-09 12:38:44.548 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_18
- 2026-05-09 12:38:44.549 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_16
- 2026-05-09 12:38:44.562 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_19
- 2026-05-09 12:38:44.565 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_17
- 2026-05-09 12:38:44.617 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_20
- 2026-05-09 12:38:44.619 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_18
- 2026-05-09 12:38:44.623 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_69
- 2026-05-09 12:38:44.632 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_70
- 2026-05-09 12:38:44.634 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_55
- 2026-05-09 12:38:44.642 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_66
- 2026-05-09 12:38:44.645 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_57
- 2026-05-09 12:38:44.649 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_70
- 2026-05-09 12:38:44.651 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_71
- 2026-05-09 12:38:44.653 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_56
- 2026-05-09 12:38:44.661 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_67
- 2026-05-09 12:38:44.664 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_58
- 2026-05-09 12:38:44.667 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_21
- 2026-05-09 12:38:44.670 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_3
- 2026-05-09 12:38:44.676 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_68
- 2026-05-09 12:38:44.688 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_22
- 2026-05-09 12:38:44.731 [main] INFO io.undertow - starting server: Undertow - 2.0.31.Final
- 2026-05-09 12:38:44.740 [main] INFO org.xnio - XNIO version 3.3.8.Final
- 2026-05-09 12:38:44.747 [main] INFO org.xnio.nio - XNIO NIO Implementation Version 3.3.8.Final
- 2026-05-09 12:38:44.812 [main] INFO o.s.b.w.e.u.UndertowServletWebServer - Undertow started on port(s) 10506 (http) with context path ''
- 2026-05-09 12:38:44.869 [main] INFO c.a.c.n.r.NacosServiceRegistry - nacos registry, DEFAULT_GROUP collect-fees-api 172.19.0.11:10506 register finished
- 2026-05-09 12:38:46.255 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
- 2026-05-09 12:38:46.257 [main] INFO com.tofly.feesapi.FeesApiApplication - Started FeesApiApplication in 37.594 seconds (JVM running for 39.168)
- 2026-05-09 12:38:46.814 [RMI TCP Connection(3)-192.168.1.105] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
- 2026-05-09 12:38:46.814 [RMI TCP Connection(3)-192.168.1.105] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
- 2026-05-09 12:38:46.842 [RMI TCP Connection(3)-192.168.1.105] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 28 ms
- 2026-05-09 12:39:23.930 [XNIO-1 task-1] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/yysspjxx/getPageList/getPageList】请求开始==================
- 2026-05-09 12:39:24.055 [XNIO-1 task-1] DEBUG c.t.f.s.m.Y.getPageListByKhbm_mpCount - ==> Preparing: SELECT COUNT(*) FROM (SELECT khbm, max(yhxm) yhxm, max(yhdz) yhdz, sum(CASE WHEN fylx IN ('1', '2') THEN yssl ELSE 0 END) yssl, sum(ysje) ysje, sum(sszje) sszje, sum(yssf) yssf, sum(yswsf) yswsf, sum(ysszyf) ysszyf, sum(ysecjyf) ysecjyf, sum(ysqt) ysqt, sum(ysfjf) ysfjf FROM (SELECT a.*, b.name fffsmc, c.name sflxmc, d.ysxzbm ysxz, d.name ysxzmc, d.sjmc, kh.yhdz FROM yy_sspjxx a LEFT JOIN bm_fffs b ON a.fffs = b.code LEFT JOIN bm_sflx c ON a.sflx = c.code LEFT JOIN (SELECT sj.code, sj.name AS sjmc, yslx.name, yslx.code AS ysxzbm FROM bm_sj sj LEFT JOIN bm_yslx yslx ON sj.yslx = yslx.code) d ON a.sjbm = d.code INNER JOIN yh_khjbxx kh ON a.yhbh = kh.yhbh WHERE 1 = 1 AND a.ssgs = ? AND a.sfrq > ? + 0 AND a.sfrq <= ? + 0 AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?)) GROUP BY khbm ORDER BY khbm ASC) TOTAL
- 2026-05-09 12:39:24.084 [XNIO-1 task-1] DEBUG c.t.f.s.m.Y.getPageListByKhbm_mpCount - ==> Parameters: 1(String), 2026-05-09 00:00:00.0(Timestamp), 2026-05-09 23:59:59.0(Timestamp), 10753(String)
- 2026-05-09 12:39:24.171 [XNIO-1 task-1] DEBUG c.t.f.s.m.Y.getPageListByKhbm_mpCount - <== Total: 1
- 2026-05-09 12:39:24.175 [XNIO-1 task-1] DEBUG c.t.f.s.m.Y.getPageListByKhbm - ==> Preparing: SELECT * FROM ( SELECT TMP.*, ROWNUM ROW_ID FROM ( select khbm,max(yhxm) yhxm,max(yhdz) yhdz,sum(case when fylx in ('1','2') then yssl else 0 end ) yssl,sum(ysje) ysje,sum(sszje) sszje,sum(yssf) yssf,sum(yswsf) yswsf,sum(ysszyf) ysszyf,sum(ysecjyf) ysecjyf,sum(ysqt) ysqt,sum(ysfjf) ysfjf from ( SELECT a.*, b.name fffsmc, c.name sflxmc,d.ysxzbm ysxz, d.name ysxzmc,d.sjmc,kh.yhdz FROM yy_sspjxx a LEFT JOIN bm_fffs b on a.fffs = b.code LEFT JOIN bm_sflx c on a.sflx = c.code LEFT JOIN (SELECT sj.code, sj.name as sjmc, yslx.name, yslx.code as ysxzbm FROM bm_sj sj LEFT JOIN bm_yslx yslx on sj.yslx = yslx.code ) d on a.sjbm = d.code INNER JOIN yh_khjbxx kh on a.yhbh = kh.yhbh where 1=1 AND a.ssgs = ? and a.sfrq >?+0 and a.sfrq <= ?+0 AND a.sscbb in (select cbbbm from yh_sjqx where user_id=?) ) group by khbm order by khbm asc ) TMP WHERE ROWNUM <=?) WHERE ROW_ID > ?
- 2026-05-09 12:39:24.177 [XNIO-1 task-1] DEBUG c.t.f.s.m.Y.getPageListByKhbm - ==> Parameters: 1(String), 2026-05-09 00:00:00.0(Timestamp), 2026-05-09 23:59:59.0(Timestamp), 10753(String), 20(Long), 0(Long)
- 2026-05-09 12:39:24.292 [XNIO-1 task-1] DEBUG c.t.f.s.m.Y.getPageListByKhbm - <== Total: 1
- 2026-05-09 12:39:24.319 [XNIO-1 task-1] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - ==> Preparing: SELECT CODE,name,sj,yslx,ssgs,czry,czsj,czxl,nxl,jtbz,jt1_zs,jt1_sj,jt2_zs,jt2_sj,jt3_zs,jt3_sj,jt4_zs,jt4_sj,wsfdj,ljfdj,szyfdj,jtrksl,jtrkjs,bz,isdisabled,xgrq,jtjslx,jtsffs,taxrate FROM BM_SJ ORDER BY czsj ASC
- 2026-05-09 12:39:24.319 [XNIO-1 task-1] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - ==> Parameters:
- 2026-05-09 12:39:24.550 [XNIO-1 task-1] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - <== Total: 21
- 2026-05-09 12:39:24.551 [XNIO-1 task-1] DEBUG c.t.f.s.m.Y.getPageCount - ==> Preparing: select sum(case when nvl(yssf,0)!=0 then yssl else 0 end) zyssl, sum(nvl(yssf,0)) zyssf, sum(nvl(yswsf,0)) zyswsf, sum(nvl(ysljf,0)) zysljf, sum(nvl(ysszyf,0)) zysszyf, sum(nvl(ysecjyf, 0) ) zysecjyf, sum(nvl(ysfjf, 0) ) zysfjf, sum(nvl(ysqt, 0) ) zysqtf, sum(nvl(ysje,0)) zysje, sum(nvl(znj,0)) zznj, sum(nvl(sszje,0)) zsszje, sum(nvl(bcyc,0)) zbcyc, sum(nvl(bckj,0)) zbckj from yy_sspjxx a LEFT JOIN bm_fffs b on a.fffs = b.code LEFT JOIN bm_sflx c on a.sflx = c.code LEFT JOIN (SELECT sj.code, sj.name as sjmc, yslx.name, yslx.code as ysxzbm FROM bm_sj sj LEFT JOIN bm_yslx yslx on sj.yslx = yslx.code ) d on a.sjbm = d.code INNER JOIN yh_khjbxx kh on a.yhbh = kh.yhbh where 1=1 AND a.ssgs = ? and a.sfrq >?+0 and a.sfrq <= ?+0 AND a.sscbb in (select cbbbm from yh_sjqx where user_id=?)
- 2026-05-09 12:39:24.553 [XNIO-1 task-1] DEBUG c.t.f.s.m.Y.getPageCount - ==> Parameters: 1(String), 2026-05-09 00:00:00.0(Timestamp), 2026-05-09 23:59:59.0(Timestamp), 10753(String)
- 2026-05-09 12:39:24.612 [XNIO-1 task-1] DEBUG c.t.f.s.m.Y.getPageCount - <== Total: 1
- 2026-05-09 12:39:24.622 [XNIO-1 task-1] INFO c.t.feesapi.common.LogRecordAspect - =================【getPageList】请求结束==================
- 2026-05-09 12:39:53.552 [XNIO-1 task-2] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/yysspjxx/getPageList/getPageList】请求开始==================
- 2026-05-09 12:39:53.561 [XNIO-1 task-2] DEBUG c.t.f.s.m.Y.getPageList_mpCount - ==> Preparing: SELECT COUNT(*) AS total FROM yy_sspjxx a LEFT JOIN bm_fffs b ON a.fffs = b.code LEFT JOIN bm_sflx c ON a.sflx = c.code LEFT JOIN (SELECT sj.code, sj.name AS sjmc, yslx.name, yslx.code AS ysxzbm FROM bm_sj sj LEFT JOIN bm_yslx yslx ON sj.yslx = yslx.code) d ON a.sjbm = d.code INNER JOIN yh_khjbxx kh ON a.yhbh = kh.yhbh WHERE 1 = 1 AND a.ssgs = ? AND a.sfrq > ? + 0 AND a.sfrq <= ? + 0 AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?)
- 2026-05-09 12:39:53.562 [XNIO-1 task-2] DEBUG c.t.f.s.m.Y.getPageList_mpCount - ==> Parameters: 1(String), 2026-05-09 00:00:00.0(Timestamp), 2026-05-09 23:59:59.0(Timestamp), 10753(String)
- 2026-05-09 12:39:53.623 [XNIO-1 task-2] DEBUG c.t.f.s.m.Y.getPageList_mpCount - <== Total: 1
- 2026-05-09 12:39:53.656 [XNIO-1 task-2] DEBUG c.t.f.s.m.YySspjxxMapper.getPageList - ==> Preparing: SELECT * FROM ( SELECT TMP.*, ROWNUM ROW_ID FROM ( SELECT a.*, b.name fffsmc, c.name sflxmc, d.ysxzbm ysxz, d.name ysxzmc, d.sjmc, kh.yhdz FROM yy_sspjxx a LEFT JOIN bm_fffs b ON a.fffs = b.code LEFT JOIN bm_sflx c ON a.sflx = c.code LEFT JOIN (SELECT sj.code, sj.name AS sjmc, yslx.name, yslx.code AS ysxzbm FROM bm_sj sj LEFT JOIN bm_yslx yslx ON sj.yslx = yslx.code) d ON a.sjbm = d.code INNER JOIN yh_khjbxx kh ON a.yhbh = kh.yhbh WHERE 1 = 1 AND a.ssgs = ? AND a.sfrq > ? + 0 AND a.sfrq <= ? + 0 AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?) ORDER BY sfrq ASC, cwrq ASC, a.yhbh ASC ) TMP WHERE ROWNUM <=?) WHERE ROW_ID > ?
- 2026-05-09 12:39:53.657 [XNIO-1 task-2] DEBUG c.t.f.s.m.YySspjxxMapper.getPageList - ==> Parameters: 1(String), 2026-05-09 00:00:00.0(Timestamp), 2026-05-09 23:59:59.0(Timestamp), 10753(String), 20(Long), 0(Long)
- 2026-05-09 12:39:53.942 [XNIO-1 task-2] DEBUG c.t.f.s.m.YySspjxxMapper.getPageList - <== Total: 20
- 2026-05-09 12:39:53.944 [XNIO-1 task-2] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - ==> Preparing: SELECT CODE,name,sj,yslx,ssgs,czry,czsj,czxl,nxl,jtbz,jt1_zs,jt1_sj,jt2_zs,jt2_sj,jt3_zs,jt3_sj,jt4_zs,jt4_sj,wsfdj,ljfdj,szyfdj,jtrksl,jtrkjs,bz,isdisabled,xgrq,jtjslx,jtsffs,taxrate FROM BM_SJ ORDER BY czsj ASC
- 2026-05-09 12:39:53.945 [XNIO-1 task-2] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - ==> Parameters:
- 2026-05-09 12:39:54.156 [XNIO-1 task-2] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - <== Total: 21
- 2026-05-09 12:39:54.157 [XNIO-1 task-2] DEBUG c.t.f.s.m.Y.getPageCount - ==> Preparing: select sum(case when nvl(yssf,0)!=0 then yssl else 0 end) zyssl, sum(nvl(yssf,0)) zyssf, sum(nvl(yswsf,0)) zyswsf, sum(nvl(ysljf,0)) zysljf, sum(nvl(ysszyf,0)) zysszyf, sum(nvl(ysecjyf, 0) ) zysecjyf, sum(nvl(ysfjf, 0) ) zysfjf, sum(nvl(ysqt, 0) ) zysqtf, sum(nvl(ysje,0)) zysje, sum(nvl(znj,0)) zznj, sum(nvl(sszje,0)) zsszje, sum(nvl(bcyc,0)) zbcyc, sum(nvl(bckj,0)) zbckj from yy_sspjxx a LEFT JOIN bm_fffs b on a.fffs = b.code LEFT JOIN bm_sflx c on a.sflx = c.code LEFT JOIN (SELECT sj.code, sj.name as sjmc, yslx.name, yslx.code as ysxzbm FROM bm_sj sj LEFT JOIN bm_yslx yslx on sj.yslx = yslx.code ) d on a.sjbm = d.code INNER JOIN yh_khjbxx kh on a.yhbh = kh.yhbh where 1=1 AND a.ssgs = ? and a.sfrq >?+0 and a.sfrq <= ?+0 AND a.sscbb in (select cbbbm from yh_sjqx where user_id=?)
- 2026-05-09 12:39:54.158 [XNIO-1 task-2] DEBUG c.t.f.s.m.Y.getPageCount - ==> Parameters: 1(String), 2026-05-09 00:00:00.0(Timestamp), 2026-05-09 23:59:59.0(Timestamp), 10753(String)
- 2026-05-09 12:39:54.246 [XNIO-1 task-2] DEBUG c.t.f.s.m.Y.getPageCount - <== Total: 1
- 2026-05-09 12:39:54.247 [XNIO-1 task-2] INFO c.t.feesapi.common.LogRecordAspect - =================【getPageList】请求结束==================
- 2026-05-09 12:40:04.965 [XNIO-1 task-3] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/yysspjxx/getPageList/getPageList】请求开始==================
- 2026-05-09 12:40:04.974 [XNIO-1 task-3] DEBUG c.t.f.s.m.Y.getPageListByKhbm_mpCount - ==> Preparing: SELECT COUNT(*) FROM (SELECT khbm, max(yhxm) yhxm, max(yhdz) yhdz, sum(CASE WHEN fylx IN ('1', '2') THEN yssl ELSE 0 END) yssl, sum(ysje) ysje, sum(sszje) sszje, sum(yssf) yssf, sum(yswsf) yswsf, sum(ysszyf) ysszyf, sum(ysecjyf) ysecjyf, sum(ysqt) ysqt, sum(ysfjf) ysfjf FROM (SELECT a.*, b.name fffsmc, c.name sflxmc, d.ysxzbm ysxz, d.name ysxzmc, d.sjmc, kh.yhdz FROM yy_sspjxx a LEFT JOIN bm_fffs b ON a.fffs = b.code LEFT JOIN bm_sflx c ON a.sflx = c.code LEFT JOIN (SELECT sj.code, sj.name AS sjmc, yslx.name, yslx.code AS ysxzbm FROM bm_sj sj LEFT JOIN bm_yslx yslx ON sj.yslx = yslx.code) d ON a.sjbm = d.code INNER JOIN yh_khjbxx kh ON a.yhbh = kh.yhbh WHERE 1 = 1 AND a.ssgs = ? AND a.sfrq > ? + 0 AND a.sfrq <= ? + 0 AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?)) GROUP BY khbm ORDER BY khbm ASC) TOTAL
- 2026-05-09 12:40:04.975 [XNIO-1 task-3] DEBUG c.t.f.s.m.Y.getPageListByKhbm_mpCount - ==> Parameters: 1(String), 2026-05-09 00:00:00.0(Timestamp), 2026-05-09 23:59:59.0(Timestamp), 10753(String)
- 2026-05-09 12:40:05.035 [XNIO-1 task-3] DEBUG c.t.f.s.m.Y.getPageListByKhbm_mpCount - <== Total: 1
- 2026-05-09 12:40:05.036 [XNIO-1 task-3] DEBUG c.t.f.s.m.Y.getPageListByKhbm - ==> Preparing: SELECT * FROM ( SELECT TMP.*, ROWNUM ROW_ID FROM ( select khbm,max(yhxm) yhxm,max(yhdz) yhdz,sum(case when fylx in ('1','2') then yssl else 0 end ) yssl,sum(ysje) ysje,sum(sszje) sszje,sum(yssf) yssf,sum(yswsf) yswsf,sum(ysszyf) ysszyf,sum(ysecjyf) ysecjyf,sum(ysqt) ysqt,sum(ysfjf) ysfjf from ( SELECT a.*, b.name fffsmc, c.name sflxmc,d.ysxzbm ysxz, d.name ysxzmc,d.sjmc,kh.yhdz FROM yy_sspjxx a LEFT JOIN bm_fffs b on a.fffs = b.code LEFT JOIN bm_sflx c on a.sflx = c.code LEFT JOIN (SELECT sj.code, sj.name as sjmc, yslx.name, yslx.code as ysxzbm FROM bm_sj sj LEFT JOIN bm_yslx yslx on sj.yslx = yslx.code ) d on a.sjbm = d.code INNER JOIN yh_khjbxx kh on a.yhbh = kh.yhbh where 1=1 AND a.ssgs = ? and a.sfrq >?+0 and a.sfrq <= ?+0 AND a.sscbb in (select cbbbm from yh_sjqx where user_id=?) ) group by khbm order by khbm asc ) TMP WHERE ROWNUM <=?) WHERE ROW_ID > ?
- 2026-05-09 12:40:05.036 [XNIO-1 task-3] DEBUG c.t.f.s.m.Y.getPageListByKhbm - ==> Parameters: 1(String), 2026-05-09 00:00:00.0(Timestamp), 2026-05-09 23:59:59.0(Timestamp), 10753(String), 20(Long), 0(Long)
- 2026-05-09 12:40:05.102 [XNIO-1 task-3] DEBUG c.t.f.s.m.Y.getPageListByKhbm - <== Total: 1
- 2026-05-09 12:40:05.103 [XNIO-1 task-3] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - ==> Preparing: SELECT CODE,name,sj,yslx,ssgs,czry,czsj,czxl,nxl,jtbz,jt1_zs,jt1_sj,jt2_zs,jt2_sj,jt3_zs,jt3_sj,jt4_zs,jt4_sj,wsfdj,ljfdj,szyfdj,jtrksl,jtrkjs,bz,isdisabled,xgrq,jtjslx,jtsffs,taxrate FROM BM_SJ ORDER BY czsj ASC
- 2026-05-09 12:40:05.103 [XNIO-1 task-3] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - ==> Parameters:
- 2026-05-09 12:40:05.271 [XNIO-1 task-3] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - <== Total: 21
- 2026-05-09 12:40:05.273 [XNIO-1 task-3] DEBUG c.t.f.s.m.Y.getPageCount - ==> Preparing: select sum(case when nvl(yssf,0)!=0 then yssl else 0 end) zyssl, sum(nvl(yssf,0)) zyssf, sum(nvl(yswsf,0)) zyswsf, sum(nvl(ysljf,0)) zysljf, sum(nvl(ysszyf,0)) zysszyf, sum(nvl(ysecjyf, 0) ) zysecjyf, sum(nvl(ysfjf, 0) ) zysfjf, sum(nvl(ysqt, 0) ) zysqtf, sum(nvl(ysje,0)) zysje, sum(nvl(znj,0)) zznj, sum(nvl(sszje,0)) zsszje, sum(nvl(bcyc,0)) zbcyc, sum(nvl(bckj,0)) zbckj from yy_sspjxx a LEFT JOIN bm_fffs b on a.fffs = b.code LEFT JOIN bm_sflx c on a.sflx = c.code LEFT JOIN (SELECT sj.code, sj.name as sjmc, yslx.name, yslx.code as ysxzbm FROM bm_sj sj LEFT JOIN bm_yslx yslx on sj.yslx = yslx.code ) d on a.sjbm = d.code INNER JOIN yh_khjbxx kh on a.yhbh = kh.yhbh where 1=1 AND a.ssgs = ? and a.sfrq >?+0 and a.sfrq <= ?+0 AND a.sscbb in (select cbbbm from yh_sjqx where user_id=?)
- 2026-05-09 12:40:05.273 [XNIO-1 task-3] DEBUG c.t.f.s.m.Y.getPageCount - ==> Parameters: 1(String), 2026-05-09 00:00:00.0(Timestamp), 2026-05-09 23:59:59.0(Timestamp), 10753(String)
- 2026-05-09 12:40:05.343 [XNIO-1 task-3] DEBUG c.t.f.s.m.Y.getPageCount - <== Total: 1
- 2026-05-09 12:40:05.344 [XNIO-1 task-3] INFO c.t.feesapi.common.LogRecordAspect - =================【getPageList】请求结束==================
- 2026-05-09 12:44:43.826 [XNIO-1 task-4] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/yysspjxx/getPageList/getPageList】请求开始==================
- 2026-05-09 12:44:43.899 [XNIO-1 task-4] DEBUG c.t.f.s.m.Y.getPageListByKhbm_mpCount - ==> Preparing: SELECT COUNT(*) FROM (SELECT khbm, max(yhxm) yhxm, max(yhdz) yhdz, sum(CASE WHEN fylx IN ('1', '2') THEN yssl ELSE 0 END) yssl, sum(ysje) ysje, sum(sszje) sszje, sum(yssf) yssf, sum(yswsf) yswsf, sum(ysszyf) ysszyf, sum(ysecjyf) ysecjyf, sum(ysqt) ysqt, sum(ysfjf) ysfjf FROM (SELECT a.*, b.name fffsmc, c.name sflxmc, d.ysxzbm ysxz, d.name ysxzmc, d.sjmc, kh.yhdz FROM yy_sspjxx a LEFT JOIN bm_fffs b ON a.fffs = b.code LEFT JOIN bm_sflx c ON a.sflx = c.code LEFT JOIN (SELECT sj.code, sj.name AS sjmc, yslx.name, yslx.code AS ysxzbm FROM bm_sj sj LEFT JOIN bm_yslx yslx ON sj.yslx = yslx.code) d ON a.sjbm = d.code INNER JOIN yh_khjbxx kh ON a.yhbh = kh.yhbh WHERE 1 = 1 AND a.ssgs = ? AND a.sfrq > ? + 0 AND a.sfrq <= ? + 0 AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?)) GROUP BY khbm ORDER BY khbm ASC) TOTAL
- 2026-05-09 12:44:43.899 [XNIO-1 task-4] DEBUG c.t.f.s.m.Y.getPageListByKhbm_mpCount - ==> Parameters: 1(String), 2026-05-09 00:00:00.0(Timestamp), 2026-05-09 23:59:59.0(Timestamp), 10753(String)
- 2026-05-09 12:44:43.960 [XNIO-1 task-4] DEBUG c.t.f.s.m.Y.getPageListByKhbm_mpCount - <== Total: 1
- 2026-05-09 12:44:43.961 [XNIO-1 task-4] DEBUG c.t.f.s.m.Y.getPageListByKhbm - ==> Preparing: SELECT * FROM ( SELECT TMP.*, ROWNUM ROW_ID FROM ( select khbm,max(yhxm) yhxm,max(yhdz) yhdz,sum(case when fylx in ('1','2') then yssl else 0 end ) yssl,sum(ysje) ysje,sum(sszje) sszje,sum(yssf) yssf,sum(yswsf) yswsf,sum(ysszyf) ysszyf,sum(ysecjyf) ysecjyf,sum(ysqt) ysqt,sum(ysfjf) ysfjf from ( SELECT a.*, b.name fffsmc, c.name sflxmc,d.ysxzbm ysxz, d.name ysxzmc,d.sjmc,kh.yhdz FROM yy_sspjxx a LEFT JOIN bm_fffs b on a.fffs = b.code LEFT JOIN bm_sflx c on a.sflx = c.code LEFT JOIN (SELECT sj.code, sj.name as sjmc, yslx.name, yslx.code as ysxzbm FROM bm_sj sj LEFT JOIN bm_yslx yslx on sj.yslx = yslx.code ) d on a.sjbm = d.code INNER JOIN yh_khjbxx kh on a.yhbh = kh.yhbh where 1=1 AND a.ssgs = ? and a.sfrq >?+0 and a.sfrq <= ?+0 AND a.sscbb in (select cbbbm from yh_sjqx where user_id=?) ) group by khbm order by khbm asc ) TMP WHERE ROWNUM <=?) WHERE ROW_ID > ?
- 2026-05-09 12:44:43.961 [XNIO-1 task-4] DEBUG c.t.f.s.m.Y.getPageListByKhbm - ==> Parameters: 1(String), 2026-05-09 00:00:00.0(Timestamp), 2026-05-09 23:59:59.0(Timestamp), 10753(String), 20(Long), 0(Long)
- 2026-05-09 12:44:44.031 [XNIO-1 task-4] DEBUG c.t.f.s.m.Y.getPageListByKhbm - <== Total: 1
- 2026-05-09 12:44:44.033 [XNIO-1 task-4] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - ==> Preparing: SELECT CODE,name,sj,yslx,ssgs,czry,czsj,czxl,nxl,jtbz,jt1_zs,jt1_sj,jt2_zs,jt2_sj,jt3_zs,jt3_sj,jt4_zs,jt4_sj,wsfdj,ljfdj,szyfdj,jtrksl,jtrkjs,bz,isdisabled,xgrq,jtjslx,jtsffs,taxrate FROM BM_SJ ORDER BY czsj ASC
- 2026-05-09 12:44:44.033 [XNIO-1 task-4] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - ==> Parameters:
- 2026-05-09 12:44:44.199 [XNIO-1 task-4] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - <== Total: 21
- 2026-05-09 12:44:44.200 [XNIO-1 task-4] DEBUG c.t.f.s.m.Y.getPageCount - ==> Preparing: select sum(case when nvl(yssf,0)!=0 then yssl else 0 end) zyssl, sum(nvl(yssf,0)) zyssf, sum(nvl(yswsf,0)) zyswsf, sum(nvl(ysljf,0)) zysljf, sum(nvl(ysszyf,0)) zysszyf, sum(nvl(ysecjyf, 0) ) zysecjyf, sum(nvl(ysfjf, 0) ) zysfjf, sum(nvl(ysqt, 0) ) zysqtf, sum(nvl(ysje,0)) zysje, sum(nvl(znj,0)) zznj, sum(nvl(sszje,0)) zsszje, sum(nvl(bcyc,0)) zbcyc, sum(nvl(bckj,0)) zbckj from yy_sspjxx a LEFT JOIN bm_fffs b on a.fffs = b.code LEFT JOIN bm_sflx c on a.sflx = c.code LEFT JOIN (SELECT sj.code, sj.name as sjmc, yslx.name, yslx.code as ysxzbm FROM bm_sj sj LEFT JOIN bm_yslx yslx on sj.yslx = yslx.code ) d on a.sjbm = d.code INNER JOIN yh_khjbxx kh on a.yhbh = kh.yhbh where 1=1 AND a.ssgs = ? and a.sfrq >?+0 and a.sfrq <= ?+0 AND a.sscbb in (select cbbbm from yh_sjqx where user_id=?)
- 2026-05-09 12:44:44.201 [XNIO-1 task-4] DEBUG c.t.f.s.m.Y.getPageCount - ==> Parameters: 1(String), 2026-05-09 00:00:00.0(Timestamp), 2026-05-09 23:59:59.0(Timestamp), 10753(String)
- 2026-05-09 12:44:44.259 [XNIO-1 task-4] DEBUG c.t.f.s.m.Y.getPageCount - <== Total: 1
- 2026-05-09 12:44:44.259 [XNIO-1 task-4] INFO c.t.feesapi.common.LogRecordAspect - =================【getPageList】请求结束==================
- 2026-05-09 12:45:34.040 [XNIO-1 task-5] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/yysspjxx/getPageList/getPageList】请求开始==================
- 2026-05-09 12:45:34.044 [XNIO-1 task-5] DEBUG c.t.f.s.m.Y.getPageListByKhbm_mpCount - ==> Preparing: SELECT COUNT(*) FROM (SELECT khbm, max(yhxm) yhxm, max(yhdz) yhdz, sum(CASE WHEN fylx IN ('1', '2') THEN yssl ELSE 0 END) yssl, sum(ysje) ysje, sum(sszje) sszje, sum(yssf) yssf, sum(yswsf) yswsf, sum(ysszyf) ysszyf, sum(ysecjyf) ysecjyf, sum(ysqt) ysqt, sum(ysfjf) ysfjf FROM (SELECT a.*, b.name fffsmc, c.name sflxmc, d.ysxzbm ysxz, d.name ysxzmc, d.sjmc, kh.yhdz FROM yy_sspjxx a LEFT JOIN bm_fffs b ON a.fffs = b.code LEFT JOIN bm_sflx c ON a.sflx = c.code LEFT JOIN (SELECT sj.code, sj.name AS sjmc, yslx.name, yslx.code AS ysxzbm FROM bm_sj sj LEFT JOIN bm_yslx yslx ON sj.yslx = yslx.code) d ON a.sjbm = d.code INNER JOIN yh_khjbxx kh ON a.yhbh = kh.yhbh WHERE 1 = 1 AND a.ssgs = ? AND a.sfrq > ? + 0 AND a.sfrq <= ? + 0 AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?)) GROUP BY khbm ORDER BY khbm ASC) TOTAL
- 2026-05-09 12:45:34.044 [XNIO-1 task-5] DEBUG c.t.f.s.m.Y.getPageListByKhbm_mpCount - ==> Parameters: 1(String), 2026-05-09 00:00:00.0(Timestamp), 2026-05-09 23:59:59.0(Timestamp), 10753(String)
- 2026-05-09 12:45:34.107 [XNIO-1 task-5] DEBUG c.t.f.s.m.Y.getPageListByKhbm_mpCount - <== Total: 1
- 2026-05-09 12:45:34.108 [XNIO-1 task-5] DEBUG c.t.f.s.m.Y.getPageListByKhbm - ==> Preparing: SELECT * FROM ( SELECT TMP.*, ROWNUM ROW_ID FROM ( select khbm,max(yhxm) yhxm,max(yhdz) yhdz,sum(case when fylx in ('1','2') then yssl else 0 end ) yssl,sum(ysje) ysje,sum(sszje) sszje,sum(yssf) yssf,sum(yswsf) yswsf,sum(ysszyf) ysszyf,sum(ysecjyf) ysecjyf,sum(ysqt) ysqt,sum(ysfjf) ysfjf from ( SELECT a.*, b.name fffsmc, c.name sflxmc,d.ysxzbm ysxz, d.name ysxzmc,d.sjmc,kh.yhdz FROM yy_sspjxx a LEFT JOIN bm_fffs b on a.fffs = b.code LEFT JOIN bm_sflx c on a.sflx = c.code LEFT JOIN (SELECT sj.code, sj.name as sjmc, yslx.name, yslx.code as ysxzbm FROM bm_sj sj LEFT JOIN bm_yslx yslx on sj.yslx = yslx.code ) d on a.sjbm = d.code INNER JOIN yh_khjbxx kh on a.yhbh = kh.yhbh where 1=1 AND a.ssgs = ? and a.sfrq >?+0 and a.sfrq <= ?+0 AND a.sscbb in (select cbbbm from yh_sjqx where user_id=?) ) group by khbm order by khbm asc ) TMP WHERE ROWNUM <=?) WHERE ROW_ID > ?
- 2026-05-09 12:45:34.108 [XNIO-1 task-5] DEBUG c.t.f.s.m.Y.getPageListByKhbm - ==> Parameters: 1(String), 2026-05-09 00:00:00.0(Timestamp), 2026-05-09 23:59:59.0(Timestamp), 10753(String), 20(Long), 0(Long)
- 2026-05-09 12:45:34.166 [XNIO-1 task-5] DEBUG c.t.f.s.m.Y.getPageListByKhbm - <== Total: 1
- 2026-05-09 12:45:34.167 [XNIO-1 task-5] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - ==> Preparing: SELECT CODE,name,sj,yslx,ssgs,czry,czsj,czxl,nxl,jtbz,jt1_zs,jt1_sj,jt2_zs,jt2_sj,jt3_zs,jt3_sj,jt4_zs,jt4_sj,wsfdj,ljfdj,szyfdj,jtrksl,jtrkjs,bz,isdisabled,xgrq,jtjslx,jtsffs,taxrate FROM BM_SJ ORDER BY czsj ASC
- 2026-05-09 12:45:34.167 [XNIO-1 task-5] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - ==> Parameters:
- 2026-05-09 12:45:34.341 [XNIO-1 task-5] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - <== Total: 21
- 2026-05-09 12:45:34.342 [XNIO-1 task-5] DEBUG c.t.f.s.m.Y.getPageCount - ==> Preparing: select sum(case when nvl(yssf,0)!=0 then yssl else 0 end) zyssl, sum(nvl(yssf,0)) zyssf, sum(nvl(yswsf,0)) zyswsf, sum(nvl(ysljf,0)) zysljf, sum(nvl(ysszyf,0)) zysszyf, sum(nvl(ysecjyf, 0) ) zysecjyf, sum(nvl(ysfjf, 0) ) zysfjf, sum(nvl(ysqt, 0) ) zysqtf, sum(nvl(ysje,0)) zysje, sum(nvl(znj,0)) zznj, sum(nvl(sszje,0)) zsszje, sum(nvl(bcyc,0)) zbcyc, sum(nvl(bckj,0)) zbckj from yy_sspjxx a LEFT JOIN bm_fffs b on a.fffs = b.code LEFT JOIN bm_sflx c on a.sflx = c.code LEFT JOIN (SELECT sj.code, sj.name as sjmc, yslx.name, yslx.code as ysxzbm FROM bm_sj sj LEFT JOIN bm_yslx yslx on sj.yslx = yslx.code ) d on a.sjbm = d.code INNER JOIN yh_khjbxx kh on a.yhbh = kh.yhbh where 1=1 AND a.ssgs = ? and a.sfrq >?+0 and a.sfrq <= ?+0 AND a.sscbb in (select cbbbm from yh_sjqx where user_id=?)
- 2026-05-09 12:45:34.342 [XNIO-1 task-5] DEBUG c.t.f.s.m.Y.getPageCount - ==> Parameters: 1(String), 2026-05-09 00:00:00.0(Timestamp), 2026-05-09 23:59:59.0(Timestamp), 10753(String)
- 2026-05-09 12:45:34.411 [XNIO-1 task-5] DEBUG c.t.f.s.m.Y.getPageCount - <== Total: 1
- 2026-05-09 12:45:34.412 [XNIO-1 task-5] INFO c.t.feesapi.common.LogRecordAspect - =================【getPageList】请求结束==================
- 2026-05-09 12:49:20.759 [XNIO-1 task-6] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/yysspjxx/getPageList/getPageList】请求开始==================
- 2026-05-09 12:49:20.819 [XNIO-1 task-6] DEBUG c.t.f.s.m.Y.getPageListByKhbm_mpCount - ==> Preparing: SELECT COUNT(*) FROM (SELECT khbm, max(yhxm) yhxm, max(yhdz) yhdz, sum(CASE WHEN fylx IN ('1', '2') THEN yssl ELSE 0 END) yssl, sum(ysje) ysje, sum(sszje) sszje, sum(yssf) yssf, sum(yswsf) yswsf, sum(ysszyf) ysszyf, sum(ysecjyf) ysecjyf, sum(ysqt) ysqt, sum(ysfjf) ysfjf FROM (SELECT a.*, b.name fffsmc, c.name sflxmc, d.ysxzbm ysxz, d.name ysxzmc, d.sjmc, kh.yhdz FROM yy_sspjxx a LEFT JOIN bm_fffs b ON a.fffs = b.code LEFT JOIN bm_sflx c ON a.sflx = c.code LEFT JOIN (SELECT sj.code, sj.name AS sjmc, yslx.name, yslx.code AS ysxzbm FROM bm_sj sj LEFT JOIN bm_yslx yslx ON sj.yslx = yslx.code) d ON a.sjbm = d.code INNER JOIN yh_khjbxx kh ON a.yhbh = kh.yhbh WHERE 1 = 1 AND a.ssgs = ? AND a.sfrq > ? + 0 AND a.sfrq <= ? + 0 AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?) AND a.khbm > ' ') GROUP BY khbm ORDER BY khbm ASC) TOTAL
- 2026-05-09 12:49:20.819 [XNIO-1 task-6] DEBUG c.t.f.s.m.Y.getPageListByKhbm_mpCount - ==> Parameters: 1(String), 2026-05-09 00:00:00.0(Timestamp), 2026-05-09 23:59:59.0(Timestamp), 10753(String)
- 2026-05-09 12:49:20.887 [XNIO-1 task-6] DEBUG c.t.f.s.m.Y.getPageListByKhbm_mpCount - <== Total: 1
- 2026-05-09 12:49:20.888 [XNIO-1 task-6] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - ==> Preparing: SELECT CODE,name,sj,yslx,ssgs,czry,czsj,czxl,nxl,jtbz,jt1_zs,jt1_sj,jt2_zs,jt2_sj,jt3_zs,jt3_sj,jt4_zs,jt4_sj,wsfdj,ljfdj,szyfdj,jtrksl,jtrkjs,bz,isdisabled,xgrq,jtjslx,jtsffs,taxrate FROM BM_SJ ORDER BY czsj ASC
- 2026-05-09 12:49:20.888 [XNIO-1 task-6] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - ==> Parameters:
- 2026-05-09 12:49:21.135 [XNIO-1 task-6] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - <== Total: 21
- 2026-05-09 12:49:21.136 [XNIO-1 task-6] DEBUG c.t.f.s.m.Y.getPageCount - ==> Preparing: select sum(case when nvl(yssf,0)!=0 then yssl else 0 end) zyssl, sum(nvl(yssf,0)) zyssf, sum(nvl(yswsf,0)) zyswsf, sum(nvl(ysljf,0)) zysljf, sum(nvl(ysszyf,0)) zysszyf, sum(nvl(ysecjyf, 0) ) zysecjyf, sum(nvl(ysfjf, 0) ) zysfjf, sum(nvl(ysqt, 0) ) zysqtf, sum(nvl(ysje,0)) zysje, sum(nvl(znj,0)) zznj, sum(nvl(sszje,0)) zsszje, sum(nvl(bcyc,0)) zbcyc, sum(nvl(bckj,0)) zbckj from yy_sspjxx a LEFT JOIN bm_fffs b on a.fffs = b.code LEFT JOIN bm_sflx c on a.sflx = c.code LEFT JOIN (SELECT sj.code, sj.name as sjmc, yslx.name, yslx.code as ysxzbm FROM bm_sj sj LEFT JOIN bm_yslx yslx on sj.yslx = yslx.code ) d on a.sjbm = d.code INNER JOIN yh_khjbxx kh on a.yhbh = kh.yhbh where 1=1 AND a.ssgs = ? and a.sfrq >?+0 and a.sfrq <= ?+0 AND a.sscbb in (select cbbbm from yh_sjqx where user_id=?) AND a.khbm >' '
- 2026-05-09 12:49:21.137 [XNIO-1 task-6] DEBUG c.t.f.s.m.Y.getPageCount - ==> Parameters: 1(String), 2026-05-09 00:00:00.0(Timestamp), 2026-05-09 23:59:59.0(Timestamp), 10753(String)
- 2026-05-09 12:49:21.202 [XNIO-1 task-6] DEBUG c.t.f.s.m.Y.getPageCount - <== Total: 1
- 2026-05-09 12:49:21.203 [XNIO-1 task-6] INFO c.t.feesapi.common.LogRecordAspect - =================【getPageList】请求结束==================
- 2026-05-09 12:49:38.914 [XNIO-1 task-7] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/yysspjxx/getPageList/getPageList】请求开始==================
- 2026-05-09 12:49:38.918 [XNIO-1 task-7] DEBUG c.t.f.s.m.Y.getPageListByKhbm_mpCount - ==> Preparing: SELECT COUNT(*) FROM (SELECT khbm, max(yhxm) yhxm, max(yhdz) yhdz, sum(CASE WHEN fylx IN ('1', '2') THEN yssl ELSE 0 END) yssl, sum(ysje) ysje, sum(sszje) sszje, sum(yssf) yssf, sum(yswsf) yswsf, sum(ysszyf) ysszyf, sum(ysecjyf) ysecjyf, sum(ysqt) ysqt, sum(ysfjf) ysfjf FROM (SELECT a.*, b.name fffsmc, c.name sflxmc, d.ysxzbm ysxz, d.name ysxzmc, d.sjmc, kh.yhdz FROM yy_sspjxx a LEFT JOIN bm_fffs b ON a.fffs = b.code LEFT JOIN bm_sflx c ON a.sflx = c.code LEFT JOIN (SELECT sj.code, sj.name AS sjmc, yslx.name, yslx.code AS ysxzbm FROM bm_sj sj LEFT JOIN bm_yslx yslx ON sj.yslx = yslx.code) d ON a.sjbm = d.code INNER JOIN yh_khjbxx kh ON a.yhbh = kh.yhbh WHERE 1 = 1 AND a.ssgs = ? AND a.sfrq > ? + 0 AND a.sfrq <= ? + 0 AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?) AND a.khbm > ' ') GROUP BY khbm ORDER BY khbm ASC) TOTAL
- 2026-05-09 12:49:38.918 [XNIO-1 task-7] DEBUG c.t.f.s.m.Y.getPageListByKhbm_mpCount - ==> Parameters: 1(String), 2026-04-01 00:00:00.0(Timestamp), 2026-04-30 23:59:59.0(Timestamp), 10753(String)
- 2026-05-09 12:49:39.049 [XNIO-1 task-7] DEBUG c.t.f.s.m.Y.getPageListByKhbm_mpCount - <== Total: 1
- 2026-05-09 12:49:39.050 [XNIO-1 task-7] DEBUG c.t.f.s.m.Y.getPageListByKhbm - ==> Preparing: SELECT * FROM ( SELECT TMP.*, ROWNUM ROW_ID FROM ( select khbm,max(yhxm) yhxm,max(yhdz) yhdz,sum(case when fylx in ('1','2') then yssl else 0 end ) yssl,sum(ysje) ysje,sum(sszje) sszje,sum(yssf) yssf,sum(yswsf) yswsf,sum(ysszyf) ysszyf,sum(ysecjyf) ysecjyf,sum(ysqt) ysqt,sum(ysfjf) ysfjf from ( SELECT a.*, b.name fffsmc, c.name sflxmc,d.ysxzbm ysxz, d.name ysxzmc,d.sjmc,kh.yhdz FROM yy_sspjxx a LEFT JOIN bm_fffs b on a.fffs = b.code LEFT JOIN bm_sflx c on a.sflx = c.code LEFT JOIN (SELECT sj.code, sj.name as sjmc, yslx.name, yslx.code as ysxzbm FROM bm_sj sj LEFT JOIN bm_yslx yslx on sj.yslx = yslx.code ) d on a.sjbm = d.code INNER JOIN yh_khjbxx kh on a.yhbh = kh.yhbh where 1=1 AND a.ssgs = ? and a.sfrq >?+0 and a.sfrq <= ?+0 AND a.sscbb in (select cbbbm from yh_sjqx where user_id=?) AND a.khbm >' ' ) group by khbm order by khbm asc ) TMP WHERE ROWNUM <=?) WHERE ROW_ID > ?
- 2026-05-09 12:49:39.050 [XNIO-1 task-7] DEBUG c.t.f.s.m.Y.getPageListByKhbm - ==> Parameters: 1(String), 2026-04-01 00:00:00.0(Timestamp), 2026-04-30 23:59:59.0(Timestamp), 10753(String), 20(Long), 0(Long)
- 2026-05-09 12:49:39.270 [XNIO-1 task-7] DEBUG c.t.f.s.m.Y.getPageListByKhbm - <== Total: 20
- 2026-05-09 12:49:39.271 [XNIO-1 task-7] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - ==> Preparing: SELECT CODE,name,sj,yslx,ssgs,czry,czsj,czxl,nxl,jtbz,jt1_zs,jt1_sj,jt2_zs,jt2_sj,jt3_zs,jt3_sj,jt4_zs,jt4_sj,wsfdj,ljfdj,szyfdj,jtrksl,jtrkjs,bz,isdisabled,xgrq,jtjslx,jtsffs,taxrate FROM BM_SJ ORDER BY czsj ASC
- 2026-05-09 12:49:39.271 [XNIO-1 task-7] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - ==> Parameters:
- 2026-05-09 12:49:39.452 [XNIO-1 task-7] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - <== Total: 21
- 2026-05-09 12:49:39.454 [XNIO-1 task-7] DEBUG c.t.f.s.m.Y.getPageCount - ==> Preparing: select sum(case when nvl(yssf,0)!=0 then yssl else 0 end) zyssl, sum(nvl(yssf,0)) zyssf, sum(nvl(yswsf,0)) zyswsf, sum(nvl(ysljf,0)) zysljf, sum(nvl(ysszyf,0)) zysszyf, sum(nvl(ysecjyf, 0) ) zysecjyf, sum(nvl(ysfjf, 0) ) zysfjf, sum(nvl(ysqt, 0) ) zysqtf, sum(nvl(ysje,0)) zysje, sum(nvl(znj,0)) zznj, sum(nvl(sszje,0)) zsszje, sum(nvl(bcyc,0)) zbcyc, sum(nvl(bckj,0)) zbckj from yy_sspjxx a LEFT JOIN bm_fffs b on a.fffs = b.code LEFT JOIN bm_sflx c on a.sflx = c.code LEFT JOIN (SELECT sj.code, sj.name as sjmc, yslx.name, yslx.code as ysxzbm FROM bm_sj sj LEFT JOIN bm_yslx yslx on sj.yslx = yslx.code ) d on a.sjbm = d.code INNER JOIN yh_khjbxx kh on a.yhbh = kh.yhbh where 1=1 AND a.ssgs = ? and a.sfrq >?+0 and a.sfrq <= ?+0 AND a.sscbb in (select cbbbm from yh_sjqx where user_id=?) AND a.khbm >' '
- 2026-05-09 12:49:39.454 [XNIO-1 task-7] DEBUG c.t.f.s.m.Y.getPageCount - ==> Parameters: 1(String), 2026-04-01 00:00:00.0(Timestamp), 2026-04-30 23:59:59.0(Timestamp), 10753(String)
- 2026-05-09 12:49:39.540 [XNIO-1 task-7] DEBUG c.t.f.s.m.Y.getPageCount - <== Total: 1
- 2026-05-09 12:49:39.540 [XNIO-1 task-7] INFO c.t.feesapi.common.LogRecordAspect - =================【getPageList】请求结束==================
- 2026-05-09 13:39:28.468 [SpringContextShutdownHook] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'taskScheduler'
- 2026-05-09 13:39:28.850 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registering from Nacos Server now...
- 2026-05-09 13:39:28.892 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registration finished.
- 2026-05-09 13:39:28.904 [SpringContextShutdownHook] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'taskScheduler'
- 2026-05-09 15:30:16.111 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.0.20.Final
- 2026-05-09 15:30:16.428 [background-preinit] WARN o.s.h.c.j.Jackson2ObjectMapperBuilder - For Jackson Kotlin classes support please add "com.fasterxml.jackson.module:jackson-module-kotlin" to the classpath
- 2026-05-09 15:30:17.889 [main] WARN c.a.c.n.c.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[collect-fees-api] & group[DEFAULT_GROUP]
- 2026-05-09 15:30:17.896 [main] WARN c.a.c.n.c.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[collect-fees-api-bd.yaml] & group[DEFAULT_GROUP]
- 2026-05-09 15:30:17.896 [main] INFO o.s.c.b.c.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-collect-fees-api-bd.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-collect-fees-api.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-collect-fees-api,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-yx_config_ftp.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-public_config_redis.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-public_config_oracle.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-public_config_public.yaml,DEFAULT_GROUP'}]
- 2026-05-09 15:30:17.900 [main] INFO com.tofly.feesapi.FeesApiApplication - The following profiles are active: bd
- 2026-05-09 15:30:19.646 [main] WARN o.s.boot.actuate.endpoint.EndpointId - Endpoint ID 'nacos-config' contains invalid characters, please migrate to a valid format.
- 2026-05-09 15:30:19.650 [main] WARN o.s.boot.actuate.endpoint.EndpointId - Endpoint ID 'nacos-discovery' contains invalid characters, please migrate to a valid format.
- 2026-05-09 15:30:19.849 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode!
- 2026-05-09 15:30:19.851 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
- 2026-05-09 15:30:20.132 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 211ms. Found 0 Redis repository interfaces.
- 2026-05-09 15:30:20.208 [main] WARN o.s.boot.actuate.endpoint.EndpointId - Endpoint ID 'service-registry' contains invalid characters, please migrate to a valid format.
- 2026-05-09 15:30:20.292 [main] DEBUG org.apache.ibatis.logging.LogFactory - Logging initialized using 'class org.apache.ibatis.logging.slf4j.Slf4jImpl' adapter.
- 2026-05-09 15:30:20.467 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhBjflFbMapper' and 'com.tofly.feesapi.bjgl.mapper.YhBjflFbMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.467 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhBjflZbMapper' and 'com.tofly.feesapi.bjgl.mapper.YhBjflZbMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.467 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhCbkxxLogMapper' and 'com.tofly.feesapi.bjgl.mapper.YhCbkxxLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.467 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhCbkxxMapper' and 'com.tofly.feesapi.bjgl.mapper.YhCbkxxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.467 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhbglMapper' and 'com.tofly.feesapi.bjgl.mapper.YhbglMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.467 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'ykHbLogMapper' and 'com.tofly.feesapi.bjgl.mapper.YkHbLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.467 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'ykYhbgHbMapper' and 'com.tofly.feesapi.bjgl.mapper.YkYhbgHbMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.467 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmCbbMapper' and 'com.tofly.feesapi.bmgl.mapper.BmCbbMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.467 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmCbfsMapper' and 'com.tofly.feesapi.bmgl.mapper.BmCbfsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.467 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmCblxMapper' and 'com.tofly.feesapi.bmgl.mapper.BmCblxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.468 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmCbplMapper' and 'com.tofly.feesapi.bmgl.mapper.BmCbplMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.468 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmCbpqMapper' and 'com.tofly.feesapi.bmgl.mapper.BmCbpqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.468 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmDbhysyhMapper' and 'com.tofly.feesapi.bmgl.mapper.BmDbhysyhMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.468 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmFffsMapper' and 'com.tofly.feesapi.bmgl.mapper.BmFffsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.468 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmFylxMapper' and 'com.tofly.feesapi.bmgl.mapper.BmFylxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.468 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmGsMapper' and 'com.tofly.feesapi.bmgl.mapper.BmGsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.469 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSblbMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSblbMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.469 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSbsccjMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSbsccjMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.469 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSbxhMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSbxhMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.469 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSearchMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSearchMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.469 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSflxMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSflxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.469 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSfqdMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSfqdMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.469 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSjMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSjMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.469 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSjlsMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSjlsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.469 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmYmjzConfigLsMapper' and 'com.tofly.feesapi.bmgl.mapper.BmYmjzConfigLsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.469 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmYmjzConfigMapper' and 'com.tofly.feesapi.bmgl.mapper.BmYmjzConfigMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.469 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmYslxMapper' and 'com.tofly.feesapi.bmgl.mapper.BmYslxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.469 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'cbbConfigMapper' and 'com.tofly.feesapi.bmgl.mapper.CbbConfigMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.469 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysChildCodeMapper' and 'com.tofly.feesapi.bmgl.mapper.SysChildCodeMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.469 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysParentCodeMapper' and 'com.tofly.feesapi.bmgl.mapper.SysParentCodeMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.469 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyCblrLsMapper' and 'com.tofly.feesapi.cbgl.mapper.YyCblrLsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.469 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyCblrMapper' and 'com.tofly.feesapi.cbgl.mapper.YyCblrMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.470 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbCbDayMapper' and 'com.tofly.feesapi.cbgl.mapper.ZnbCbDayMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.470 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbCbLogMapper' and 'com.tofly.feesapi.cbgl.mapper.ZnbCbLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.470 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbZlLogMapper' and 'com.tofly.feesapi.cbgl.mapper.ZnbZlLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.470 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'commonMapper' and 'com.tofly.feesapi.common.mapper.CommonMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.470 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiFpkjMxMapper' and 'com.tofly.feesapi.dzfp.mapper.EiFpkjMxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.470 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiFpkjRequestMapper' and 'com.tofly.feesapi.dzfp.mapper.EiFpkjRequestMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.470 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiKprpzMapper' and 'com.tofly.feesapi.dzfp.mapper.EiKprpzMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.470 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiSalerConfigMapper' and 'com.tofly.feesapi.dzfp.mapper.EiSalerConfigMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.470 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiSpbmMapper' and 'com.tofly.feesapi.dzfp.mapper.EiSpbmMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.470 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiYkfpLogMapper' and 'com.tofly.feesapi.dzfp.mapper.EiYkfpLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.470 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'htFilesMapper' and 'com.tofly.feesapi.dzht.mapper.HtFilesMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.470 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'htTemplateMapper' and 'com.tofly.feesapi.dzht.mapper.HtTemplateMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.470 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'fileMapper' and 'com.tofly.feesapi.file.mapper.FileMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.470 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'flowMapper' and 'com.tofly.feesapi.flowdb.mapper.FlowMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.470 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyBgLogMapper' and 'com.tofly.feesapi.mxcx.mapper.YyBgLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.470 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bankDsdzhzMapper' and 'com.tofly.feesapi.sfds.mapper.BankDsdzhzMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.470 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bankDsdzxxMapper' and 'com.tofly.feesapi.sfds.mapper.BankDsdzxxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.470 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'plsfkhxxMapper' and 'com.tofly.feesapi.sfgl.mapper.PlsfkhxxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.470 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyPjbhMapper' and 'com.tofly.feesapi.sfgl.mapper.YyPjbhMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.470 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyQfmxCzlsMapper' and 'com.tofly.feesapi.sfgl.mapper.YyQfmxCzlsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.470 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyQfmxDzmxMapper' and 'com.tofly.feesapi.sfgl.mapper.YyQfmxDzmxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.470 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyQfmxGdMapper' and 'com.tofly.feesapi.sfgl.mapper.YyQfmxGdMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.470 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyQfmxMapper' and 'com.tofly.feesapi.sfgl.mapper.YyQfmxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.470 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yySspjxxMapper' and 'com.tofly.feesapi.sfgl.mapper.YySspjxxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.470 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yySspjxxReportMapper' and 'com.tofly.feesapi.sfgl.mapper.YySspjxxReportMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.470 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyWyjjmrqMapper' and 'com.tofly.feesapi.sfgl.mapper.YyWyjjmrqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.470 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyWyjtzMapper' and 'com.tofly.feesapi.sfgl.mapper.YyWyjtzMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.470 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbCsjsLogMapper' and 'com.tofly.feesapi.sfgl.mapper.ZnbCsjsLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.470 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'smsMessageMapper' and 'com.tofly.feesapi.sms.mapper.SmsMessageMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.470 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'smsTxlxMapper' and 'com.tofly.feesapi.sms.mapper.SmsTxlxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.470 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'companyMapper' and 'com.tofly.feesapi.udb.mapper.CompanyMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.470 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.tofly.feesapi.udb.mapper.UserMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.470 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userRoleMapper' and 'com.tofly.feesapi.udb.mapper.UserRoleMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.470 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxDtbmMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxDtbmMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.470 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxFwtzMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxFwtzMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.470 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxMessageMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxMessageMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.470 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxTokenMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxTokenMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.471 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxTstzMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxTstzMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.471 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxUserLsMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxUserLsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.471 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxUserMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxUserMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.471 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxYwxzMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxYwxzMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.471 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxYwxzbmMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxYwxzbmMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.471 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxBtsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxBtsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.471 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxBzsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxBzsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.471 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxDbsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxDbsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.471 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxGhsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxGhsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.471 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxGsdtMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxGsdtMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.471 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxHfsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxHfsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.471 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxLwsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxLwsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.471 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxLxdhsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxLxdhsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.471 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxRkssqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxRkssqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.471 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxWdMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxWdMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.471 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxWdbmMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxWdbmMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.471 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxWzjbsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxWzjbsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.471 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxXbsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxXbsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.471 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxXhsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxXhsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.471 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'paySelectMapper' and 'com.tofly.feesapi.wxgl.wechatpay.mapper.PaySelectMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.472 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysGdcsbMapper' and 'com.tofly.feesapi.xtgl.mapper.SysGdcsbMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.472 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'syscommlogMapper' and 'com.tofly.feesapi.xtgl.mapper.SyscommlogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.472 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhBtLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhBtLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.472 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhFfgxMapper' and 'com.tofly.feesapi.yhgl.mapper.YhFfgxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.472 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhGhLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhGhLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.472 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhGroupAccountsMapper' and 'com.tofly.feesapi.yhgl.mapper.YhGroupAccountsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.472 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhGroupMapper' and 'com.tofly.feesapi.yhgl.mapper.YhGroupMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.472 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhHfysLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhHfysLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.472 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhKhjbxxDbhlsMapper' and 'com.tofly.feesapi.yhgl.mapper.YhKhjbxxDbhlsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.472 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhKhjbxxLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhKhjbxxLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.472 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhKhjbxxMapper' and 'com.tofly.feesapi.yhgl.mapper.YhKhjbxxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.472 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhXzbgLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhXzbgLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.472 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhhLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhhLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.472 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhsjqxMapper' and 'com.tofly.feesapi.yhgl.mapper.YhsjqxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.472 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyZjzhMapper' and 'com.tofly.feesapi.yhgl.mapper.YyZjzhMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.472 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbDaLogMapper' and 'com.tofly.feesapi.znbgl.mapper.ZnbDaLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.472 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbYhdaMapper' and 'com.tofly.feesapi.znbgl.mapper.ZnbYhdaMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 15:30:20.472 [main] WARN o.m.s.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.tofly.feesapi.**.mapper]' package. Please check your configuration.
- 2026-05-09 15:30:20.567 [main] INFO o.s.cloud.context.scope.GenericScope - BeanFactory id=6ba9fcc8-98cb-35e6-8547-52fc325bd065
- 2026-05-09 15:30:20.616 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.tofly.feesapi.common.feign.UserClient' of type [org.springframework.cloud.openfeign.FeignClientFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-05-09 15:30:20.872 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.datasource.dynamic-com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-05-09 15:30:20.881 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$f9843c9f] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-05-09 15:30:20.895 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'dsProcessor' of type [com.baomidou.dynamic.datasource.processor.DsHeaderProcessor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-05-09 15:30:20.921 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@4b28a7bf' of type [org.springframework.security.oauth2.provider.expression.OAuth2MethodSecurityExpressionHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-05-09 15:30:20.926 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'methodSecurityMetadataSource' of type [org.springframework.security.access.method.DelegatingMethodSecurityMetadataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-05-09 15:30:21.166 [main] WARN io.undertow.websockets.jsr - UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
- 2026-05-09 15:30:21.196 [main] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
- 2026-05-09 15:30:21.196 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3281 ms
- 2026-05-09 15:30:28.589 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1,master} inited
- 2026-05-09 15:30:29.906 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-2,udb} inited
- 2026-05-09 15:30:31.391 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-3,flowDB} inited
- 2026-05-09 15:30:31.391 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [udb] success
- 2026-05-09 15:30:31.391 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [flowDB] success
- 2026-05-09 15:30:31.391 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
- 2026-05-09 15:30:31.391 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [3] datasource,primary datasource named [master]
- 2026-05-09 15:30:32.820 [main] WARN c.b.m.core.injector.AbstractMethod - [com.tofly.feesapi.bmgl.mapper.SysParentCodeMapper.selectCount] Has been loaded by XML or SqlProvider or Mybatis's Annotation, so ignoring this injection for [class com.baomidou.mybatisplus.core.injector.methods.SelectCount]
- 2026-05-09 15:30:33.161 [main] WARN c.b.m.core.injector.AbstractMethod - [com.tofly.feesapi.flowdb.mapper.FlowMapper.updateById] Has been loaded by XML or SqlProvider or Mybatis's Annotation, so ignoring this injection for [class com.baomidou.mybatisplus.core.injector.methods.UpdateById]
- 2026-05-09 15:30:34.009 [main] WARN c.b.m.core.metadata.TableInfoHelper - Can not find table primary key in Class: "com.tofly.feesapi.wxgl.wechatpay.entity.PaySelect".
- 2026-05-09 15:30:34.009 [main] WARN c.b.m.c.injector.DefaultSqlInjector - class com.tofly.feesapi.wxgl.wechatpay.entity.PaySelect ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method.
- 2026-05-09 15:30:34.022 [main] WARN c.b.m.core.metadata.TableInfoHelper - Can not find table primary key in Class: "com.tofly.feesapi.xtgl.entity.SysGdcsb".
- 2026-05-09 15:30:34.022 [main] WARN c.b.m.c.injector.DefaultSqlInjector - class com.tofly.feesapi.xtgl.entity.SysGdcsb ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method.
- 2026-05-09 15:30:38.563 [main] INFO org.redisson.Version - Redisson 3.23.2
- 2026-05-09 15:30:39.379 [redisson-netty-2-4] INFO o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 127.0.0.1/127.0.0.1:6379
- 2026-05-09 15:30:39.423 [redisson-netty-2-19] INFO o.r.c.pool.MasterConnectionPool - 24 connections initialized for 127.0.0.1/127.0.0.1:6379
- 2026-05-09 15:30:46.852 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
- 2026-05-09 15:30:47.017 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 19 endpoint(s) beneath base path '/actuator'
- 2026-05-09 15:30:47.114 [main] INFO s.d.s.w.WebMvcPropertySourcedRequestMappingHandlerMapping - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
- 2026-05-09 15:30:47.287 [main] INFO c.n.c.sources.URLConfigurationSource - URLs to be used as dynamic configuration source: [file:/D:/work/tf/%e5%b1%b1%e4%b8%9c%e8%8e%b1%e9%98%b3%e6%b0%b4%e5%8f%b8/%e8%8e%b1%e9%98%b3%e6%99%ba%e6%85%a7%e6%b0%b4%e5%8a%a1JAVA%e8%90%a5%e9%94%80/20260403/lywebmis/collect_fees_ly_api/fees-ly-api/target/classes/config.properties]
- 2026-05-09 15:30:47.295 [main] INFO c.n.c.sources.URLConfigurationSource - URLs to be used as dynamic configuration source: [file:/D:/work/tf/%e5%b1%b1%e4%b8%9c%e8%8e%b1%e9%98%b3%e6%b0%b4%e5%8f%b8/%e8%8e%b1%e9%98%b3%e6%99%ba%e6%85%a7%e6%b0%b4%e5%8a%a1JAVA%e8%90%a5%e9%94%80/20260403/lywebmis/collect_fees_ly_api/fees-ly-api/target/classes/config.properties]
- 2026-05-09 15:30:47.552 [main] INFO o.s.s.c.ThreadPoolTaskScheduler - Initializing ExecutorService 'taskScheduler'
- 2026-05-09 15:30:47.761 [main] INFO o.s.b.a.s.s.UserDetailsServiceAutoConfiguration -
- Using generated security password: 7fcee511-f776-496f-80e4-4db46cb88a08
- 2026-05-09 15:30:47.872 [main] INFO o.s.s.web.DefaultSecurityFilterChain - Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@a8e649e, org.springframework.security.web.context.SecurityContextPersistenceFilter@4f1fb8fc, org.springframework.security.web.header.HeaderWriterFilter@60e2b6e3, org.springframework.security.web.authentication.logout.LogoutFilter@23faae85, org.springframework.security.oauth2.provider.authentication.OAuth2AuthenticationProcessingFilter@7ff48cdc, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@61427cd3, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@3f774d60, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@7802fc4e, org.springframework.security.web.session.SessionManagementFilter@515d6c9f, org.springframework.security.web.access.ExceptionTranslationFilter@3d8c499a, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@4e216b7e]
- 2026-05-09 15:30:49.306 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
- 2026-05-09 15:30:49.407 [main] WARN o.s.c.s.o.SpringCloudSecurityAutoConfiguration - All Spring Cloud Security modules and starters are deprecated. They will be moved to individual projects in the next major release.
- 2026-05-09 15:30:49.543 [main] INFO s.d.s.w.p.DocumentationPluginsBootstrapper - Documentation plugins bootstrapped
- 2026-05-09 15:30:49.545 [main] INFO s.d.s.w.p.DocumentationPluginsBootstrapper - Found 1 custom documentation plugin(s)
- 2026-05-09 15:30:49.674 [main] INFO s.d.s.w.s.ApiListingReferenceScanner - Scanning for api listing references
- 2026-05-09 15:30:50.042 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_1
- 2026-05-09 15:30:50.046 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_1
- 2026-05-09 15:30:50.047 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_1
- 2026-05-09 15:30:50.047 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_1
- 2026-05-09 15:30:50.052 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_1
- 2026-05-09 15:30:50.053 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_1
- 2026-05-09 15:30:50.071 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: addCustomerUsingPOST_1
- 2026-05-09 15:30:50.072 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: deleteCustomerUsingPOST_1
- 2026-05-09 15:30:50.073 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getBindCustomerUsingGET_1
- 2026-05-09 15:30:50.074 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: selectCustomerUsingGET_1
- 2026-05-09 15:30:50.075 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getBindCustomerAndQfUsingGET_1
- 2026-05-09 15:30:50.076 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerBasicInFoUsingGET_1
- 2026-05-09 15:30:50.077 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerChargeInFoUsingGET_1
- 2026-05-09 15:30:50.077 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerInFoUsingGET_1
- 2026-05-09 15:30:50.078 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerQfInFoUsingGET_1
- 2026-05-09 15:30:50.079 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerReadMeterInFoUsingGET_1
- 2026-05-09 15:30:50.089 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_2
- 2026-05-09 15:30:50.111 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_2
- 2026-05-09 15:30:50.113 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_2
- 2026-05-09 15:30:50.114 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_2
- 2026-05-09 15:30:50.118 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_2
- 2026-05-09 15:30:50.119 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_2
- 2026-05-09 15:30:50.136 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_3
- 2026-05-09 15:30:50.137 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_3
- 2026-05-09 15:30:50.138 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_3
- 2026-05-09 15:30:50.141 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_3
- 2026-05-09 15:30:50.142 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_3
- 2026-05-09 15:30:50.148 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_3
- 2026-05-09 15:30:50.154 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_4
- 2026-05-09 15:30:50.155 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_4
- 2026-05-09 15:30:50.155 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_4
- 2026-05-09 15:30:50.158 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_4
- 2026-05-09 15:30:50.158 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_4
- 2026-05-09 15:30:50.160 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_5
- 2026-05-09 15:30:50.161 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_5
- 2026-05-09 15:30:50.162 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_5
- 2026-05-09 15:30:50.164 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_5
- 2026-05-09 15:30:50.165 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_5
- 2026-05-09 15:30:50.172 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_4
- 2026-05-09 15:30:50.178 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_6
- 2026-05-09 15:30:50.184 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_5
- 2026-05-09 15:30:50.185 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_6
- 2026-05-09 15:30:50.185 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_6
- 2026-05-09 15:30:50.188 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_6
- 2026-05-09 15:30:50.188 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_6
- 2026-05-09 15:30:50.191 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_1
- 2026-05-09 15:30:50.196 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_7
- 2026-05-09 15:30:50.197 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_7
- 2026-05-09 15:30:50.197 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_7
- 2026-05-09 15:30:50.201 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_7
- 2026-05-09 15:30:50.201 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_7
- 2026-05-09 15:30:50.205 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_8
- 2026-05-09 15:30:50.206 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getFffsListUsingGET_1
- 2026-05-09 15:30:50.207 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_8
- 2026-05-09 15:30:50.208 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_9
- 2026-05-09 15:30:50.210 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_8
- 2026-05-09 15:30:50.211 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_8
- 2026-05-09 15:30:50.216 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_2
- 2026-05-09 15:30:50.220 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_9
- 2026-05-09 15:30:50.222 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_10
- 2026-05-09 15:30:50.223 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_11
- 2026-05-09 15:30:50.225 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_9
- 2026-05-09 15:30:50.225 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_9
- 2026-05-09 15:30:50.228 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_10
- 2026-05-09 15:30:50.230 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_12
- 2026-05-09 15:30:50.231 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_13
- 2026-05-09 15:30:50.234 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_10
- 2026-05-09 15:30:50.235 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_10
- 2026-05-09 15:30:50.239 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_11
- 2026-05-09 15:30:50.240 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_14
- 2026-05-09 15:30:50.241 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_15
- 2026-05-09 15:30:50.244 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_11
- 2026-05-09 15:30:50.245 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_11
- 2026-05-09 15:30:50.252 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_12
- 2026-05-09 15:30:50.252 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_16
- 2026-05-09 15:30:50.253 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_8
- 2026-05-09 15:30:50.255 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_12
- 2026-05-09 15:30:50.256 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_12
- 2026-05-09 15:30:50.261 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_13
- 2026-05-09 15:30:50.263 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_17
- 2026-05-09 15:30:50.264 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_9
- 2026-05-09 15:30:50.265 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_13
- 2026-05-09 15:30:50.266 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_13
- 2026-05-09 15:30:50.269 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_14
- 2026-05-09 15:30:50.270 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_18
- 2026-05-09 15:30:50.272 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_19
- 2026-05-09 15:30:50.275 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_14
- 2026-05-09 15:30:50.276 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_14
- 2026-05-09 15:30:50.285 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_15
- 2026-05-09 15:30:50.297 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_6
- 2026-05-09 15:30:50.315 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_15
- 2026-05-09 15:30:50.320 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_3
- 2026-05-09 15:30:50.326 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_16
- 2026-05-09 15:30:50.327 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_20
- 2026-05-09 15:30:50.327 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_10
- 2026-05-09 15:30:50.329 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_16
- 2026-05-09 15:30:50.329 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_15
- 2026-05-09 15:30:50.334 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_17
- 2026-05-09 15:30:50.340 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_7
- 2026-05-09 15:30:50.340 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_21
- 2026-05-09 15:30:50.342 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_11
- 2026-05-09 15:30:50.343 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_17
- 2026-05-09 15:30:50.345 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_16
- 2026-05-09 15:30:50.358 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_8
- 2026-05-09 15:30:50.360 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveBatchUsingPOST_1
- 2026-05-09 15:30:50.471 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_18
- 2026-05-09 15:30:50.475 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_22
- 2026-05-09 15:30:50.476 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_12
- 2026-05-09 15:30:50.478 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_18
- 2026-05-09 15:30:50.479 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_17
- 2026-05-09 15:30:50.481 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_19
- 2026-05-09 15:30:50.487 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_23
- 2026-05-09 15:30:50.488 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_13
- 2026-05-09 15:30:50.491 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_19
- 2026-05-09 15:30:50.492 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_18
- 2026-05-09 15:30:50.493 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_20
- 2026-05-09 15:30:50.495 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_24
- 2026-05-09 15:30:50.498 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_20
- 2026-05-09 15:30:50.500 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_19
- 2026-05-09 15:30:50.508 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_21
- 2026-05-09 15:30:50.509 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_25
- 2026-05-09 15:30:50.510 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_14
- 2026-05-09 15:30:50.513 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_21
- 2026-05-09 15:30:50.538 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: Xh_WordToPdfUsingPOST_1
- 2026-05-09 15:30:50.542 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_22
- 2026-05-09 15:30:50.548 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_26
- 2026-05-09 15:30:50.549 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_15
- 2026-05-09 15:30:50.553 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_22
- 2026-05-09 15:30:50.554 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_27
- 2026-05-09 15:30:50.555 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_16
- 2026-05-09 15:30:50.558 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_23
- 2026-05-09 15:30:50.559 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_20
- 2026-05-09 15:30:50.573 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_23
- 2026-05-09 15:30:50.656 [main] WARN s.d.s.w.r.p.ParameterTypeReader - @ModelAttribute annotated parameters should have already been expanded via the ExpandedParameterBuilderPlugin
- 2026-05-09 15:30:50.656 [main] WARN s.d.s.w.r.p.ParameterTypeReader - @ModelAttribute annotated parameters should have already been expanded via the ExpandedParameterBuilderPlugin
- 2026-05-09 15:30:50.662 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportYsqdUsingGET_1
- 2026-05-09 15:30:50.712 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_24
- 2026-05-09 15:30:50.714 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_28
- 2026-05-09 15:30:50.714 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_17
- 2026-05-09 15:30:50.738 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_25
- 2026-05-09 15:30:50.739 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_29
- 2026-05-09 15:30:50.740 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_18
- 2026-05-09 15:30:50.743 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_24
- 2026-05-09 15:30:50.744 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_21
- 2026-05-09 15:30:50.757 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_26
- 2026-05-09 15:30:50.764 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_30
- 2026-05-09 15:30:50.765 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_19
- 2026-05-09 15:30:50.768 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_25
- 2026-05-09 15:30:50.769 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_22
- 2026-05-09 15:30:50.771 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_27
- 2026-05-09 15:30:50.776 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_31
- 2026-05-09 15:30:50.777 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_20
- 2026-05-09 15:30:50.779 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_26
- 2026-05-09 15:30:50.779 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_23
- 2026-05-09 15:30:50.789 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_28
- 2026-05-09 15:30:50.796 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_32
- 2026-05-09 15:30:50.797 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_21
- 2026-05-09 15:30:50.801 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_27
- 2026-05-09 15:30:50.802 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_24
- 2026-05-09 15:30:50.812 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxBtsqPageUsingGET_1
- 2026-05-09 15:30:50.814 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_29
- 2026-05-09 15:30:50.819 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_33
- 2026-05-09 15:30:50.820 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_22
- 2026-05-09 15:30:50.823 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_28
- 2026-05-09 15:30:50.824 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_25
- 2026-05-09 15:30:50.827 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxBzsqPageUsingGET_1
- 2026-05-09 15:30:50.833 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_30
- 2026-05-09 15:30:50.838 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_34
- 2026-05-09 15:30:50.839 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_23
- 2026-05-09 15:30:50.844 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_29
- 2026-05-09 15:30:50.845 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_26
- 2026-05-09 15:30:50.851 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxDbsqPageUsingGET_1
- 2026-05-09 15:30:50.853 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPOST_1
- 2026-05-09 15:30:50.856 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_31
- 2026-05-09 15:30:50.862 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_35
- 2026-05-09 15:30:50.863 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_24
- 2026-05-09 15:30:50.865 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_30
- 2026-05-09 15:30:50.866 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_27
- 2026-05-09 15:30:50.867 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_32
- 2026-05-09 15:30:50.870 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_36
- 2026-05-09 15:30:50.871 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_25
- 2026-05-09 15:30:50.875 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_31
- 2026-05-09 15:30:50.876 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_28
- 2026-05-09 15:30:50.878 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_33
- 2026-05-09 15:30:50.879 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_37
- 2026-05-09 15:30:50.880 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_26
- 2026-05-09 15:30:50.884 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_32
- 2026-05-09 15:30:50.885 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_29
- 2026-05-09 15:30:50.895 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_34
- 2026-05-09 15:30:50.898 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_38
- 2026-05-09 15:30:50.899 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_39
- 2026-05-09 15:30:50.901 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_33
- 2026-05-09 15:30:50.902 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_30
- 2026-05-09 15:30:50.904 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_35
- 2026-05-09 15:30:50.911 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_40
- 2026-05-09 15:30:50.912 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_27
- 2026-05-09 15:30:50.915 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_34
- 2026-05-09 15:30:50.916 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_31
- 2026-05-09 15:30:50.922 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxHfsqPageUsingGET_1
- 2026-05-09 15:30:50.925 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_36
- 2026-05-09 15:30:50.929 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_41
- 2026-05-09 15:30:50.929 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_28
- 2026-05-09 15:30:50.933 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_35
- 2026-05-09 15:30:50.934 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_32
- 2026-05-09 15:30:50.941 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxLwsqPageUsingGET_1
- 2026-05-09 15:30:50.943 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_37
- 2026-05-09 15:30:50.949 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_42
- 2026-05-09 15:30:50.950 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_29
- 2026-05-09 15:30:50.953 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_36
- 2026-05-09 15:30:50.954 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_33
- 2026-05-09 15:30:50.960 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxLxdhsqPageUsingGET_1
- 2026-05-09 15:30:50.962 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_38
- 2026-05-09 15:30:50.968 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_43
- 2026-05-09 15:30:50.969 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_30
- 2026-05-09 15:30:50.973 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_37
- 2026-05-09 15:30:50.975 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_34
- 2026-05-09 15:30:50.985 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_39
- 2026-05-09 15:30:50.990 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_44
- 2026-05-09 15:30:50.992 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_31
- 2026-05-09 15:30:50.995 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_38
- 2026-05-09 15:30:50.996 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_35
- 2026-05-09 15:30:51.002 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxDbsqPageUsingGET_2
- 2026-05-09 15:30:51.009 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_1
- 2026-05-09 15:30:51.011 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_40
- 2026-05-09 15:30:51.014 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_45
- 2026-05-09 15:30:51.015 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_32
- 2026-05-09 15:30:51.019 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_39
- 2026-05-09 15:30:51.027 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_36
- 2026-05-09 15:30:51.028 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_41
- 2026-05-09 15:30:51.031 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_46
- 2026-05-09 15:30:51.032 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_33
- 2026-05-09 15:30:51.034 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_40
- 2026-05-09 15:30:51.036 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_37
- 2026-05-09 15:30:51.038 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_42
- 2026-05-09 15:30:51.040 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_47
- 2026-05-09 15:30:51.041 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_34
- 2026-05-09 15:30:51.044 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_41
- 2026-05-09 15:30:51.046 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_38
- 2026-05-09 15:30:51.048 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_43
- 2026-05-09 15:30:51.050 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_48
- 2026-05-09 15:30:51.051 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_49
- 2026-05-09 15:30:51.054 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_42
- 2026-05-09 15:30:51.055 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_39
- 2026-05-09 15:30:51.057 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_44
- 2026-05-09 15:30:51.059 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_50
- 2026-05-09 15:30:51.060 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_51
- 2026-05-09 15:30:51.062 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_43
- 2026-05-09 15:30:51.063 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_40
- 2026-05-09 15:30:51.065 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_45
- 2026-05-09 15:30:51.071 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_52
- 2026-05-09 15:30:51.071 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_35
- 2026-05-09 15:30:51.074 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_44
- 2026-05-09 15:30:51.075 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_41
- 2026-05-09 15:30:51.081 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxWzjbsqPageUsingGET_1
- 2026-05-09 15:30:51.083 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_46
- 2026-05-09 15:30:51.088 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_53
- 2026-05-09 15:30:51.089 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_36
- 2026-05-09 15:30:51.092 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_45
- 2026-05-09 15:30:51.093 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_42
- 2026-05-09 15:30:51.098 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxXbsqPageUsingGET_1
- 2026-05-09 15:30:51.100 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_47
- 2026-05-09 15:30:51.105 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_54
- 2026-05-09 15:30:51.106 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_37
- 2026-05-09 15:30:51.108 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_46
- 2026-05-09 15:30:51.109 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_43
- 2026-05-09 15:30:51.114 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxXhsqPageUsingGET_1
- 2026-05-09 15:30:51.116 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPOST_2
- 2026-05-09 15:30:51.117 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_48
- 2026-05-09 15:30:51.119 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_55
- 2026-05-09 15:30:51.120 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_38
- 2026-05-09 15:30:51.124 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_47
- 2026-05-09 15:30:51.124 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_44
- 2026-05-09 15:30:51.127 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_49
- 2026-05-09 15:30:51.131 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_56
- 2026-05-09 15:30:51.132 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_39
- 2026-05-09 15:30:51.134 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_48
- 2026-05-09 15:30:51.135 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_45
- 2026-05-09 15:30:51.141 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_9
- 2026-05-09 15:30:51.142 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_57
- 2026-05-09 15:30:51.143 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_40
- 2026-05-09 15:30:51.145 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_49
- 2026-05-09 15:30:51.147 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_58
- 2026-05-09 15:30:51.148 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_41
- 2026-05-09 15:30:51.150 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_50
- 2026-05-09 15:30:51.155 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_10
- 2026-05-09 15:30:51.157 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_50
- 2026-05-09 15:30:51.162 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_59
- 2026-05-09 15:30:51.163 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_42
- 2026-05-09 15:30:51.166 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_51
- 2026-05-09 15:30:51.170 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_46
- 2026-05-09 15:30:51.171 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_2
- 2026-05-09 15:30:51.188 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_52
- 2026-05-09 15:30:51.195 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_51
- 2026-05-09 15:30:51.203 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_11
- 2026-05-09 15:30:51.214 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_1
- 2026-05-09 15:30:51.223 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_52
- 2026-05-09 15:30:51.224 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_43
- 2026-05-09 15:30:51.244 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_53
- 2026-05-09 15:30:51.249 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_60
- 2026-05-09 15:30:51.250 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_44
- 2026-05-09 15:30:51.253 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_53
- 2026-05-09 15:30:51.254 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_47
- 2026-05-09 15:30:51.256 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_54
- 2026-05-09 15:30:51.258 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_61
- 2026-05-09 15:30:51.259 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_45
- 2026-05-09 15:30:51.264 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_54
- 2026-05-09 15:30:51.271 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_48
- 2026-05-09 15:30:51.272 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_3
- 2026-05-09 15:30:51.274 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_62
- 2026-05-09 15:30:51.275 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_46
- 2026-05-09 15:30:51.277 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_55
- 2026-05-09 15:30:51.284 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_12
- 2026-05-09 15:30:51.290 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_63
- 2026-05-09 15:30:51.292 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_47
- 2026-05-09 15:30:51.295 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_56
- 2026-05-09 15:30:51.302 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_13
- 2026-05-09 15:30:51.303 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_55
- 2026-05-09 15:30:51.306 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_64
- 2026-05-09 15:30:51.307 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_48
- 2026-05-09 15:30:51.312 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_57
- 2026-05-09 15:30:51.317 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_49
- 2026-05-09 15:30:51.318 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_4
- 2026-05-09 15:30:51.336 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getDaCustomerPageUsingGET_1
- 2026-05-09 15:30:51.362 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_1
- 2026-05-09 15:30:51.372 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_14
- 2026-05-09 15:30:51.392 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_56
- 2026-05-09 15:30:51.432 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: delByIdUsingDELETE_1
- 2026-05-09 15:30:51.433 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: delByIdsUsingDELETE_1
- 2026-05-09 15:30:51.435 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: disableUsingPUT_1
- 2026-05-09 15:30:51.436 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: enableUsingPUT_1
- 2026-05-09 15:30:51.439 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: importExcelUsingPOST_1
- 2026-05-09 15:30:51.440 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_2
- 2026-05-09 15:30:51.446 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_3
- 2026-05-09 15:30:51.461 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_5
- 2026-05-09 15:30:51.463 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_6
- 2026-05-09 15:30:51.464 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_7
- 2026-05-09 15:30:51.466 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_57
- 2026-05-09 15:30:51.475 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_49
- 2026-05-09 15:30:51.494 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: addUsingPOST_1
- 2026-05-09 15:30:51.500 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_58
- 2026-05-09 15:30:51.506 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_65
- 2026-05-09 15:30:51.507 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_50
- 2026-05-09 15:30:51.510 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_58
- 2026-05-09 15:30:51.514 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: save_gdUsingPOST_1
- 2026-05-09 15:30:51.521 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_50
- 2026-05-09 15:30:51.534 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_59
- 2026-05-09 15:30:51.538 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_66
- 2026-05-09 15:30:51.540 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_51
- 2026-05-09 15:30:51.543 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_59
- 2026-05-09 15:30:51.545 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_51
- 2026-05-09 15:30:51.547 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_60
- 2026-05-09 15:30:51.550 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_67
- 2026-05-09 15:30:51.551 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_52
- 2026-05-09 15:30:51.555 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_60
- 2026-05-09 15:30:51.557 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: save_gdUsingPOST_2
- 2026-05-09 15:30:51.561 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_52
- 2026-05-09 15:30:51.562 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_8
- 2026-05-09 15:30:51.570 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_9
- 2026-05-09 15:30:51.582 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_61
- 2026-05-09 15:30:51.620 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_2
- 2026-05-09 15:30:51.623 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_62
- 2026-05-09 15:30:51.627 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_15
- 2026-05-09 15:30:51.655 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_4
- 2026-05-09 15:30:51.661 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_10
- 2026-05-09 15:30:51.667 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_63
- 2026-05-09 15:30:51.674 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_68
- 2026-05-09 15:30:51.675 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_53
- 2026-05-09 15:30:51.683 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_61
- 2026-05-09 15:30:51.685 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_53
- 2026-05-09 15:30:51.732 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_54
- 2026-05-09 15:30:51.818 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_16
- 2026-05-09 15:30:51.872 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getListUsingGET_1
- 2026-05-09 15:30:51.923 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_64
- 2026-05-09 15:30:51.969 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: statUsingGET_1
- 2026-05-09 15:30:52.008 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_11
- 2026-05-09 15:30:52.014 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_65
- 2026-05-09 15:30:52.027 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_69
- 2026-05-09 15:30:52.029 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_54
- 2026-05-09 15:30:52.070 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_62
- 2026-05-09 15:30:52.074 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_55
- 2026-05-09 15:30:52.077 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_66
- 2026-05-09 15:30:52.084 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_63
- 2026-05-09 15:30:52.087 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_56
- 2026-05-09 15:30:52.098 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_12
- 2026-05-09 15:30:52.140 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_64
- 2026-05-09 15:30:52.170 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_17
- 2026-05-09 15:30:52.192 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: monthlyStatUsingGET_1
- 2026-05-09 15:30:52.195 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: monthlyStatSummaryUsingGET_1
- 2026-05-09 15:30:52.200 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getListUsingGET_2
- 2026-05-09 15:30:52.277 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_67
- 2026-05-09 15:30:52.330 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageListUsingGET_1
- 2026-05-09 15:30:52.333 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: statUsingGET_2
- 2026-05-09 15:30:52.366 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_13
- 2026-05-09 15:30:52.368 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_14
- 2026-05-09 15:30:52.400 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_65
- 2026-05-09 15:30:52.407 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_68
- 2026-05-09 15:30:52.446 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getYyWyjtzPageUsingGET_1
- 2026-05-09 15:30:52.447 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_15
- 2026-05-09 15:30:52.450 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_5
- 2026-05-09 15:30:52.457 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_18
- 2026-05-09 15:30:52.459 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_16
- 2026-05-09 15:30:52.471 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_19
- 2026-05-09 15:30:52.472 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_17
- 2026-05-09 15:30:52.520 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_20
- 2026-05-09 15:30:52.521 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_18
- 2026-05-09 15:30:52.524 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_69
- 2026-05-09 15:30:52.531 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_70
- 2026-05-09 15:30:52.533 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_55
- 2026-05-09 15:30:52.541 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_66
- 2026-05-09 15:30:52.544 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_57
- 2026-05-09 15:30:52.547 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_70
- 2026-05-09 15:30:52.549 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_71
- 2026-05-09 15:30:52.550 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_56
- 2026-05-09 15:30:52.557 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_67
- 2026-05-09 15:30:52.561 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_58
- 2026-05-09 15:30:52.563 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_21
- 2026-05-09 15:30:52.566 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_3
- 2026-05-09 15:30:52.572 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_68
- 2026-05-09 15:30:52.582 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_22
- 2026-05-09 15:30:52.623 [main] INFO io.undertow - starting server: Undertow - 2.0.31.Final
- 2026-05-09 15:30:52.632 [main] INFO org.xnio - XNIO version 3.3.8.Final
- 2026-05-09 15:30:52.640 [main] INFO org.xnio.nio - XNIO NIO Implementation Version 3.3.8.Final
- 2026-05-09 15:30:52.706 [main] INFO o.s.b.w.e.u.UndertowServletWebServer - Undertow started on port(s) 10506 (http) with context path ''
- 2026-05-09 15:30:52.793 [main] INFO c.a.c.n.r.NacosServiceRegistry - nacos registry, DEFAULT_GROUP collect-fees-api 172.19.0.11:10506 register finished
- 2026-05-09 15:30:54.174 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
- 2026-05-09 15:30:54.177 [main] INFO com.tofly.feesapi.FeesApiApplication - Started FeesApiApplication in 39.701 seconds (JVM running for 40.829)
- 2026-05-09 15:30:54.768 [RMI TCP Connection(5)-192.168.1.105] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
- 2026-05-09 15:30:54.768 [RMI TCP Connection(5)-192.168.1.105] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
- 2026-05-09 15:30:54.791 [RMI TCP Connection(5)-192.168.1.105] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 23 ms
- 2026-05-09 17:32:21.110 [XNIO-1 task-1] ERROR io.undertow.request - UT005023: Exception handling request to /sfgl/yyqfmx/getpagelist
- org.springframework.web.client.HttpClientErrorException$BadRequest: 400 Bad Request: [{"error":"invalid_token","error_description":"Invalid access token: 05867129-9470-4da5-9c4b-facb872be2b0"}]
- at org.springframework.web.client.HttpClientErrorException.create(HttpClientErrorException.java:101)
- at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:184)
- at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:125)
- at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63)
- at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:782)
- at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:740)
- at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:674)
- at org.springframework.web.client.RestTemplate.exchange(RestTemplate.java:583)
- at org.springframework.security.oauth2.provider.token.RemoteTokenServices.postForMap(RemoteTokenServices.java:149)
- at org.springframework.security.oauth2.provider.token.RemoteTokenServices.loadAuthentication(RemoteTokenServices.java:106)
- at org.springframework.security.oauth2.provider.authentication.OAuth2AuthenticationManager.authenticate(OAuth2AuthenticationManager.java:83)
- at org.springframework.security.oauth2.provider.authentication.OAuth2AuthenticationProcessingFilter.doFilter(OAuth2AuthenticationProcessingFilter.java:150)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
- at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
- at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:92)
- at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:77)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
- at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
- at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
- at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:215)
- at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:178)
- at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:358)
- at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:271)
- at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
- at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
- at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
- at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
- at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
- at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
- at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
- at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
- at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:109)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
- at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
- at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
- at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
- at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
- at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
- at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:84)
- at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:62)
- at io.undertow.servlet.handlers.ServletChain$1.handleRequest(ServletChain.java:68)
- at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36)
- at io.undertow.servlet.handlers.RedirectDirHandler.handleRequest(RedirectDirHandler.java:68)
- at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:132)
- at io.undertow.servlet.handlers.security.ServletAuthenticationCallHandler.handleRequest(ServletAuthenticationCallHandler.java:57)
- at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
- at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:46)
- at io.undertow.servlet.handlers.security.ServletConfidentialityConstraintHandler.handleRequest(ServletConfidentialityConstraintHandler.java:64)
- at io.undertow.security.handlers.AuthenticationMechanismsHandler.handleRequest(AuthenticationMechanismsHandler.java:60)
- at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:77)
- at io.undertow.security.handlers.AbstractSecurityContextAssociationHandler.handleRequest(AbstractSecurityContextAssociationHandler.java:43)
- at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
- at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
- at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:269)
- at io.undertow.servlet.handlers.ServletInitialHandler.access$100(ServletInitialHandler.java:78)
- at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:133)
- at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:130)
- at io.undertow.servlet.core.ServletRequestContextThreadSetupAction$1.call(ServletRequestContextThreadSetupAction.java:48)
- at io.undertow.servlet.core.ContextClassLoaderSetupAction$1.call(ContextClassLoaderSetupAction.java:43)
- at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:249)
- at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:78)
- at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:99)
- at io.undertow.server.Connectors.executeRootHandler(Connectors.java:376)
- at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:830)
- at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
- at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
- at java.lang.Thread.run(Thread.java:748)
- 2026-05-09 17:32:21.138 [XNIO-1 task-1] ERROR io.undertow.request - UT005022: Exception generating error page /error
- java.lang.RuntimeException: org.springframework.web.client.HttpClientErrorException$BadRequest: 400 Bad Request: [{"error":"invalid_token","error_description":"Invalid access token: 05867129-9470-4da5-9c4b-facb872be2b0"}]
- at io.undertow.servlet.spec.RequestDispatcherImpl.error(RequestDispatcherImpl.java:507)
- at io.undertow.servlet.spec.RequestDispatcherImpl.error(RequestDispatcherImpl.java:427)
- at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:308)
- at io.undertow.servlet.handlers.ServletInitialHandler.access$100(ServletInitialHandler.java:78)
- at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:133)
- at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:130)
- at io.undertow.servlet.core.ServletRequestContextThreadSetupAction$1.call(ServletRequestContextThreadSetupAction.java:48)
- at io.undertow.servlet.core.ContextClassLoaderSetupAction$1.call(ContextClassLoaderSetupAction.java:43)
- at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:249)
- at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:78)
- at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:99)
- at io.undertow.server.Connectors.executeRootHandler(Connectors.java:376)
- at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:830)
- at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
- at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
- at java.lang.Thread.run(Thread.java:748)
- Caused by: org.springframework.web.client.HttpClientErrorException$BadRequest: 400 Bad Request: [{"error":"invalid_token","error_description":"Invalid access token: 05867129-9470-4da5-9c4b-facb872be2b0"}]
- at org.springframework.web.client.HttpClientErrorException.create(HttpClientErrorException.java:101)
- at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:184)
- at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:125)
- at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63)
- at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:782)
- at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:740)
- at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:674)
- at org.springframework.web.client.RestTemplate.exchange(RestTemplate.java:583)
- at org.springframework.security.oauth2.provider.token.RemoteTokenServices.postForMap(RemoteTokenServices.java:149)
- at org.springframework.security.oauth2.provider.token.RemoteTokenServices.loadAuthentication(RemoteTokenServices.java:106)
- at org.springframework.security.oauth2.provider.authentication.OAuth2AuthenticationManager.authenticate(OAuth2AuthenticationManager.java:83)
- at org.springframework.security.oauth2.provider.authentication.OAuth2AuthenticationProcessingFilter.doFilter(OAuth2AuthenticationProcessingFilter.java:150)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
- at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:103)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
- at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:103)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
- at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:215)
- at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:178)
- at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:358)
- at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:271)
- at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
- at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
- at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:84)
- at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:62)
- at io.undertow.servlet.handlers.ServletChain$1.handleRequest(ServletChain.java:68)
- at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36)
- at io.undertow.servlet.handlers.RedirectDirHandler.handleRequest(RedirectDirHandler.java:68)
- at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
- at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
- at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:251)
- at io.undertow.servlet.handlers.ServletInitialHandler.dispatchToPath(ServletInitialHandler.java:186)
- at io.undertow.servlet.spec.RequestDispatcherImpl.error(RequestDispatcherImpl.java:501)
- ... 15 common frames omitted
- 2026-05-09 17:35:28.983 [XNIO-1 task-39] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/api/sfgl/yyqfmx/getpagelist/getPageList】请求开始==================
- 2026-05-09 17:35:49.170 [XNIO-1 task-39] DEBUG c.t.f.s.m.Y.getPageList_mpCount - ==> Preparing: SELECT COUNT(*) AS total FROM yy_qfmx a WHERE 1 = 1 AND a.yhbh = ? AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?)
- 2026-05-09 17:35:49.224 [XNIO-1 task-39] DEBUG c.t.f.s.m.Y.getPageList_mpCount - ==> Parameters: 70030001(String), 10753(String)
- 2026-05-09 17:35:49.311 [XNIO-1 task-39] DEBUG c.t.f.s.m.Y.getPageList_mpCount - <== Total: 1
- 2026-05-09 17:35:49.366 [XNIO-1 task-39] DEBUG c.t.f.s.m.YyQfmxMapper.getPageList - ==> Preparing: SELECT * FROM ( SELECT TMP.*, ROWNUM ROW_ID FROM ( SELECT a.*, b.yhdz, b.lxdh, (nvl(a.ysje, 0) + nvl(a.znj, 0)) yszje, c.gdbz, d.name AS ysxzmc, d.sjmc FROM yy_qfmx a LEFT JOIN yh_khjbxx b ON a.yhbh = b.yhbh LEFT JOIN yy_qfmx_gd c ON a.gdlsbh = c.gdlsbh LEFT JOIN (SELECT sj.code, sj.name AS sjmc, yslx.name, yslx.code AS ysxzbm FROM bm_sj sj LEFT JOIN bm_yslx yslx ON sj.yslx = yslx.code) d ON a.sjbm = d.code WHERE 1 = 1 AND a.yhbh = ? AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?) ORDER BY ysyf DESC, jsrq DESC, chbz ASC ) TMP WHERE ROWNUM <=?) WHERE ROW_ID > ?
- 2026-05-09 17:35:49.370 [XNIO-1 task-39] DEBUG c.t.f.s.m.YyQfmxMapper.getPageList - ==> Parameters: 70030001(String), 10753(String), 20(Long), 0(Long)
- 2026-05-09 17:35:49.633 [XNIO-1 task-39] DEBUG c.t.f.s.m.YyQfmxMapper.getPageList - <== Total: 20
- 2026-05-09 17:35:49.638 [XNIO-1 task-39] DEBUG c.t.f.s.m.YyQfmxMapper.getPageCount - ==> Preparing: SELECT sum(case when a.fylx='1' or a.fylx='2' then nvl(yssl,0) else 0 end) zyssl, sum(nvl(yssf,0)) zyssf, sum(nvl(yswsf,0)) zyswsf, sum(nvl(ysljf,0)) zysljf, sum(nvl(ysszyf,0)) zysszyf, sum( nvl(ysecjyf, 0) ) zysecjyf, sum( nvl(ysfjf, 0) ) zysfjf, sum( nvl(ysqt, 0) ) zysqt, sum(nvl(ysje,0)) zysje, sum(nvl(znj,0)) zznj, sum(nvl(ysje,0)+nvl(znj,0)) zyszje from yy_qfmx a left join yh_khjbxx b on a.yhbh = b.yhbh left join yy_qfmx_gd c on a.gdlsbh=c.gdlsbh left join ( select sj.code, sj.name as sjmc, yslx.name,yslx.code as ysxzbm from bm_sj sj left join bm_yslx yslx on sj.yslx=yslx.code ) d on a.sjbm = d.code WHERE 1=1 AND a.yhbh = ? AND a.sscbb in (select cbbbm from yh_sjqx where user_id=?)
- 2026-05-09 17:35:49.638 [XNIO-1 task-39] DEBUG c.t.f.s.m.YyQfmxMapper.getPageCount - ==> Parameters: 70030001(String), 10753(String)
- 2026-05-09 17:35:49.723 [XNIO-1 task-39] DEBUG c.t.f.s.m.YyQfmxMapper.getPageCount - <== Total: 1
- 2026-05-09 17:35:49.733 [XNIO-1 task-39] INFO c.t.feesapi.common.LogRecordAspect - =================【getPageList】请求结束==================
- 2026-05-09 17:37:59.599 [SpringContextShutdownHook] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'taskScheduler'
- 2026-05-09 17:38:00.440 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registering from Nacos Server now...
- 2026-05-09 17:38:00.555 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registration finished.
- 2026-05-09 17:38:00.566 [SpringContextShutdownHook] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'taskScheduler'
- 2026-05-09 17:38:01.092 [SpringContextShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
- 2026-05-09 17:38:01.104 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-2} closing ...
- 2026-05-09 17:38:32.006 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.0.20.Final
- 2026-05-09 17:38:33.284 [background-preinit] WARN o.s.h.c.j.Jackson2ObjectMapperBuilder - For Jackson Kotlin classes support please add "com.fasterxml.jackson.module:jackson-module-kotlin" to the classpath
- 2026-05-09 17:38:35.257 [main] WARN c.a.c.n.c.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[collect-fees-api] & group[DEFAULT_GROUP]
- 2026-05-09 17:38:35.268 [main] WARN c.a.c.n.c.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[collect-fees-api-bd.yaml] & group[DEFAULT_GROUP]
- 2026-05-09 17:38:35.269 [main] INFO o.s.c.b.c.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-collect-fees-api-bd.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-collect-fees-api.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-collect-fees-api,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-yx_config_ftp.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-public_config_redis.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-public_config_oracle.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-public_config_public.yaml,DEFAULT_GROUP'}]
- 2026-05-09 17:38:35.276 [main] INFO com.tofly.feesapi.FeesApiApplication - The following profiles are active: bd
- 2026-05-09 17:38:37.662 [main] WARN o.s.boot.actuate.endpoint.EndpointId - Endpoint ID 'nacos-config' contains invalid characters, please migrate to a valid format.
- 2026-05-09 17:38:37.666 [main] WARN o.s.boot.actuate.endpoint.EndpointId - Endpoint ID 'nacos-discovery' contains invalid characters, please migrate to a valid format.
- 2026-05-09 17:38:37.987 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode!
- 2026-05-09 17:38:37.990 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
- 2026-05-09 17:38:38.256 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 250ms. Found 0 Redis repository interfaces.
- 2026-05-09 17:38:38.355 [main] WARN o.s.boot.actuate.endpoint.EndpointId - Endpoint ID 'service-registry' contains invalid characters, please migrate to a valid format.
- 2026-05-09 17:38:38.462 [main] DEBUG org.apache.ibatis.logging.LogFactory - Logging initialized using 'class org.apache.ibatis.logging.slf4j.Slf4jImpl' adapter.
- 2026-05-09 17:38:38.658 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhBjflFbMapper' and 'com.tofly.feesapi.bjgl.mapper.YhBjflFbMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.658 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhBjflZbMapper' and 'com.tofly.feesapi.bjgl.mapper.YhBjflZbMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.658 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhCbkxxLogMapper' and 'com.tofly.feesapi.bjgl.mapper.YhCbkxxLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.658 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhCbkxxMapper' and 'com.tofly.feesapi.bjgl.mapper.YhCbkxxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.658 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhbglMapper' and 'com.tofly.feesapi.bjgl.mapper.YhbglMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.658 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'ykHbLogMapper' and 'com.tofly.feesapi.bjgl.mapper.YkHbLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.658 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'ykYhbgHbMapper' and 'com.tofly.feesapi.bjgl.mapper.YkYhbgHbMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.658 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmCbbMapper' and 'com.tofly.feesapi.bmgl.mapper.BmCbbMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.658 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmCbfsMapper' and 'com.tofly.feesapi.bmgl.mapper.BmCbfsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.658 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmCblxMapper' and 'com.tofly.feesapi.bmgl.mapper.BmCblxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.658 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmCbplMapper' and 'com.tofly.feesapi.bmgl.mapper.BmCbplMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.658 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmCbpqMapper' and 'com.tofly.feesapi.bmgl.mapper.BmCbpqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.658 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmDbhysyhMapper' and 'com.tofly.feesapi.bmgl.mapper.BmDbhysyhMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.658 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmFffsMapper' and 'com.tofly.feesapi.bmgl.mapper.BmFffsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.658 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmFylxMapper' and 'com.tofly.feesapi.bmgl.mapper.BmFylxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.658 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmGsMapper' and 'com.tofly.feesapi.bmgl.mapper.BmGsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.658 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSblbMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSblbMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.658 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSbsccjMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSbsccjMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.658 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSbxhMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSbxhMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.658 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSearchMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSearchMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.658 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSflxMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSflxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.658 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSfqdMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSfqdMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.658 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSjMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSjMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.658 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSjlsMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSjlsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.658 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmYmjzConfigLsMapper' and 'com.tofly.feesapi.bmgl.mapper.BmYmjzConfigLsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.658 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmYmjzConfigMapper' and 'com.tofly.feesapi.bmgl.mapper.BmYmjzConfigMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.658 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmYslxMapper' and 'com.tofly.feesapi.bmgl.mapper.BmYslxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.658 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'cbbConfigMapper' and 'com.tofly.feesapi.bmgl.mapper.CbbConfigMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.658 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysChildCodeMapper' and 'com.tofly.feesapi.bmgl.mapper.SysChildCodeMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.658 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysParentCodeMapper' and 'com.tofly.feesapi.bmgl.mapper.SysParentCodeMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.658 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyCblrLsMapper' and 'com.tofly.feesapi.cbgl.mapper.YyCblrLsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.659 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyCblrMapper' and 'com.tofly.feesapi.cbgl.mapper.YyCblrMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.659 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbCbDayMapper' and 'com.tofly.feesapi.cbgl.mapper.ZnbCbDayMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.659 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbCbLogMapper' and 'com.tofly.feesapi.cbgl.mapper.ZnbCbLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.659 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbZlLogMapper' and 'com.tofly.feesapi.cbgl.mapper.ZnbZlLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.659 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'commonMapper' and 'com.tofly.feesapi.common.mapper.CommonMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.659 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiFpkjMxMapper' and 'com.tofly.feesapi.dzfp.mapper.EiFpkjMxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.659 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiFpkjRequestMapper' and 'com.tofly.feesapi.dzfp.mapper.EiFpkjRequestMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.659 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiKprpzMapper' and 'com.tofly.feesapi.dzfp.mapper.EiKprpzMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.659 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiSalerConfigMapper' and 'com.tofly.feesapi.dzfp.mapper.EiSalerConfigMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.659 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiSpbmMapper' and 'com.tofly.feesapi.dzfp.mapper.EiSpbmMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.659 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiYkfpLogMapper' and 'com.tofly.feesapi.dzfp.mapper.EiYkfpLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.659 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'htFilesMapper' and 'com.tofly.feesapi.dzht.mapper.HtFilesMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.659 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'htTemplateMapper' and 'com.tofly.feesapi.dzht.mapper.HtTemplateMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.659 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'fileMapper' and 'com.tofly.feesapi.file.mapper.FileMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.659 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'flowMapper' and 'com.tofly.feesapi.flowdb.mapper.FlowMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.659 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyBgLogMapper' and 'com.tofly.feesapi.mxcx.mapper.YyBgLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.659 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bankDsdzhzMapper' and 'com.tofly.feesapi.sfds.mapper.BankDsdzhzMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.659 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bankDsdzxxMapper' and 'com.tofly.feesapi.sfds.mapper.BankDsdzxxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.659 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'plsfkhxxMapper' and 'com.tofly.feesapi.sfgl.mapper.PlsfkhxxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.659 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyPjbhMapper' and 'com.tofly.feesapi.sfgl.mapper.YyPjbhMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.659 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyQfmxCzlsMapper' and 'com.tofly.feesapi.sfgl.mapper.YyQfmxCzlsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.659 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyQfmxDzmxMapper' and 'com.tofly.feesapi.sfgl.mapper.YyQfmxDzmxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.659 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyQfmxGdMapper' and 'com.tofly.feesapi.sfgl.mapper.YyQfmxGdMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.660 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyQfmxMapper' and 'com.tofly.feesapi.sfgl.mapper.YyQfmxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.660 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yySspjxxMapper' and 'com.tofly.feesapi.sfgl.mapper.YySspjxxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.660 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yySspjxxReportMapper' and 'com.tofly.feesapi.sfgl.mapper.YySspjxxReportMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.660 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyWyjjmrqMapper' and 'com.tofly.feesapi.sfgl.mapper.YyWyjjmrqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.660 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyWyjtzMapper' and 'com.tofly.feesapi.sfgl.mapper.YyWyjtzMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.660 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbCsjsLogMapper' and 'com.tofly.feesapi.sfgl.mapper.ZnbCsjsLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.660 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'smsMessageMapper' and 'com.tofly.feesapi.sms.mapper.SmsMessageMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.660 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'smsTxlxMapper' and 'com.tofly.feesapi.sms.mapper.SmsTxlxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.660 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'companyMapper' and 'com.tofly.feesapi.udb.mapper.CompanyMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.660 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.tofly.feesapi.udb.mapper.UserMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.660 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userRoleMapper' and 'com.tofly.feesapi.udb.mapper.UserRoleMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.660 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxDtbmMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxDtbmMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.660 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxFwtzMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxFwtzMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.660 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxMessageMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxMessageMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.660 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxTokenMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxTokenMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.660 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxTstzMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxTstzMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.660 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxUserLsMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxUserLsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.660 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxUserMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxUserMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.660 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxYwxzMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxYwxzMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.660 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxYwxzbmMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxYwxzbmMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.660 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxBtsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxBtsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.660 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxBzsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxBzsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.660 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxDbsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxDbsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.660 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxGhsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxGhsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.660 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxGsdtMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxGsdtMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.660 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxHfsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxHfsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.660 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxLwsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxLwsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.660 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxLxdhsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxLxdhsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.660 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxRkssqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxRkssqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.660 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxWdMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxWdMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.660 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxWdbmMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxWdbmMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.660 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxWzjbsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxWzjbsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.661 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxXbsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxXbsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.661 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxXhsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxXhsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.661 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'paySelectMapper' and 'com.tofly.feesapi.wxgl.wechatpay.mapper.PaySelectMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.661 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysGdcsbMapper' and 'com.tofly.feesapi.xtgl.mapper.SysGdcsbMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.661 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'syscommlogMapper' and 'com.tofly.feesapi.xtgl.mapper.SyscommlogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.661 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhBtLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhBtLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.661 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhFfgxMapper' and 'com.tofly.feesapi.yhgl.mapper.YhFfgxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.661 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhGhLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhGhLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.661 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhGroupAccountsMapper' and 'com.tofly.feesapi.yhgl.mapper.YhGroupAccountsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.661 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhGroupMapper' and 'com.tofly.feesapi.yhgl.mapper.YhGroupMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.661 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhHfysLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhHfysLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.661 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhKhjbxxDbhlsMapper' and 'com.tofly.feesapi.yhgl.mapper.YhKhjbxxDbhlsMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.661 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhKhjbxxLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhKhjbxxLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.661 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhKhjbxxMapper' and 'com.tofly.feesapi.yhgl.mapper.YhKhjbxxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.661 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhXzbgLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhXzbgLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.661 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhhLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhhLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.661 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhsjqxMapper' and 'com.tofly.feesapi.yhgl.mapper.YhsjqxMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.661 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyZjzhMapper' and 'com.tofly.feesapi.yhgl.mapper.YyZjzhMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.661 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbDaLogMapper' and 'com.tofly.feesapi.znbgl.mapper.ZnbDaLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.661 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbYhdaMapper' and 'com.tofly.feesapi.znbgl.mapper.ZnbYhdaMapper' mapperInterface. Bean already defined with the same name!
- 2026-05-09 17:38:38.661 [main] WARN o.m.s.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.tofly.feesapi.**.mapper]' package. Please check your configuration.
- 2026-05-09 17:38:38.805 [main] INFO o.s.cloud.context.scope.GenericScope - BeanFactory id=6ba9fcc8-98cb-35e6-8547-52fc325bd065
- 2026-05-09 17:38:38.906 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.tofly.feesapi.common.feign.UserClient' of type [org.springframework.cloud.openfeign.FeignClientFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-05-09 17:38:39.261 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.datasource.dynamic-com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-05-09 17:38:39.274 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$e1ca41a2] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-05-09 17:38:39.298 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'dsProcessor' of type [com.baomidou.dynamic.datasource.processor.DsHeaderProcessor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-05-09 17:38:39.335 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@2e0fdc83' of type [org.springframework.security.oauth2.provider.expression.OAuth2MethodSecurityExpressionHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-05-09 17:38:39.345 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'methodSecurityMetadataSource' of type [org.springframework.security.access.method.DelegatingMethodSecurityMetadataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-05-09 17:38:39.677 [main] WARN io.undertow.websockets.jsr - UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
- 2026-05-09 17:38:39.707 [main] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
- 2026-05-09 17:38:39.707 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 4406 ms
- 2026-05-09 17:38:46.711 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1,master} inited
- 2026-05-09 17:38:47.395 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-2,udb} inited
- 2026-05-09 17:38:48.321 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-3,flowDB} inited
- 2026-05-09 17:38:48.321 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [udb] success
- 2026-05-09 17:38:48.321 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [flowDB] success
- 2026-05-09 17:38:48.321 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
- 2026-05-09 17:38:48.321 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [3] datasource,primary datasource named [master]
- 2026-05-09 17:38:50.610 [main] WARN c.b.m.core.injector.AbstractMethod - [com.tofly.feesapi.bmgl.mapper.SysParentCodeMapper.selectCount] Has been loaded by XML or SqlProvider or Mybatis's Annotation, so ignoring this injection for [class com.baomidou.mybatisplus.core.injector.methods.SelectCount]
- 2026-05-09 17:38:51.190 [main] WARN c.b.m.core.injector.AbstractMethod - [com.tofly.feesapi.flowdb.mapper.FlowMapper.updateById] Has been loaded by XML or SqlProvider or Mybatis's Annotation, so ignoring this injection for [class com.baomidou.mybatisplus.core.injector.methods.UpdateById]
- 2026-05-09 17:38:52.900 [main] WARN c.b.m.core.metadata.TableInfoHelper - Can not find table primary key in Class: "com.tofly.feesapi.wxgl.wechatpay.entity.PaySelect".
- 2026-05-09 17:38:52.900 [main] WARN c.b.m.c.injector.DefaultSqlInjector - class com.tofly.feesapi.wxgl.wechatpay.entity.PaySelect ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method.
- 2026-05-09 17:38:52.922 [main] WARN c.b.m.core.metadata.TableInfoHelper - Can not find table primary key in Class: "com.tofly.feesapi.xtgl.entity.SysGdcsb".
- 2026-05-09 17:38:52.925 [main] WARN c.b.m.c.injector.DefaultSqlInjector - class com.tofly.feesapi.xtgl.entity.SysGdcsb ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method.
- 2026-05-09 17:39:00.442 [main] INFO org.redisson.Version - Redisson 3.23.2
- 2026-05-09 17:39:02.150 [redisson-netty-2-4] INFO o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 127.0.0.1/127.0.0.1:6379
- 2026-05-09 17:39:02.251 [redisson-netty-2-19] INFO o.r.c.pool.MasterConnectionPool - 24 connections initialized for 127.0.0.1/127.0.0.1:6379
- 2026-05-09 17:39:20.790 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
- 2026-05-09 17:39:31.939 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 19 endpoint(s) beneath base path '/actuator'
- 2026-05-09 17:39:33.996 [main] INFO s.d.s.w.WebMvcPropertySourcedRequestMappingHandlerMapping - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
- 2026-05-09 17:39:35.063 [main] INFO c.n.c.sources.URLConfigurationSource - URLs to be used as dynamic configuration source: [file:/D:/work/tf/%e5%b1%b1%e4%b8%9c%e8%8e%b1%e9%98%b3%e6%b0%b4%e5%8f%b8/%e8%8e%b1%e9%98%b3%e6%99%ba%e6%85%a7%e6%b0%b4%e5%8a%a1JAVA%e8%90%a5%e9%94%80/20260403/lywebmis/collect_fees_ly_api/fees-ly-api/target/classes/config.properties]
- 2026-05-09 17:39:35.094 [main] INFO c.n.c.sources.URLConfigurationSource - URLs to be used as dynamic configuration source: [file:/D:/work/tf/%e5%b1%b1%e4%b8%9c%e8%8e%b1%e9%98%b3%e6%b0%b4%e5%8f%b8/%e8%8e%b1%e9%98%b3%e6%99%ba%e6%85%a7%e6%b0%b4%e5%8a%a1JAVA%e8%90%a5%e9%94%80/20260403/lywebmis/collect_fees_ly_api/fees-ly-api/target/classes/config.properties]
- 2026-05-09 17:39:36.580 [main] INFO o.s.s.c.ThreadPoolTaskScheduler - Initializing ExecutorService 'taskScheduler'
- 2026-05-09 17:39:38.151 [main] INFO o.s.b.a.s.s.UserDetailsServiceAutoConfiguration -
- Using generated security password: 98487601-840c-4433-abef-2fbb1d72a18e
- 2026-05-09 17:39:38.760 [main] INFO o.s.s.web.DefaultSecurityFilterChain - Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@766f5049, org.springframework.security.web.context.SecurityContextPersistenceFilter@34dcad0d, org.springframework.security.web.header.HeaderWriterFilter@7116f350, org.springframework.security.web.authentication.logout.LogoutFilter@39088acb, org.springframework.security.oauth2.provider.authentication.OAuth2AuthenticationProcessingFilter@4f8d98d4, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@3269e790, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@74889ebe, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@6a5f05f5, org.springframework.security.web.session.SessionManagementFilter@7892045f, org.springframework.security.web.access.ExceptionTranslationFilter@64cef807, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@761eaf72]
- 2026-05-09 17:39:41.405 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
- 2026-05-09 17:39:42.316 [main] WARN o.s.c.s.o.SpringCloudSecurityAutoConfiguration - All Spring Cloud Security modules and starters are deprecated. They will be moved to individual projects in the next major release.
- 2026-05-09 17:39:42.618 [main] INFO s.d.s.w.p.DocumentationPluginsBootstrapper - Documentation plugins bootstrapped
- 2026-05-09 17:39:42.624 [main] INFO s.d.s.w.p.DocumentationPluginsBootstrapper - Found 1 custom documentation plugin(s)
- 2026-05-09 17:39:42.914 [main] INFO s.d.s.w.s.ApiListingReferenceScanner - Scanning for api listing references
- 2026-05-09 17:39:43.267 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_1
- 2026-05-09 17:39:43.276 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_1
- 2026-05-09 17:39:43.278 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_1
- 2026-05-09 17:39:43.281 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_1
- 2026-05-09 17:39:43.290 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_1
- 2026-05-09 17:39:43.292 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_1
- 2026-05-09 17:39:43.339 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: addCustomerUsingPOST_1
- 2026-05-09 17:39:43.341 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: deleteCustomerUsingPOST_1
- 2026-05-09 17:39:43.344 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getBindCustomerUsingGET_1
- 2026-05-09 17:39:43.345 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: selectCustomerUsingGET_1
- 2026-05-09 17:39:43.349 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getBindCustomerAndQfUsingGET_1
- 2026-05-09 17:39:43.350 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerBasicInFoUsingGET_1
- 2026-05-09 17:39:43.352 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerChargeInFoUsingGET_1
- 2026-05-09 17:39:43.354 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerInFoUsingGET_1
- 2026-05-09 17:39:43.356 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerQfInFoUsingGET_1
- 2026-05-09 17:39:43.360 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerReadMeterInFoUsingGET_1
- 2026-05-09 17:39:43.387 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_2
- 2026-05-09 17:39:43.452 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_2
- 2026-05-09 17:39:43.458 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_2
- 2026-05-09 17:39:43.460 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_2
- 2026-05-09 17:39:43.472 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_2
- 2026-05-09 17:39:43.474 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_2
- 2026-05-09 17:39:43.512 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_3
- 2026-05-09 17:39:43.515 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_3
- 2026-05-09 17:39:43.516 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_3
- 2026-05-09 17:39:43.521 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_3
- 2026-05-09 17:39:43.523 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_3
- 2026-05-09 17:39:43.542 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_3
- 2026-05-09 17:39:43.559 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_4
- 2026-05-09 17:39:43.561 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_4
- 2026-05-09 17:39:43.563 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_4
- 2026-05-09 17:39:43.566 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_4
- 2026-05-09 17:39:43.568 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_4
- 2026-05-09 17:39:43.570 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_5
- 2026-05-09 17:39:43.572 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_5
- 2026-05-09 17:39:43.574 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_5
- 2026-05-09 17:39:43.580 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_5
- 2026-05-09 17:39:43.581 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_5
- 2026-05-09 17:39:43.597 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_4
- 2026-05-09 17:39:43.608 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_6
- 2026-05-09 17:39:43.626 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_5
- 2026-05-09 17:39:43.628 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_6
- 2026-05-09 17:39:43.630 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_6
- 2026-05-09 17:39:43.635 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_6
- 2026-05-09 17:39:43.637 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_6
- 2026-05-09 17:39:43.643 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_1
- 2026-05-09 17:39:43.656 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_7
- 2026-05-09 17:39:43.657 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_7
- 2026-05-09 17:39:43.659 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_7
- 2026-05-09 17:39:43.665 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_7
- 2026-05-09 17:39:43.667 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_7
- 2026-05-09 17:39:43.674 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_8
- 2026-05-09 17:39:43.675 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getFffsListUsingGET_1
- 2026-05-09 17:39:43.677 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_8
- 2026-05-09 17:39:43.678 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_9
- 2026-05-09 17:39:43.683 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_8
- 2026-05-09 17:39:43.686 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_8
- 2026-05-09 17:39:43.696 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_2
- 2026-05-09 17:39:43.705 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_9
- 2026-05-09 17:39:43.708 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_10
- 2026-05-09 17:39:43.709 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_11
- 2026-05-09 17:39:43.713 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_9
- 2026-05-09 17:39:43.715 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_9
- 2026-05-09 17:39:43.721 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_10
- 2026-05-09 17:39:43.723 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_12
- 2026-05-09 17:39:43.726 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_13
- 2026-05-09 17:39:43.731 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_10
- 2026-05-09 17:39:43.733 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_10
- 2026-05-09 17:39:43.740 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_11
- 2026-05-09 17:39:43.742 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_14
- 2026-05-09 17:39:43.744 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_15
- 2026-05-09 17:39:43.750 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_11
- 2026-05-09 17:39:43.752 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_11
- 2026-05-09 17:39:43.762 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_12
- 2026-05-09 17:39:43.764 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_16
- 2026-05-09 17:39:43.765 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_8
- 2026-05-09 17:39:43.768 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_12
- 2026-05-09 17:39:43.770 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_12
- 2026-05-09 17:39:43.780 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_13
- 2026-05-09 17:39:43.783 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_17
- 2026-05-09 17:39:43.784 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_9
- 2026-05-09 17:39:43.788 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_13
- 2026-05-09 17:39:43.789 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_13
- 2026-05-09 17:39:43.794 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_14
- 2026-05-09 17:39:43.797 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_18
- 2026-05-09 17:39:43.800 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_19
- 2026-05-09 17:39:43.808 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_14
- 2026-05-09 17:39:43.811 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_14
- 2026-05-09 17:39:43.828 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_15
- 2026-05-09 17:39:43.852 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_6
- 2026-05-09 17:39:43.905 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_15
- 2026-05-09 17:39:43.919 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_3
- 2026-05-09 17:39:43.931 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_16
- 2026-05-09 17:39:43.933 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_20
- 2026-05-09 17:39:43.934 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_10
- 2026-05-09 17:39:43.939 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_16
- 2026-05-09 17:39:43.940 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_15
- 2026-05-09 17:39:43.954 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_17
- 2026-05-09 17:39:43.969 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_7
- 2026-05-09 17:39:43.971 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_21
- 2026-05-09 17:39:43.973 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_11
- 2026-05-09 17:39:43.978 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_17
- 2026-05-09 17:39:43.980 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_16
- 2026-05-09 17:39:44.009 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_8
- 2026-05-09 17:39:44.012 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveBatchUsingPOST_1
- 2026-05-09 17:39:44.252 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_18
- 2026-05-09 17:39:44.262 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_22
- 2026-05-09 17:39:44.263 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_12
- 2026-05-09 17:39:44.267 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_18
- 2026-05-09 17:39:44.269 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_17
- 2026-05-09 17:39:44.273 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_19
- 2026-05-09 17:39:44.288 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_23
- 2026-05-09 17:39:44.289 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_13
- 2026-05-09 17:39:44.294 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_19
- 2026-05-09 17:39:44.297 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_18
- 2026-05-09 17:39:44.299 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_20
- 2026-05-09 17:39:44.303 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_24
- 2026-05-09 17:39:44.309 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_20
- 2026-05-09 17:39:44.311 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_19
- 2026-05-09 17:39:44.326 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_21
- 2026-05-09 17:39:44.330 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_25
- 2026-05-09 17:39:44.332 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_14
- 2026-05-09 17:39:44.338 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_21
- 2026-05-09 17:39:44.380 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: Xh_WordToPdfUsingPOST_1
- 2026-05-09 17:39:44.387 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_22
- 2026-05-09 17:39:44.399 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_26
- 2026-05-09 17:39:44.401 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_15
- 2026-05-09 17:39:44.410 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_22
- 2026-05-09 17:39:44.414 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_27
- 2026-05-09 17:39:44.415 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_16
- 2026-05-09 17:39:44.421 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_23
- 2026-05-09 17:39:44.424 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_20
- 2026-05-09 17:39:44.456 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_23
- 2026-05-09 17:39:44.643 [main] WARN s.d.s.w.r.p.ParameterTypeReader - @ModelAttribute annotated parameters should have already been expanded via the ExpandedParameterBuilderPlugin
- 2026-05-09 17:39:44.643 [main] WARN s.d.s.w.r.p.ParameterTypeReader - @ModelAttribute annotated parameters should have already been expanded via the ExpandedParameterBuilderPlugin
- 2026-05-09 17:39:44.657 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportYsqdUsingGET_1
- 2026-05-09 17:39:44.770 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_24
- 2026-05-09 17:39:44.773 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_28
- 2026-05-09 17:39:44.774 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_17
- 2026-05-09 17:39:44.819 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_25
- 2026-05-09 17:39:44.820 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_29
- 2026-05-09 17:39:44.822 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_18
- 2026-05-09 17:39:44.827 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_24
- 2026-05-09 17:39:44.829 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_21
- 2026-05-09 17:39:44.857 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_26
- 2026-05-09 17:39:44.873 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_30
- 2026-05-09 17:39:44.874 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_19
- 2026-05-09 17:39:44.879 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_25
- 2026-05-09 17:39:44.881 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_22
- 2026-05-09 17:39:44.884 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_27
- 2026-05-09 17:39:44.894 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_31
- 2026-05-09 17:39:44.896 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_20
- 2026-05-09 17:39:44.899 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_26
- 2026-05-09 17:39:44.901 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_23
- 2026-05-09 17:39:44.919 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_28
- 2026-05-09 17:39:44.929 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_32
- 2026-05-09 17:39:44.930 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_21
- 2026-05-09 17:39:44.937 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_27
- 2026-05-09 17:39:44.940 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_24
- 2026-05-09 17:39:44.960 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxBtsqPageUsingGET_1
- 2026-05-09 17:39:44.963 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_29
- 2026-05-09 17:39:44.973 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_33
- 2026-05-09 17:39:44.975 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_22
- 2026-05-09 17:39:44.982 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_28
- 2026-05-09 17:39:44.984 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_25
- 2026-05-09 17:39:44.991 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxBzsqPageUsingGET_1
- 2026-05-09 17:39:45.004 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_30
- 2026-05-09 17:39:45.015 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_34
- 2026-05-09 17:39:45.017 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_23
- 2026-05-09 17:39:45.025 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_29
- 2026-05-09 17:39:45.027 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_26
- 2026-05-09 17:39:45.040 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxDbsqPageUsingGET_1
- 2026-05-09 17:39:45.043 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPOST_1
- 2026-05-09 17:39:45.045 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_31
- 2026-05-09 17:39:45.055 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_35
- 2026-05-09 17:39:45.056 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_24
- 2026-05-09 17:39:45.060 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_30
- 2026-05-09 17:39:45.062 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_27
- 2026-05-09 17:39:45.064 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_32
- 2026-05-09 17:39:45.069 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_36
- 2026-05-09 17:39:45.071 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_25
- 2026-05-09 17:39:45.081 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_31
- 2026-05-09 17:39:45.083 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_28
- 2026-05-09 17:39:45.087 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_33
- 2026-05-09 17:39:45.089 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_37
- 2026-05-09 17:39:45.090 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_26
- 2026-05-09 17:39:45.098 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_32
- 2026-05-09 17:39:45.100 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_29
- 2026-05-09 17:39:45.120 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_34
- 2026-05-09 17:39:45.125 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_38
- 2026-05-09 17:39:45.128 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_39
- 2026-05-09 17:39:45.133 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_33
- 2026-05-09 17:39:45.135 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_30
- 2026-05-09 17:39:45.138 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_35
- 2026-05-09 17:39:45.150 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_40
- 2026-05-09 17:39:45.152 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_27
- 2026-05-09 17:39:45.160 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_34
- 2026-05-09 17:39:45.162 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_31
- 2026-05-09 17:39:45.177 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxHfsqPageUsingGET_1
- 2026-05-09 17:39:45.181 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_36
- 2026-05-09 17:39:45.192 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_41
- 2026-05-09 17:39:45.193 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_28
- 2026-05-09 17:39:45.199 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_35
- 2026-05-09 17:39:45.201 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_32
- 2026-05-09 17:39:45.219 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxLwsqPageUsingGET_1
- 2026-05-09 17:39:45.223 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_37
- 2026-05-09 17:39:45.234 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_42
- 2026-05-09 17:39:45.238 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_29
- 2026-05-09 17:39:45.246 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_36
- 2026-05-09 17:39:45.248 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_33
- 2026-05-09 17:39:45.263 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxLxdhsqPageUsingGET_1
- 2026-05-09 17:39:45.267 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_38
- 2026-05-09 17:39:45.279 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_43
- 2026-05-09 17:39:45.281 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_30
- 2026-05-09 17:39:45.292 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_37
- 2026-05-09 17:39:45.295 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_34
- 2026-05-09 17:39:45.317 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_39
- 2026-05-09 17:39:45.329 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_44
- 2026-05-09 17:39:45.332 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_31
- 2026-05-09 17:39:45.341 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_38
- 2026-05-09 17:39:45.345 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_35
- 2026-05-09 17:39:45.361 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxDbsqPageUsingGET_2
- 2026-05-09 17:39:45.377 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_1
- 2026-05-09 17:39:45.381 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_40
- 2026-05-09 17:39:45.386 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_45
- 2026-05-09 17:39:45.388 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_32
- 2026-05-09 17:39:45.397 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_39
- 2026-05-09 17:39:45.411 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_36
- 2026-05-09 17:39:45.414 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_41
- 2026-05-09 17:39:45.418 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_46
- 2026-05-09 17:39:45.420 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_33
- 2026-05-09 17:39:45.426 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_40
- 2026-05-09 17:39:45.428 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_37
- 2026-05-09 17:39:45.431 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_42
- 2026-05-09 17:39:45.435 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_47
- 2026-05-09 17:39:45.437 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_34
- 2026-05-09 17:39:45.444 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_41
- 2026-05-09 17:39:45.446 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_38
- 2026-05-09 17:39:45.449 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_43
- 2026-05-09 17:39:45.453 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_48
- 2026-05-09 17:39:45.455 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_49
- 2026-05-09 17:39:45.460 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_42
- 2026-05-09 17:39:45.462 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_39
- 2026-05-09 17:39:45.466 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_44
- 2026-05-09 17:39:45.470 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_50
- 2026-05-09 17:39:45.471 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_51
- 2026-05-09 17:39:45.476 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_43
- 2026-05-09 17:39:45.478 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_40
- 2026-05-09 17:39:45.481 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_45
- 2026-05-09 17:39:45.492 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_52
- 2026-05-09 17:39:45.494 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_35
- 2026-05-09 17:39:45.500 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_44
- 2026-05-09 17:39:45.502 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_41
- 2026-05-09 17:39:45.514 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxWzjbsqPageUsingGET_1
- 2026-05-09 17:39:45.518 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_46
- 2026-05-09 17:39:45.529 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_53
- 2026-05-09 17:39:45.531 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_36
- 2026-05-09 17:39:45.538 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_45
- 2026-05-09 17:39:45.541 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_42
- 2026-05-09 17:39:45.555 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxXbsqPageUsingGET_1
- 2026-05-09 17:39:45.560 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_47
- 2026-05-09 17:39:45.573 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_54
- 2026-05-09 17:39:45.575 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_37
- 2026-05-09 17:39:45.583 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_46
- 2026-05-09 17:39:45.586 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_43
- 2026-05-09 17:39:45.600 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxXhsqPageUsingGET_1
- 2026-05-09 17:39:45.603 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPOST_2
- 2026-05-09 17:39:45.606 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_48
- 2026-05-09 17:39:45.611 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_55
- 2026-05-09 17:39:45.615 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_38
- 2026-05-09 17:39:45.621 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_47
- 2026-05-09 17:39:45.624 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_44
- 2026-05-09 17:39:45.627 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_49
- 2026-05-09 17:39:45.637 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_56
- 2026-05-09 17:39:45.639 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_39
- 2026-05-09 17:39:45.642 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_48
- 2026-05-09 17:39:45.645 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_45
- 2026-05-09 17:39:45.660 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_9
- 2026-05-09 17:39:45.663 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_57
- 2026-05-09 17:39:45.667 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_40
- 2026-05-09 17:39:45.675 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_49
- 2026-05-09 17:39:45.681 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_58
- 2026-05-09 17:39:45.685 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_41
- 2026-05-09 17:39:45.691 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_50
- 2026-05-09 17:39:45.707 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_10
- 2026-05-09 17:39:45.712 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_50
- 2026-05-09 17:39:45.724 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_59
- 2026-05-09 17:39:45.726 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_42
- 2026-05-09 17:39:45.734 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_51
- 2026-05-09 17:39:45.743 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_46
- 2026-05-09 17:39:45.745 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_2
- 2026-05-09 17:39:45.788 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_52
- 2026-05-09 17:39:45.805 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_51
- 2026-05-09 17:39:45.822 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_11
- 2026-05-09 17:39:45.842 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_1
- 2026-05-09 17:39:45.866 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_52
- 2026-05-09 17:39:45.868 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_43
- 2026-05-09 17:39:45.914 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_53
- 2026-05-09 17:39:45.926 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_60
- 2026-05-09 17:39:45.928 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_44
- 2026-05-09 17:39:45.933 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_53
- 2026-05-09 17:39:45.936 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_47
- 2026-05-09 17:39:45.941 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_54
- 2026-05-09 17:39:45.946 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_61
- 2026-05-09 17:39:45.948 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_45
- 2026-05-09 17:39:45.959 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_54
- 2026-05-09 17:39:45.974 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_48
- 2026-05-09 17:39:45.977 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_3
- 2026-05-09 17:39:45.981 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_62
- 2026-05-09 17:39:45.984 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_46
- 2026-05-09 17:39:45.991 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_55
- 2026-05-09 17:39:46.004 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_12
- 2026-05-09 17:39:46.016 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_63
- 2026-05-09 17:39:46.019 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_47
- 2026-05-09 17:39:46.026 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_56
- 2026-05-09 17:39:46.040 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_13
- 2026-05-09 17:39:46.046 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_55
- 2026-05-09 17:39:46.054 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_64
- 2026-05-09 17:39:46.056 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_48
- 2026-05-09 17:39:46.072 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_57
- 2026-05-09 17:39:46.085 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_49
- 2026-05-09 17:39:46.087 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_4
- 2026-05-09 17:39:46.138 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getDaCustomerPageUsingGET_1
- 2026-05-09 17:39:46.236 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_1
- 2026-05-09 17:39:46.265 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_14
- 2026-05-09 17:39:46.314 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_56
- 2026-05-09 17:39:46.396 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: delByIdUsingDELETE_1
- 2026-05-09 17:39:46.398 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: delByIdsUsingDELETE_1
- 2026-05-09 17:39:46.400 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: disableUsingPUT_1
- 2026-05-09 17:39:46.402 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: enableUsingPUT_1
- 2026-05-09 17:39:46.406 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: importExcelUsingPOST_1
- 2026-05-09 17:39:46.411 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_2
- 2026-05-09 17:39:46.424 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_3
- 2026-05-09 17:39:46.452 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_5
- 2026-05-09 17:39:46.455 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_6
- 2026-05-09 17:39:46.458 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_7
- 2026-05-09 17:39:46.462 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_57
- 2026-05-09 17:39:46.480 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_49
- 2026-05-09 17:39:46.520 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: addUsingPOST_1
- 2026-05-09 17:39:46.529 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_58
- 2026-05-09 17:39:46.539 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_65
- 2026-05-09 17:39:46.541 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_50
- 2026-05-09 17:39:46.545 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_58
- 2026-05-09 17:39:46.552 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: save_gdUsingPOST_1
- 2026-05-09 17:39:46.568 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_50
- 2026-05-09 17:39:46.590 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_59
- 2026-05-09 17:39:46.598 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_66
- 2026-05-09 17:39:46.600 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_51
- 2026-05-09 17:39:46.605 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_59
- 2026-05-09 17:39:46.608 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_51
- 2026-05-09 17:39:46.612 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_60
- 2026-05-09 17:39:46.617 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_67
- 2026-05-09 17:39:46.619 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_52
- 2026-05-09 17:39:46.627 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_60
- 2026-05-09 17:39:46.631 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: save_gdUsingPOST_2
- 2026-05-09 17:39:46.638 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_52
- 2026-05-09 17:39:46.640 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_8
- 2026-05-09 17:39:46.658 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_9
- 2026-05-09 17:39:46.680 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_61
- 2026-05-09 17:39:46.762 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_2
- 2026-05-09 17:39:46.769 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_62
- 2026-05-09 17:39:46.776 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_15
- 2026-05-09 17:39:46.834 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_4
- 2026-05-09 17:39:46.845 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_10
- 2026-05-09 17:39:46.857 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_63
- 2026-05-09 17:39:46.872 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_68
- 2026-05-09 17:39:46.874 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_53
- 2026-05-09 17:39:46.890 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_61
- 2026-05-09 17:39:46.894 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_53
- 2026-05-09 17:39:46.996 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_54
- 2026-05-09 17:39:47.176 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_16
- 2026-05-09 17:39:47.273 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getListUsingGET_1
- 2026-05-09 17:39:47.389 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_64
- 2026-05-09 17:39:47.472 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: statUsingGET_1
- 2026-05-09 17:39:47.537 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_11
- 2026-05-09 17:39:47.545 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_65
- 2026-05-09 17:39:47.562 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_69
- 2026-05-09 17:39:47.564 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_54
- 2026-05-09 17:39:47.655 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_62
- 2026-05-09 17:39:47.659 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_55
- 2026-05-09 17:39:47.665 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_66
- 2026-05-09 17:39:47.678 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_63
- 2026-05-09 17:39:47.682 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_56
- 2026-05-09 17:39:47.702 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_12
- 2026-05-09 17:39:47.755 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_64
- 2026-05-09 17:39:47.801 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_17
- 2026-05-09 17:39:47.837 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: monthlyStatUsingGET_1
- 2026-05-09 17:39:47.841 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: monthlyStatSummaryUsingGET_1
- 2026-05-09 17:39:47.848 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getListUsingGET_2
- 2026-05-09 17:39:47.978 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_67
- 2026-05-09 17:39:48.032 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageListUsingGET_1
- 2026-05-09 17:39:48.036 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: statUsingGET_2
- 2026-05-09 17:39:48.095 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_13
- 2026-05-09 17:39:48.098 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_14
- 2026-05-09 17:39:48.153 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_65
- 2026-05-09 17:39:48.164 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_68
- 2026-05-09 17:39:48.234 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getYyWyjtzPageUsingGET_1
- 2026-05-09 17:39:48.236 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_15
- 2026-05-09 17:39:48.243 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_5
- 2026-05-09 17:39:48.255 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_18
- 2026-05-09 17:39:48.257 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_16
- 2026-05-09 17:39:48.282 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_19
- 2026-05-09 17:39:48.284 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_17
- 2026-05-09 17:39:48.368 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_20
- 2026-05-09 17:39:48.370 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_18
- 2026-05-09 17:39:48.375 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_69
- 2026-05-09 17:39:48.388 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_70
- 2026-05-09 17:39:48.390 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_55
- 2026-05-09 17:39:48.402 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_66
- 2026-05-09 17:39:48.407 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_57
- 2026-05-09 17:39:48.411 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_70
- 2026-05-09 17:39:48.414 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_71
- 2026-05-09 17:39:48.417 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_56
- 2026-05-09 17:39:48.429 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_67
- 2026-05-09 17:39:48.433 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_58
- 2026-05-09 17:39:48.437 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_21
- 2026-05-09 17:39:48.441 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_3
- 2026-05-09 17:39:48.452 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_68
- 2026-05-09 17:39:48.478 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_22
- 2026-05-09 17:39:48.545 [main] INFO io.undertow - starting server: Undertow - 2.0.31.Final
- 2026-05-09 17:39:48.560 [main] INFO org.xnio - XNIO version 3.3.8.Final
- 2026-05-09 17:39:48.579 [main] INFO org.xnio.nio - XNIO NIO Implementation Version 3.3.8.Final
- 2026-05-09 17:39:48.686 [main] INFO o.s.b.w.e.u.UndertowServletWebServer - Undertow started on port(s) 10506 (http) with context path ''
- 2026-05-09 17:39:48.791 [main] INFO c.a.c.n.r.NacosServiceRegistry - nacos registry, DEFAULT_GROUP collect-fees-api 172.19.0.11:10506 register finished
- 2026-05-09 17:39:50.309 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
- 2026-05-09 17:39:50.312 [main] INFO com.tofly.feesapi.FeesApiApplication - Started FeesApiApplication in 81.242 seconds (JVM running for 88.424)
- 2026-05-09 17:39:53.043 [RMI TCP Connection(17)-192.168.1.105] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
- 2026-05-09 17:39:53.043 [RMI TCP Connection(17)-192.168.1.105] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
- 2026-05-09 17:39:53.086 [RMI TCP Connection(17)-192.168.1.105] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 43 ms
- 2026-05-09 17:39:54.102 [XNIO-1 task-1] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/api/sfgl/yyqfmx/getpagelist/getPageList】请求开始==================
- 2026-05-09 17:40:08.462 [XNIO-1 task-1] DEBUG c.t.f.s.m.Y.getPageList_mpCount - ==> Preparing: SELECT COUNT(*) AS total FROM yy_qfmx a WHERE 1 = 1 AND a.yhbh = ? AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?)
- 2026-05-09 17:40:09.631 [XNIO-1 task-1] DEBUG c.t.f.s.m.Y.getPageList_mpCount - ==> Parameters: 70030001(String), 10753(String)
- 2026-05-09 17:40:09.953 [XNIO-1 task-1] DEBUG c.t.f.s.m.Y.getPageList_mpCount - <== Total: 1
- 2026-05-09 17:40:10.318 [XNIO-1 task-1] DEBUG c.t.f.s.m.YyQfmxMapper.getPageList - ==> Preparing: SELECT * FROM ( SELECT TMP.*, ROWNUM ROW_ID FROM ( SELECT a.*, b.yhdz, b.lxdh, (nvl(a.ysje, 0) + nvl(a.znj, 0)) yszje, c.gdbz, d.name AS ysxzmc, d.sjmc FROM yy_qfmx a LEFT JOIN yh_khjbxx b ON a.yhbh = b.yhbh LEFT JOIN yy_qfmx_gd c ON a.gdlsbh = c.gdlsbh LEFT JOIN (SELECT sj.code, sj.name AS sjmc, yslx.name, yslx.code AS ysxzbm FROM bm_sj sj LEFT JOIN bm_yslx yslx ON sj.yslx = yslx.code) d ON a.sjbm = d.code WHERE 1 = 1 AND a.yhbh = ? AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?) ORDER BY ysyf DESC, jsrq DESC, chbz ASC ) TMP WHERE ROWNUM <=?) WHERE ROW_ID > ?
- 2026-05-09 17:40:10.333 [XNIO-1 task-1] DEBUG c.t.f.s.m.YyQfmxMapper.getPageList - ==> Parameters: 70030001(String), 10753(String), 20(Long), 0(Long)
- 2026-05-09 17:40:11.219 [XNIO-1 task-1] DEBUG c.t.f.s.m.YyQfmxMapper.getPageList - <== Total: 20
- 2026-05-09 17:41:34.968 [XNIO-1 task-1] DEBUG c.t.f.s.m.YyQfmxMapper.getPageCount - ==> Preparing: SELECT sum(case when a.fylx='1' or a.fylx='2' then nvl(yssl,0) else 0 end) zyssl, sum(nvl(yssf,0)) zyssf, sum(nvl(yswsf,0)) zyswsf, sum(nvl(ysljf,0)) zysljf, sum(nvl(ysszyf,0)) zysszyf, sum( nvl(ysecjyf, 0) ) zysecjyf, sum( nvl(ysfjf, 0) ) zysfjf, sum( nvl(ysqt, 0) ) zysqt, sum(nvl(ysje,0)) zysje, sum(nvl(znj,0)) zznj, sum(nvl(ysje,0)+nvl(znj,0)) zyszje from yy_qfmx a left join yh_khjbxx b on a.yhbh = b.yhbh left join yy_qfmx_gd c on a.gdlsbh=c.gdlsbh left join ( select sj.code, sj.name as sjmc, yslx.name,yslx.code as ysxzbm from bm_sj sj left join bm_yslx yslx on sj.yslx=yslx.code ) d on a.sjbm = d.code WHERE 1=1 AND a.yhbh = ? AND a.sscbb in (select cbbbm from yh_sjqx where user_id=?)
- 2026-05-09 17:41:34.969 [XNIO-1 task-1] DEBUG c.t.f.s.m.YyQfmxMapper.getPageCount - ==> Parameters: 70030001(String), 10753(String)
- 2026-05-09 17:41:35.015 [XNIO-1 task-1] DEBUG c.t.f.s.m.YyQfmxMapper.getPageCount - <== Total: 1
- 2026-05-09 17:41:35.022 [XNIO-1 task-1] INFO c.t.feesapi.common.LogRecordAspect - =================【getPageList】请求结束==================
- 2026-05-09 17:41:37.544 [XNIO-1 task-2] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/api/sfgl/yyqfmx/getpagelist/getPageList】请求开始==================
- 2026-05-09 17:41:43.715 [XNIO-1 task-2] DEBUG c.t.f.s.m.Y.getPageList_mpCount - ==> Preparing: SELECT COUNT(*) AS total FROM yy_qfmx a WHERE 1 = 1 AND a.yhbh = ? AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?)
- 2026-05-09 17:41:43.719 [XNIO-1 task-2] DEBUG c.t.f.s.m.Y.getPageList_mpCount - ==> Parameters: 70030001(String), 10753(String)
- 2026-05-09 17:41:43.776 [XNIO-1 task-2] DEBUG c.t.f.s.m.Y.getPageList_mpCount - <== Total: 1
- 2026-05-09 17:41:44.370 [XNIO-1 task-2] DEBUG c.t.f.s.m.YyQfmxMapper.getPageList - ==> Preparing: SELECT * FROM ( SELECT TMP.*, ROWNUM ROW_ID FROM ( SELECT a.*, b.yhdz, b.lxdh, (nvl(a.ysje, 0) + nvl(a.znj, 0)) yszje, c.gdbz, d.name AS ysxzmc, d.sjmc FROM yy_qfmx a LEFT JOIN yh_khjbxx b ON a.yhbh = b.yhbh LEFT JOIN yy_qfmx_gd c ON a.gdlsbh = c.gdlsbh LEFT JOIN (SELECT sj.code, sj.name AS sjmc, yslx.name, yslx.code AS ysxzbm FROM bm_sj sj LEFT JOIN bm_yslx yslx ON sj.yslx = yslx.code) d ON a.sjbm = d.code WHERE 1 = 1 AND a.yhbh = ? AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?) ORDER BY ysyf DESC, jsrq DESC, chbz ASC ) TMP WHERE ROWNUM <=?) WHERE ROW_ID > ?
- 2026-05-09 17:41:44.373 [XNIO-1 task-2] DEBUG c.t.f.s.m.YyQfmxMapper.getPageList - ==> Parameters: 70030001(String), 10753(String), 20(Long), 0(Long)
- 2026-05-09 17:41:45.398 [XNIO-1 task-2] DEBUG c.t.f.s.m.YyQfmxMapper.getPageList - <== Total: 20
- 2026-05-09 17:43:32.931 [SpringContextShutdownHook] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'taskScheduler'
- 2026-05-09 17:43:32.944 [XNIO-1 task-2] DEBUG c.t.f.s.m.YyQfmxMapper.getPageCount - ==> Preparing: SELECT sum(case when a.fylx='1' or a.fylx='2' then nvl(yssl,0) else 0 end) zyssl, sum(nvl(yssf,0)) zyssf, sum(nvl(yswsf,0)) zyswsf, sum(nvl(ysljf,0)) zysljf, sum(nvl(ysszyf,0)) zysszyf, sum( nvl(ysecjyf, 0) ) zysecjyf, sum( nvl(ysfjf, 0) ) zysfjf, sum( nvl(ysqt, 0) ) zysqt, sum(nvl(ysje,0)) zysje, sum(nvl(znj,0)) zznj, sum(nvl(ysje,0)+nvl(znj,0)) zyszje from yy_qfmx a left join yh_khjbxx b on a.yhbh = b.yhbh left join yy_qfmx_gd c on a.gdlsbh=c.gdlsbh left join ( select sj.code, sj.name as sjmc, yslx.name,yslx.code as ysxzbm from bm_sj sj left join bm_yslx yslx on sj.yslx=yslx.code ) d on a.sjbm = d.code WHERE 1=1 AND a.yhbh = ? AND a.sscbb in (select cbbbm from yh_sjqx where user_id=?)
- 2026-05-09 17:43:32.945 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registering from Nacos Server now...
- 2026-05-09 17:43:32.945 [XNIO-1 task-2] DEBUG c.t.f.s.m.YyQfmxMapper.getPageCount - ==> Parameters: 70030001(String), 10753(String)
- 2026-05-09 17:43:32.948 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registration finished.
- 2026-05-09 17:43:32.950 [SpringContextShutdownHook] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'taskScheduler'
- 2026-05-09 17:43:33.047 [XNIO-1 task-2] DEBUG c.t.f.s.m.YyQfmxMapper.getPageCount - <== Total: 1
- 2026-05-09 17:43:33.048 [XNIO-1 task-2] INFO c.t.feesapi.common.LogRecordAspect - =================【getPageList】请求结束==================
- 2026-05-09 17:43:33.088 [SpringContextShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
- 2026-05-09 17:43:33.098 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-2} closing ...
- 2026-05-09 17:43:33.171 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-2} closed
- 2026-05-09 17:43:33.171 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-3} closing ...
- 2026-05-09 17:43:33.305 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-3} closed
- 2026-05-09 17:43:33.305 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closing ...
- 2026-05-09 17:43:33.877 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closed
- 2026-05-09 17:43:33.877 [SpringContextShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
- 2026-05-09 17:43:33.884 [SpringContextShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
- 2026-05-09 17:43:33.887 [SpringContextShutdownHook] INFO io.undertow - stopping server: Undertow - 2.0.31.Final
|