collect-fees-api.2026-05-09.0.log 580 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687
  1. 2026-05-09 11:48:16.487 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.0.20.Final
  2. 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
  3. 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
  4. 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
  5. 2026-05-09 11:48:22.347 [main] ERROR c.a.n.c.config.http.ServerHttpAgent - no available server
  6. 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
  7. java.net.ConnectException: no available server
  8. at com.alibaba.nacos.client.config.http.ServerHttpAgent.httpGet(ServerHttpAgent.java:123)
  9. at com.alibaba.nacos.client.config.http.MetricsHttpAgent.httpGet(MetricsHttpAgent.java:48)
  10. at com.alibaba.nacos.client.config.impl.ClientWorker.getServerConfig(ClientWorker.java:230)
  11. at com.alibaba.nacos.client.config.NacosConfigService.getConfigInner(NacosConfigService.java:143)
  12. at com.alibaba.nacos.client.config.NacosConfigService.getConfig(NacosConfigService.java:92)
  13. at com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder.loadNacosData(NacosPropertySourceBuilder.java:85)
  14. at com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder.build(NacosPropertySourceBuilder.java:74)
  15. at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosPropertySource(NacosPropertySourceLocator.java:204)
  16. at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosDataIfPresent(NacosPropertySourceLocator.java:191)
  17. at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosConfiguration(NacosPropertySourceLocator.java:161)
  18. at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadSharedConfiguration(NacosPropertySourceLocator.java:117)
  19. at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.locate(NacosPropertySourceLocator.java:101)
  20. at org.springframework.cloud.bootstrap.config.PropertySourceLocator.locateCollection(PropertySourceLocator.java:52)
  21. at org.springframework.cloud.bootstrap.config.PropertySourceLocator.locateCollection(PropertySourceLocator.java:47)
  22. at org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration.initialize(PropertySourceBootstrapConfiguration.java:98)
  23. at org.springframework.boot.SpringApplication.applyInitializers(SpringApplication.java:626)
  24. at org.springframework.boot.SpringApplication.prepareContext(SpringApplication.java:370)
  25. at org.springframework.boot.SpringApplication.run(SpringApplication.java:314)
  26. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1226)
  27. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1215)
  28. at com.tofly.feesapi.FeesApiApplication.main(FeesApiApplication.java:31)
  29. 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
  30. 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=
  31. 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
  32. 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
  33. 2026-05-09 11:48:26.384 [main] ERROR c.a.n.c.config.http.ServerHttpAgent - no available server
  34. 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
  35. java.net.ConnectException: no available server
  36. at com.alibaba.nacos.client.config.http.ServerHttpAgent.httpGet(ServerHttpAgent.java:123)
  37. at com.alibaba.nacos.client.config.http.MetricsHttpAgent.httpGet(MetricsHttpAgent.java:48)
  38. at com.alibaba.nacos.client.config.impl.ClientWorker.getServerConfig(ClientWorker.java:230)
  39. at com.alibaba.nacos.client.config.NacosConfigService.getConfigInner(NacosConfigService.java:143)
  40. at com.alibaba.nacos.client.config.NacosConfigService.getConfig(NacosConfigService.java:92)
  41. at com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder.loadNacosData(NacosPropertySourceBuilder.java:85)
  42. at com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder.build(NacosPropertySourceBuilder.java:74)
  43. at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosPropertySource(NacosPropertySourceLocator.java:204)
  44. at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosDataIfPresent(NacosPropertySourceLocator.java:191)
  45. at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosConfiguration(NacosPropertySourceLocator.java:161)
  46. at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadSharedConfiguration(NacosPropertySourceLocator.java:117)
  47. at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.locate(NacosPropertySourceLocator.java:101)
  48. at org.springframework.cloud.bootstrap.config.PropertySourceLocator.locateCollection(PropertySourceLocator.java:52)
  49. at org.springframework.cloud.bootstrap.config.PropertySourceLocator.locateCollection(PropertySourceLocator.java:47)
  50. at org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration.initialize(PropertySourceBootstrapConfiguration.java:98)
  51. at org.springframework.boot.SpringApplication.applyInitializers(SpringApplication.java:626)
  52. at org.springframework.boot.SpringApplication.prepareContext(SpringApplication.java:370)
  53. at org.springframework.boot.SpringApplication.run(SpringApplication.java:314)
  54. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1226)
  55. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1215)
  56. at com.tofly.feesapi.FeesApiApplication.main(FeesApiApplication.java:31)
  57. 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
  58. 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=
  59. 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
  60. 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
  61. 2026-05-09 11:48:30.418 [main] ERROR c.a.n.c.config.http.ServerHttpAgent - no available server
  62. 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
  63. java.net.ConnectException: no available server
  64. at com.alibaba.nacos.client.config.http.ServerHttpAgent.httpGet(ServerHttpAgent.java:123)
  65. at com.alibaba.nacos.client.config.http.MetricsHttpAgent.httpGet(MetricsHttpAgent.java:48)
  66. at com.alibaba.nacos.client.config.impl.ClientWorker.getServerConfig(ClientWorker.java:230)
  67. at com.alibaba.nacos.client.config.NacosConfigService.getConfigInner(NacosConfigService.java:143)
  68. at com.alibaba.nacos.client.config.NacosConfigService.getConfig(NacosConfigService.java:92)
  69. at com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder.loadNacosData(NacosPropertySourceBuilder.java:85)
  70. at com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder.build(NacosPropertySourceBuilder.java:74)
  71. at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosPropertySource(NacosPropertySourceLocator.java:204)
  72. at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosDataIfPresent(NacosPropertySourceLocator.java:191)
  73. at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosConfiguration(NacosPropertySourceLocator.java:161)
  74. at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadSharedConfiguration(NacosPropertySourceLocator.java:117)
  75. at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.locate(NacosPropertySourceLocator.java:101)
  76. at org.springframework.cloud.bootstrap.config.PropertySourceLocator.locateCollection(PropertySourceLocator.java:52)
  77. at org.springframework.cloud.bootstrap.config.PropertySourceLocator.locateCollection(PropertySourceLocator.java:47)
  78. at org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration.initialize(PropertySourceBootstrapConfiguration.java:98)
  79. at org.springframework.boot.SpringApplication.applyInitializers(SpringApplication.java:626)
  80. at org.springframework.boot.SpringApplication.prepareContext(SpringApplication.java:370)
  81. at org.springframework.boot.SpringApplication.run(SpringApplication.java:314)
  82. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1226)
  83. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1215)
  84. at com.tofly.feesapi.FeesApiApplication.main(FeesApiApplication.java:31)
  85. 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
  86. 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=
  87. 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
  88. 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
  89. 2026-05-09 11:48:34.457 [main] ERROR c.a.n.c.config.http.ServerHttpAgent - no available server
  90. 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
  91. java.net.ConnectException: no available server
  92. at com.alibaba.nacos.client.config.http.ServerHttpAgent.httpGet(ServerHttpAgent.java:123)
  93. at com.alibaba.nacos.client.config.http.MetricsHttpAgent.httpGet(MetricsHttpAgent.java:48)
  94. at com.alibaba.nacos.client.config.impl.ClientWorker.getServerConfig(ClientWorker.java:230)
  95. at com.alibaba.nacos.client.config.NacosConfigService.getConfigInner(NacosConfigService.java:143)
  96. at com.alibaba.nacos.client.config.NacosConfigService.getConfig(NacosConfigService.java:92)
  97. at com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder.loadNacosData(NacosPropertySourceBuilder.java:85)
  98. at com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder.build(NacosPropertySourceBuilder.java:74)
  99. at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosPropertySource(NacosPropertySourceLocator.java:204)
  100. at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosDataIfPresent(NacosPropertySourceLocator.java:191)
  101. at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosConfiguration(NacosPropertySourceLocator.java:161)
  102. at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadSharedConfiguration(NacosPropertySourceLocator.java:117)
  103. at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.locate(NacosPropertySourceLocator.java:101)
  104. at org.springframework.cloud.bootstrap.config.PropertySourceLocator.locateCollection(PropertySourceLocator.java:52)
  105. at org.springframework.cloud.bootstrap.config.PropertySourceLocator.locateCollection(PropertySourceLocator.java:47)
  106. at org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration.initialize(PropertySourceBootstrapConfiguration.java:98)
  107. at org.springframework.boot.SpringApplication.applyInitializers(SpringApplication.java:626)
  108. at org.springframework.boot.SpringApplication.prepareContext(SpringApplication.java:370)
  109. at org.springframework.boot.SpringApplication.run(SpringApplication.java:314)
  110. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1226)
  111. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1215)
  112. at com.tofly.feesapi.FeesApiApplication.main(FeesApiApplication.java:31)
  113. 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
  114. 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=
  115. 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
  116. 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
  117. 2026-05-09 11:48:38.486 [main] ERROR c.a.n.c.config.http.ServerHttpAgent - no available server
  118. 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
  119. java.net.ConnectException: no available server
  120. at com.alibaba.nacos.client.config.http.ServerHttpAgent.httpGet(ServerHttpAgent.java:123)
  121. at com.alibaba.nacos.client.config.http.MetricsHttpAgent.httpGet(MetricsHttpAgent.java:48)
  122. at com.alibaba.nacos.client.config.impl.ClientWorker.getServerConfig(ClientWorker.java:230)
  123. at com.alibaba.nacos.client.config.NacosConfigService.getConfigInner(NacosConfigService.java:143)
  124. at com.alibaba.nacos.client.config.NacosConfigService.getConfig(NacosConfigService.java:92)
  125. at com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder.loadNacosData(NacosPropertySourceBuilder.java:85)
  126. at com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder.build(NacosPropertySourceBuilder.java:74)
  127. at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosPropertySource(NacosPropertySourceLocator.java:204)
  128. at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosDataIfPresent(NacosPropertySourceLocator.java:191)
  129. at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadApplicationConfiguration(NacosPropertySourceLocator.java:142)
  130. at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.locate(NacosPropertySourceLocator.java:103)
  131. at org.springframework.cloud.bootstrap.config.PropertySourceLocator.locateCollection(PropertySourceLocator.java:52)
  132. at org.springframework.cloud.bootstrap.config.PropertySourceLocator.locateCollection(PropertySourceLocator.java:47)
  133. at org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration.initialize(PropertySourceBootstrapConfiguration.java:98)
  134. at org.springframework.boot.SpringApplication.applyInitializers(SpringApplication.java:626)
  135. at org.springframework.boot.SpringApplication.prepareContext(SpringApplication.java:370)
  136. at org.springframework.boot.SpringApplication.run(SpringApplication.java:314)
  137. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1226)
  138. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1215)
  139. at com.tofly.feesapi.FeesApiApplication.main(FeesApiApplication.java:31)
  140. 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
  141. 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=
  142. 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]
  143. 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
  144. 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
  145. 2026-05-09 11:48:42.526 [main] ERROR c.a.n.c.config.http.ServerHttpAgent - no available server
  146. 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
  147. java.net.ConnectException: no available server
  148. at com.alibaba.nacos.client.config.http.ServerHttpAgent.httpGet(ServerHttpAgent.java:123)
  149. at com.alibaba.nacos.client.config.http.MetricsHttpAgent.httpGet(MetricsHttpAgent.java:48)
  150. at com.alibaba.nacos.client.config.impl.ClientWorker.getServerConfig(ClientWorker.java:230)
  151. at com.alibaba.nacos.client.config.NacosConfigService.getConfigInner(NacosConfigService.java:143)
  152. at com.alibaba.nacos.client.config.NacosConfigService.getConfig(NacosConfigService.java:92)
  153. at com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder.loadNacosData(NacosPropertySourceBuilder.java:85)
  154. at com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder.build(NacosPropertySourceBuilder.java:74)
  155. at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosPropertySource(NacosPropertySourceLocator.java:204)
  156. at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosDataIfPresent(NacosPropertySourceLocator.java:191)
  157. at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadApplicationConfiguration(NacosPropertySourceLocator.java:145)
  158. at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.locate(NacosPropertySourceLocator.java:103)
  159. at org.springframework.cloud.bootstrap.config.PropertySourceLocator.locateCollection(PropertySourceLocator.java:52)
  160. at org.springframework.cloud.bootstrap.config.PropertySourceLocator.locateCollection(PropertySourceLocator.java:47)
  161. at org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration.initialize(PropertySourceBootstrapConfiguration.java:98)
  162. at org.springframework.boot.SpringApplication.applyInitializers(SpringApplication.java:626)
  163. at org.springframework.boot.SpringApplication.prepareContext(SpringApplication.java:370)
  164. at org.springframework.boot.SpringApplication.run(SpringApplication.java:314)
  165. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1226)
  166. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1215)
  167. at com.tofly.feesapi.FeesApiApplication.main(FeesApiApplication.java:31)
  168. 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
  169. 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=
  170. 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
  171. 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
  172. 2026-05-09 11:48:46.566 [main] ERROR c.a.n.c.config.http.ServerHttpAgent - no available server
  173. 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
  174. java.net.ConnectException: no available server
  175. at com.alibaba.nacos.client.config.http.ServerHttpAgent.httpGet(ServerHttpAgent.java:123)
  176. at com.alibaba.nacos.client.config.http.MetricsHttpAgent.httpGet(MetricsHttpAgent.java:48)
  177. at com.alibaba.nacos.client.config.impl.ClientWorker.getServerConfig(ClientWorker.java:230)
  178. at com.alibaba.nacos.client.config.NacosConfigService.getConfigInner(NacosConfigService.java:143)
  179. at com.alibaba.nacos.client.config.NacosConfigService.getConfig(NacosConfigService.java:92)
  180. at com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder.loadNacosData(NacosPropertySourceBuilder.java:85)
  181. at com.alibaba.cloud.nacos.client.NacosPropertySourceBuilder.build(NacosPropertySourceBuilder.java:74)
  182. at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosPropertySource(NacosPropertySourceLocator.java:204)
  183. at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadNacosDataIfPresent(NacosPropertySourceLocator.java:191)
  184. at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.loadApplicationConfiguration(NacosPropertySourceLocator.java:150)
  185. at com.alibaba.cloud.nacos.client.NacosPropertySourceLocator.locate(NacosPropertySourceLocator.java:103)
  186. at org.springframework.cloud.bootstrap.config.PropertySourceLocator.locateCollection(PropertySourceLocator.java:52)
  187. at org.springframework.cloud.bootstrap.config.PropertySourceLocator.locateCollection(PropertySourceLocator.java:47)
  188. at org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration.initialize(PropertySourceBootstrapConfiguration.java:98)
  189. at org.springframework.boot.SpringApplication.applyInitializers(SpringApplication.java:626)
  190. at org.springframework.boot.SpringApplication.prepareContext(SpringApplication.java:370)
  191. at org.springframework.boot.SpringApplication.run(SpringApplication.java:314)
  192. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1226)
  193. at org.springframework.boot.SpringApplication.run(SpringApplication.java:1215)
  194. at com.tofly.feesapi.FeesApiApplication.main(FeesApiApplication.java:31)
  195. 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
  196. 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=
  197. 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]
  198. 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'}]
  199. 2026-05-09 11:48:46.571 [main] INFO com.tofly.feesapi.FeesApiApplication - The following profiles are active: bd
  200. 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.
  201. 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.
  202. 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!
  203. 2026-05-09 11:48:48.782 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  204. 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.
  205. 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.
  206. 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.
  207. 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!
  208. 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!
  209. 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!
  210. 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!
  211. 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!
  212. 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!
  213. 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!
  214. 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!
  215. 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!
  216. 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!
  217. 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!
  218. 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!
  219. 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!
  220. 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!
  221. 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!
  222. 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!
  223. 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!
  224. 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!
  225. 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!
  226. 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!
  227. 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!
  228. 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!
  229. 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!
  230. 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!
  231. 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!
  232. 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!
  233. 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!
  234. 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!
  235. 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!
  236. 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!
  237. 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!
  238. 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!
  239. 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!
  240. 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!
  241. 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!
  242. 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!
  243. 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!
  244. 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!
  245. 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!
  246. 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!
  247. 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!
  248. 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!
  249. 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!
  250. 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!
  251. 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!
  252. 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!
  253. 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!
  254. 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!
  255. 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!
  256. 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!
  257. 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!
  258. 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!
  259. 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!
  260. 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!
  261. 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!
  262. 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!
  263. 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!
  264. 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!
  265. 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!
  266. 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!
  267. 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!
  268. 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!
  269. 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!
  270. 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!
  271. 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!
  272. 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!
  273. 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!
  274. 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!
  275. 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!
  276. 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!
  277. 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!
  278. 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!
  279. 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!
  280. 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!
  281. 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!
  282. 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!
  283. 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!
  284. 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!
  285. 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!
  286. 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!
  287. 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!
  288. 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!
  289. 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!
  290. 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!
  291. 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!
  292. 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!
  293. 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!
  294. 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!
  295. 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!
  296. 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!
  297. 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!
  298. 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!
  299. 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!
  300. 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!
  301. 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!
  302. 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!
  303. 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!
  304. 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!
  305. 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!
  306. 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!
  307. 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!
  308. 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!
  309. 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!
  310. 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!
  311. 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!
  312. 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!
  313. 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.
  314. 2026-05-09 11:48:49.449 [main] INFO o.s.cloud.context.scope.GenericScope - BeanFactory id=6ba9fcc8-98cb-35e6-8547-52fc325bd065
  315. 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)
  316. 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)
  317. 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)
  318. 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)
  319. 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)
  320. 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)
  321. 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
  322. 2026-05-09 11:48:50.150 [main] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  323. 2026-05-09 11:48:50.150 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3561 ms
  324. 2026-05-09 11:48:57.862 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1,master} inited
  325. 2026-05-09 11:49:00.077 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-2,udb} inited
  326. 2026-05-09 11:49:01.818 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-3,flowDB} inited
  327. 2026-05-09 11:49:01.818 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [udb] success
  328. 2026-05-09 11:49:01.818 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [flowDB] success
  329. 2026-05-09 11:49:01.818 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
  330. 2026-05-09 11:49:01.818 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [3] datasource,primary datasource named [master]
  331. 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]
  332. 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]
  333. 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".
  334. 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.
  335. 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".
  336. 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.
  337. 2026-05-09 11:49:22.462 [main] INFO org.redisson.Version - Redisson 3.23.2
  338. 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
  339. 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
  340. 2026-05-09 11:49:31.841 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
  341. 2026-05-09 11:49:31.990 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 19 endpoint(s) beneath base path '/actuator'
  342. 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)]
  343. 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]
  344. 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]
  345. 2026-05-09 11:49:32.477 [main] INFO o.s.s.c.ThreadPoolTaskScheduler - Initializing ExecutorService 'taskScheduler'
  346. 2026-05-09 11:49:32.633 [main] INFO o.s.b.a.s.s.UserDetailsServiceAutoConfiguration -
  347. Using generated security password: ddff6996-e1ae-4c53-82db-6cbd1a942758
  348. 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]
  349. 2026-05-09 11:49:34.075 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
  350. 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.
  351. 2026-05-09 11:49:34.323 [main] INFO s.d.s.w.p.DocumentationPluginsBootstrapper - Documentation plugins bootstrapped
  352. 2026-05-09 11:49:34.325 [main] INFO s.d.s.w.p.DocumentationPluginsBootstrapper - Found 1 custom documentation plugin(s)
  353. 2026-05-09 11:49:34.434 [main] INFO s.d.s.w.s.ApiListingReferenceScanner - Scanning for api listing references
  354. 2026-05-09 11:49:34.782 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_1
  355. 2026-05-09 11:49:34.785 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_1
  356. 2026-05-09 11:49:34.786 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_1
  357. 2026-05-09 11:49:34.786 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_1
  358. 2026-05-09 11:49:34.789 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_1
  359. 2026-05-09 11:49:34.790 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_1
  360. 2026-05-09 11:49:34.807 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: addCustomerUsingPOST_1
  361. 2026-05-09 11:49:34.807 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: deleteCustomerUsingPOST_1
  362. 2026-05-09 11:49:34.808 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getBindCustomerUsingGET_1
  363. 2026-05-09 11:49:34.809 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: selectCustomerUsingGET_1
  364. 2026-05-09 11:49:34.810 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getBindCustomerAndQfUsingGET_1
  365. 2026-05-09 11:49:34.811 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerBasicInFoUsingGET_1
  366. 2026-05-09 11:49:34.811 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerChargeInFoUsingGET_1
  367. 2026-05-09 11:49:34.812 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerInFoUsingGET_1
  368. 2026-05-09 11:49:34.813 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerQfInFoUsingGET_1
  369. 2026-05-09 11:49:34.813 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerReadMeterInFoUsingGET_1
  370. 2026-05-09 11:49:34.822 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_2
  371. 2026-05-09 11:49:34.843 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_2
  372. 2026-05-09 11:49:34.845 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_2
  373. 2026-05-09 11:49:34.845 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_2
  374. 2026-05-09 11:49:34.849 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_2
  375. 2026-05-09 11:49:34.850 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_2
  376. 2026-05-09 11:49:34.863 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_3
  377. 2026-05-09 11:49:34.864 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_3
  378. 2026-05-09 11:49:34.864 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_3
  379. 2026-05-09 11:49:34.866 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_3
  380. 2026-05-09 11:49:34.867 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_3
  381. 2026-05-09 11:49:34.872 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_3
  382. 2026-05-09 11:49:34.877 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_4
  383. 2026-05-09 11:49:34.877 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_4
  384. 2026-05-09 11:49:34.878 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_4
  385. 2026-05-09 11:49:34.879 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_4
  386. 2026-05-09 11:49:34.880 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_4
  387. 2026-05-09 11:49:34.881 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_5
  388. 2026-05-09 11:49:34.881 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_5
  389. 2026-05-09 11:49:34.882 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_5
  390. 2026-05-09 11:49:34.884 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_5
  391. 2026-05-09 11:49:34.885 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_5
  392. 2026-05-09 11:49:34.889 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_4
  393. 2026-05-09 11:49:34.893 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_6
  394. 2026-05-09 11:49:34.898 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_5
  395. 2026-05-09 11:49:34.898 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_6
  396. 2026-05-09 11:49:34.899 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_6
  397. 2026-05-09 11:49:34.901 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_6
  398. 2026-05-09 11:49:34.902 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_6
  399. 2026-05-09 11:49:34.904 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_1
  400. 2026-05-09 11:49:34.908 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_7
  401. 2026-05-09 11:49:34.909 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_7
  402. 2026-05-09 11:49:34.910 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_7
  403. 2026-05-09 11:49:34.912 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_7
  404. 2026-05-09 11:49:34.913 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_7
  405. 2026-05-09 11:49:34.915 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_8
  406. 2026-05-09 11:49:34.916 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getFffsListUsingGET_1
  407. 2026-05-09 11:49:34.916 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_8
  408. 2026-05-09 11:49:34.917 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_9
  409. 2026-05-09 11:49:34.920 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_8
  410. 2026-05-09 11:49:34.921 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_8
  411. 2026-05-09 11:49:34.924 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_2
  412. 2026-05-09 11:49:34.928 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_9
  413. 2026-05-09 11:49:34.929 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_10
  414. 2026-05-09 11:49:34.929 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_11
  415. 2026-05-09 11:49:34.931 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_9
  416. 2026-05-09 11:49:34.932 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_9
  417. 2026-05-09 11:49:34.934 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_10
  418. 2026-05-09 11:49:34.935 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_12
  419. 2026-05-09 11:49:34.935 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_13
  420. 2026-05-09 11:49:34.938 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_10
  421. 2026-05-09 11:49:34.938 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_10
  422. 2026-05-09 11:49:34.941 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_11
  423. 2026-05-09 11:49:34.942 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_14
  424. 2026-05-09 11:49:34.943 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_15
  425. 2026-05-09 11:49:34.945 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_11
  426. 2026-05-09 11:49:34.945 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_11
  427. 2026-05-09 11:49:34.951 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_12
  428. 2026-05-09 11:49:34.951 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_16
  429. 2026-05-09 11:49:34.952 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_8
  430. 2026-05-09 11:49:34.953 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_12
  431. 2026-05-09 11:49:34.954 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_12
  432. 2026-05-09 11:49:34.958 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_13
  433. 2026-05-09 11:49:34.959 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_17
  434. 2026-05-09 11:49:34.959 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_9
  435. 2026-05-09 11:49:34.961 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_13
  436. 2026-05-09 11:49:34.961 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_13
  437. 2026-05-09 11:49:34.963 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_14
  438. 2026-05-09 11:49:34.964 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_18
  439. 2026-05-09 11:49:34.965 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_19
  440. 2026-05-09 11:49:34.967 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_14
  441. 2026-05-09 11:49:34.968 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_14
  442. 2026-05-09 11:49:34.973 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_15
  443. 2026-05-09 11:49:34.982 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_6
  444. 2026-05-09 11:49:34.999 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_15
  445. 2026-05-09 11:49:35.002 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_3
  446. 2026-05-09 11:49:35.006 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_16
  447. 2026-05-09 11:49:35.007 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_20
  448. 2026-05-09 11:49:35.008 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_10
  449. 2026-05-09 11:49:35.009 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_16
  450. 2026-05-09 11:49:35.010 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_15
  451. 2026-05-09 11:49:35.015 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_17
  452. 2026-05-09 11:49:35.020 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_7
  453. 2026-05-09 11:49:35.021 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_21
  454. 2026-05-09 11:49:35.022 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_11
  455. 2026-05-09 11:49:35.024 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_17
  456. 2026-05-09 11:49:35.024 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_16
  457. 2026-05-09 11:49:35.038 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_8
  458. 2026-05-09 11:49:35.039 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveBatchUsingPOST_1
  459. 2026-05-09 11:49:35.135 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_18
  460. 2026-05-09 11:49:35.139 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_22
  461. 2026-05-09 11:49:35.139 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_12
  462. 2026-05-09 11:49:35.140 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_18
  463. 2026-05-09 11:49:35.141 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_17
  464. 2026-05-09 11:49:35.142 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_19
  465. 2026-05-09 11:49:35.145 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_23
  466. 2026-05-09 11:49:35.146 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_13
  467. 2026-05-09 11:49:35.148 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_19
  468. 2026-05-09 11:49:35.149 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_18
  469. 2026-05-09 11:49:35.150 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_20
  470. 2026-05-09 11:49:35.151 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_24
  471. 2026-05-09 11:49:35.154 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_20
  472. 2026-05-09 11:49:35.155 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_19
  473. 2026-05-09 11:49:35.160 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_21
  474. 2026-05-09 11:49:35.161 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_25
  475. 2026-05-09 11:49:35.161 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_14
  476. 2026-05-09 11:49:35.163 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_21
  477. 2026-05-09 11:49:35.178 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: Xh_WordToPdfUsingPOST_1
  478. 2026-05-09 11:49:35.180 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_22
  479. 2026-05-09 11:49:35.185 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_26
  480. 2026-05-09 11:49:35.185 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_15
  481. 2026-05-09 11:49:35.188 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_22
  482. 2026-05-09 11:49:35.189 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_27
  483. 2026-05-09 11:49:35.190 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_16
  484. 2026-05-09 11:49:35.192 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_23
  485. 2026-05-09 11:49:35.193 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_20
  486. 2026-05-09 11:49:35.215 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_23
  487. 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
  488. 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
  489. 2026-05-09 11:49:35.295 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportYsqdUsingGET_1
  490. 2026-05-09 11:49:35.335 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_24
  491. 2026-05-09 11:49:35.336 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_28
  492. 2026-05-09 11:49:35.337 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_17
  493. 2026-05-09 11:49:35.355 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_25
  494. 2026-05-09 11:49:35.356 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_29
  495. 2026-05-09 11:49:35.356 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_18
  496. 2026-05-09 11:49:35.359 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_24
  497. 2026-05-09 11:49:35.359 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_21
  498. 2026-05-09 11:49:35.368 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_26
  499. 2026-05-09 11:49:35.373 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_30
  500. 2026-05-09 11:49:35.373 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_19
  501. 2026-05-09 11:49:35.374 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_25
  502. 2026-05-09 11:49:35.375 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_22
  503. 2026-05-09 11:49:35.377 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_27
  504. 2026-05-09 11:49:35.380 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_31
  505. 2026-05-09 11:49:35.381 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_20
  506. 2026-05-09 11:49:35.382 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_26
  507. 2026-05-09 11:49:35.383 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_23
  508. 2026-05-09 11:49:35.392 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_28
  509. 2026-05-09 11:49:35.396 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_32
  510. 2026-05-09 11:49:35.397 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_21
  511. 2026-05-09 11:49:35.400 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_27
  512. 2026-05-09 11:49:35.400 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_24
  513. 2026-05-09 11:49:35.407 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxBtsqPageUsingGET_1
  514. 2026-05-09 11:49:35.409 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_29
  515. 2026-05-09 11:49:35.412 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_33
  516. 2026-05-09 11:49:35.413 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_22
  517. 2026-05-09 11:49:35.415 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_28
  518. 2026-05-09 11:49:35.417 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_25
  519. 2026-05-09 11:49:35.421 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxBzsqPageUsingGET_1
  520. 2026-05-09 11:49:35.426 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_30
  521. 2026-05-09 11:49:35.431 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_34
  522. 2026-05-09 11:49:35.432 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_23
  523. 2026-05-09 11:49:35.435 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_29
  524. 2026-05-09 11:49:35.435 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_26
  525. 2026-05-09 11:49:35.441 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxDbsqPageUsingGET_1
  526. 2026-05-09 11:49:35.444 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPOST_1
  527. 2026-05-09 11:49:35.446 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_31
  528. 2026-05-09 11:49:35.450 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_35
  529. 2026-05-09 11:49:35.450 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_24
  530. 2026-05-09 11:49:35.453 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_30
  531. 2026-05-09 11:49:35.454 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_27
  532. 2026-05-09 11:49:35.455 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_32
  533. 2026-05-09 11:49:35.457 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_36
  534. 2026-05-09 11:49:35.458 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_25
  535. 2026-05-09 11:49:35.462 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_31
  536. 2026-05-09 11:49:35.463 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_28
  537. 2026-05-09 11:49:35.465 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_33
  538. 2026-05-09 11:49:35.466 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_37
  539. 2026-05-09 11:49:35.467 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_26
  540. 2026-05-09 11:49:35.470 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_32
  541. 2026-05-09 11:49:35.472 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_29
  542. 2026-05-09 11:49:35.481 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_34
  543. 2026-05-09 11:49:35.484 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_38
  544. 2026-05-09 11:49:35.484 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_39
  545. 2026-05-09 11:49:35.486 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_33
  546. 2026-05-09 11:49:35.487 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_30
  547. 2026-05-09 11:49:35.489 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_35
  548. 2026-05-09 11:49:35.495 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_40
  549. 2026-05-09 11:49:35.496 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_27
  550. 2026-05-09 11:49:35.499 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_34
  551. 2026-05-09 11:49:35.500 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_31
  552. 2026-05-09 11:49:35.505 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxHfsqPageUsingGET_1
  553. 2026-05-09 11:49:35.507 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_36
  554. 2026-05-09 11:49:35.512 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_41
  555. 2026-05-09 11:49:35.513 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_28
  556. 2026-05-09 11:49:35.515 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_35
  557. 2026-05-09 11:49:35.516 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_32
  558. 2026-05-09 11:49:35.523 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxLwsqPageUsingGET_1
  559. 2026-05-09 11:49:35.525 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_37
  560. 2026-05-09 11:49:35.530 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_42
  561. 2026-05-09 11:49:35.531 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_29
  562. 2026-05-09 11:49:35.533 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_36
  563. 2026-05-09 11:49:35.534 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_33
  564. 2026-05-09 11:49:35.539 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxLxdhsqPageUsingGET_1
  565. 2026-05-09 11:49:35.541 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_38
  566. 2026-05-09 11:49:35.546 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_43
  567. 2026-05-09 11:49:35.546 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_30
  568. 2026-05-09 11:49:35.550 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_37
  569. 2026-05-09 11:49:35.551 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_34
  570. 2026-05-09 11:49:35.559 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_39
  571. 2026-05-09 11:49:35.564 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_44
  572. 2026-05-09 11:49:35.565 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_31
  573. 2026-05-09 11:49:35.568 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_38
  574. 2026-05-09 11:49:35.569 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_35
  575. 2026-05-09 11:49:35.574 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxDbsqPageUsingGET_2
  576. 2026-05-09 11:49:35.580 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_1
  577. 2026-05-09 11:49:35.582 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_40
  578. 2026-05-09 11:49:35.584 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_45
  579. 2026-05-09 11:49:35.585 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_32
  580. 2026-05-09 11:49:35.588 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_39
  581. 2026-05-09 11:49:35.594 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_36
  582. 2026-05-09 11:49:35.595 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_41
  583. 2026-05-09 11:49:35.597 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_46
  584. 2026-05-09 11:49:35.598 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_33
  585. 2026-05-09 11:49:35.600 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_40
  586. 2026-05-09 11:49:35.601 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_37
  587. 2026-05-09 11:49:35.603 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_42
  588. 2026-05-09 11:49:35.605 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_47
  589. 2026-05-09 11:49:35.606 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_34
  590. 2026-05-09 11:49:35.609 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_41
  591. 2026-05-09 11:49:35.610 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_38
  592. 2026-05-09 11:49:35.611 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_43
  593. 2026-05-09 11:49:35.613 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_48
  594. 2026-05-09 11:49:35.614 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_49
  595. 2026-05-09 11:49:35.616 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_42
  596. 2026-05-09 11:49:35.617 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_39
  597. 2026-05-09 11:49:35.619 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_44
  598. 2026-05-09 11:49:35.621 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_50
  599. 2026-05-09 11:49:35.622 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_51
  600. 2026-05-09 11:49:35.624 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_43
  601. 2026-05-09 11:49:35.625 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_40
  602. 2026-05-09 11:49:35.627 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_45
  603. 2026-05-09 11:49:35.631 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_52
  604. 2026-05-09 11:49:35.632 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_35
  605. 2026-05-09 11:49:35.635 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_44
  606. 2026-05-09 11:49:35.636 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_41
  607. 2026-05-09 11:49:35.640 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxWzjbsqPageUsingGET_1
  608. 2026-05-09 11:49:35.642 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_46
  609. 2026-05-09 11:49:35.647 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_53
  610. 2026-05-09 11:49:35.648 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_36
  611. 2026-05-09 11:49:35.651 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_45
  612. 2026-05-09 11:49:35.652 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_42
  613. 2026-05-09 11:49:35.658 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxXbsqPageUsingGET_1
  614. 2026-05-09 11:49:35.660 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_47
  615. 2026-05-09 11:49:35.665 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_54
  616. 2026-05-09 11:49:35.666 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_37
  617. 2026-05-09 11:49:35.668 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_46
  618. 2026-05-09 11:49:35.670 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_43
  619. 2026-05-09 11:49:35.675 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxXhsqPageUsingGET_1
  620. 2026-05-09 11:49:35.676 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPOST_2
  621. 2026-05-09 11:49:35.678 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_48
  622. 2026-05-09 11:49:35.680 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_55
  623. 2026-05-09 11:49:35.681 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_38
  624. 2026-05-09 11:49:35.685 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_47
  625. 2026-05-09 11:49:35.685 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_44
  626. 2026-05-09 11:49:35.687 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_49
  627. 2026-05-09 11:49:35.691 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_56
  628. 2026-05-09 11:49:35.692 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_39
  629. 2026-05-09 11:49:35.694 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_48
  630. 2026-05-09 11:49:35.695 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_45
  631. 2026-05-09 11:49:35.701 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_9
  632. 2026-05-09 11:49:35.703 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_57
  633. 2026-05-09 11:49:35.704 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_40
  634. 2026-05-09 11:49:35.706 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_49
  635. 2026-05-09 11:49:35.707 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_58
  636. 2026-05-09 11:49:35.708 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_41
  637. 2026-05-09 11:49:35.710 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_50
  638. 2026-05-09 11:49:35.716 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_10
  639. 2026-05-09 11:49:35.718 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_50
  640. 2026-05-09 11:49:35.722 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_59
  641. 2026-05-09 11:49:35.723 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_42
  642. 2026-05-09 11:49:35.726 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_51
  643. 2026-05-09 11:49:35.729 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_46
  644. 2026-05-09 11:49:35.730 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_2
  645. 2026-05-09 11:49:35.745 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_52
  646. 2026-05-09 11:49:35.751 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_51
  647. 2026-05-09 11:49:35.758 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_11
  648. 2026-05-09 11:49:35.766 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_1
  649. 2026-05-09 11:49:35.773 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_52
  650. 2026-05-09 11:49:35.774 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_43
  651. 2026-05-09 11:49:35.789 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_53
  652. 2026-05-09 11:49:35.793 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_60
  653. 2026-05-09 11:49:35.794 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_44
  654. 2026-05-09 11:49:35.796 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_53
  655. 2026-05-09 11:49:35.797 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_47
  656. 2026-05-09 11:49:35.798 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_54
  657. 2026-05-09 11:49:35.801 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_61
  658. 2026-05-09 11:49:35.801 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_45
  659. 2026-05-09 11:49:35.806 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_54
  660. 2026-05-09 11:49:35.810 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_48
  661. 2026-05-09 11:49:35.811 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_3
  662. 2026-05-09 11:49:35.813 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_62
  663. 2026-05-09 11:49:35.814 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_46
  664. 2026-05-09 11:49:35.816 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_55
  665. 2026-05-09 11:49:35.820 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_12
  666. 2026-05-09 11:49:35.824 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_63
  667. 2026-05-09 11:49:35.826 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_47
  668. 2026-05-09 11:49:35.828 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_56
  669. 2026-05-09 11:49:35.834 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_13
  670. 2026-05-09 11:49:35.836 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_55
  671. 2026-05-09 11:49:35.838 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_64
  672. 2026-05-09 11:49:35.839 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_48
  673. 2026-05-09 11:49:35.844 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_57
  674. 2026-05-09 11:49:35.850 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_49
  675. 2026-05-09 11:49:35.851 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_4
  676. 2026-05-09 11:49:35.869 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getDaCustomerPageUsingGET_1
  677. 2026-05-09 11:49:35.893 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_1
  678. 2026-05-09 11:49:35.904 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_14
  679. 2026-05-09 11:49:35.923 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_56
  680. 2026-05-09 11:49:35.957 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: delByIdUsingDELETE_1
  681. 2026-05-09 11:49:35.958 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: delByIdsUsingDELETE_1
  682. 2026-05-09 11:49:35.959 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: disableUsingPUT_1
  683. 2026-05-09 11:49:35.960 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: enableUsingPUT_1
  684. 2026-05-09 11:49:35.962 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: importExcelUsingPOST_1
  685. 2026-05-09 11:49:35.964 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_2
  686. 2026-05-09 11:49:35.968 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_3
  687. 2026-05-09 11:49:35.982 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_5
  688. 2026-05-09 11:49:35.984 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_6
  689. 2026-05-09 11:49:35.985 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_7
  690. 2026-05-09 11:49:35.987 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_57
  691. 2026-05-09 11:49:35.994 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_49
  692. 2026-05-09 11:49:36.012 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: addUsingPOST_1
  693. 2026-05-09 11:49:36.017 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_58
  694. 2026-05-09 11:49:36.023 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_65
  695. 2026-05-09 11:49:36.024 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_50
  696. 2026-05-09 11:49:36.026 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_58
  697. 2026-05-09 11:49:36.029 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: save_gdUsingPOST_1
  698. 2026-05-09 11:49:36.038 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_50
  699. 2026-05-09 11:49:36.052 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_59
  700. 2026-05-09 11:49:36.058 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_66
  701. 2026-05-09 11:49:36.060 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_51
  702. 2026-05-09 11:49:36.063 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_59
  703. 2026-05-09 11:49:36.065 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_51
  704. 2026-05-09 11:49:36.067 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_60
  705. 2026-05-09 11:49:36.070 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_67
  706. 2026-05-09 11:49:36.071 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_52
  707. 2026-05-09 11:49:36.076 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_60
  708. 2026-05-09 11:49:36.078 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: save_gdUsingPOST_2
  709. 2026-05-09 11:49:36.082 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_52
  710. 2026-05-09 11:49:36.083 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_8
  711. 2026-05-09 11:49:36.091 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_9
  712. 2026-05-09 11:49:36.102 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_61
  713. 2026-05-09 11:49:36.142 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_2
  714. 2026-05-09 11:49:36.146 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_62
  715. 2026-05-09 11:49:36.149 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_15
  716. 2026-05-09 11:49:36.175 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_4
  717. 2026-05-09 11:49:36.181 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_10
  718. 2026-05-09 11:49:36.187 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_63
  719. 2026-05-09 11:49:36.192 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_68
  720. 2026-05-09 11:49:36.193 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_53
  721. 2026-05-09 11:49:36.200 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_61
  722. 2026-05-09 11:49:36.202 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_53
  723. 2026-05-09 11:49:36.241 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_54
  724. 2026-05-09 11:49:36.326 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_16
  725. 2026-05-09 11:49:36.368 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getListUsingGET_1
  726. 2026-05-09 11:49:36.428 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_64
  727. 2026-05-09 11:49:36.460 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: statUsingGET_1
  728. 2026-05-09 11:49:36.488 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_11
  729. 2026-05-09 11:49:36.491 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_65
  730. 2026-05-09 11:49:36.500 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_69
  731. 2026-05-09 11:49:36.501 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_54
  732. 2026-05-09 11:49:36.528 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_62
  733. 2026-05-09 11:49:36.530 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_55
  734. 2026-05-09 11:49:36.532 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_66
  735. 2026-05-09 11:49:36.536 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_63
  736. 2026-05-09 11:49:36.538 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_56
  737. 2026-05-09 11:49:36.547 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_12
  738. 2026-05-09 11:49:36.572 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_64
  739. 2026-05-09 11:49:36.594 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_17
  740. 2026-05-09 11:49:36.609 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: monthlyStatUsingGET_1
  741. 2026-05-09 11:49:36.612 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: monthlyStatSummaryUsingGET_1
  742. 2026-05-09 11:49:36.615 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getListUsingGET_2
  743. 2026-05-09 11:49:36.667 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_67
  744. 2026-05-09 11:49:36.692 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageListUsingGET_1
  745. 2026-05-09 11:49:36.695 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: statUsingGET_2
  746. 2026-05-09 11:49:36.723 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_13
  747. 2026-05-09 11:49:36.725 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_14
  748. 2026-05-09 11:49:36.756 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_65
  749. 2026-05-09 11:49:36.764 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_68
  750. 2026-05-09 11:49:36.799 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getYyWyjtzPageUsingGET_1
  751. 2026-05-09 11:49:36.800 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_15
  752. 2026-05-09 11:49:36.803 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_5
  753. 2026-05-09 11:49:36.810 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_18
  754. 2026-05-09 11:49:36.811 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_16
  755. 2026-05-09 11:49:36.821 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_19
  756. 2026-05-09 11:49:36.822 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_17
  757. 2026-05-09 11:49:36.864 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_20
  758. 2026-05-09 11:49:36.865 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_18
  759. 2026-05-09 11:49:36.868 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_69
  760. 2026-05-09 11:49:36.875 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_70
  761. 2026-05-09 11:49:36.877 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_55
  762. 2026-05-09 11:49:36.884 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_66
  763. 2026-05-09 11:49:36.889 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_57
  764. 2026-05-09 11:49:36.893 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_70
  765. 2026-05-09 11:49:36.896 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_71
  766. 2026-05-09 11:49:36.899 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_56
  767. 2026-05-09 11:49:36.907 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_67
  768. 2026-05-09 11:49:36.910 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_58
  769. 2026-05-09 11:49:36.913 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_21
  770. 2026-05-09 11:49:36.915 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_3
  771. 2026-05-09 11:49:36.921 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_68
  772. 2026-05-09 11:49:36.930 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_22
  773. 2026-05-09 11:49:36.966 [main] INFO io.undertow - starting server: Undertow - 2.0.31.Final
  774. 2026-05-09 11:49:36.974 [main] INFO org.xnio - XNIO version 3.3.8.Final
  775. 2026-05-09 11:49:36.980 [main] INFO org.xnio.nio - XNIO NIO Implementation Version 3.3.8.Final
  776. 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 ''
  777. 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
  778. 2026-05-09 11:49:38.453 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
  779. 2026-05-09 11:49:38.455 [main] INFO com.tofly.feesapi.FeesApiApplication - Started FeesApiApplication in 83.649 seconds (JVM running for 85.718)
  780. 2026-05-09 11:49:39.810 [RMI TCP Connection(10)-192.168.1.105] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  781. 2026-05-09 11:49:39.810 [RMI TCP Connection(10)-192.168.1.105] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  782. 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
  783. 2026-05-09 11:52:24.709 [XNIO-1 task-34] ERROR io.undertow.request - UT005023: Exception handling request to /yysspjxx/getPageList
  784. 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
  785. at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:748)
  786. at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:674)
  787. at org.springframework.web.client.RestTemplate.exchange(RestTemplate.java:583)
  788. at org.springframework.security.oauth2.provider.token.RemoteTokenServices.postForMap(RemoteTokenServices.java:149)
  789. at org.springframework.security.oauth2.provider.token.RemoteTokenServices.loadAuthentication(RemoteTokenServices.java:106)
  790. at org.springframework.security.oauth2.provider.authentication.OAuth2AuthenticationManager.authenticate(OAuth2AuthenticationManager.java:83)
  791. at org.springframework.security.oauth2.provider.authentication.OAuth2AuthenticationProcessingFilter.doFilter(OAuth2AuthenticationProcessingFilter.java:150)
  792. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
  793. at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
  794. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
  795. at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:92)
  796. at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:77)
  797. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
  798. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
  799. at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
  800. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
  801. at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
  802. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
  803. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
  804. at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:215)
  805. at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:178)
  806. at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:358)
  807. at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:271)
  808. at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
  809. at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
  810. at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
  811. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
  812. at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
  813. at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
  814. at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
  815. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
  816. at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
  817. at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
  818. at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:109)
  819. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
  820. at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
  821. at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
  822. at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
  823. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
  824. at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
  825. at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
  826. at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:84)
  827. at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:62)
  828. at io.undertow.servlet.handlers.ServletChain$1.handleRequest(ServletChain.java:68)
  829. at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36)
  830. at io.undertow.servlet.handlers.RedirectDirHandler.handleRequest(RedirectDirHandler.java:68)
  831. at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:132)
  832. at io.undertow.servlet.handlers.security.ServletAuthenticationCallHandler.handleRequest(ServletAuthenticationCallHandler.java:57)
  833. at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
  834. at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:46)
  835. at io.undertow.servlet.handlers.security.ServletConfidentialityConstraintHandler.handleRequest(ServletConfidentialityConstraintHandler.java:64)
  836. at io.undertow.security.handlers.AuthenticationMechanismsHandler.handleRequest(AuthenticationMechanismsHandler.java:60)
  837. at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:77)
  838. at io.undertow.security.handlers.AbstractSecurityContextAssociationHandler.handleRequest(AbstractSecurityContextAssociationHandler.java:43)
  839. at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
  840. at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
  841. at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:269)
  842. at io.undertow.servlet.handlers.ServletInitialHandler.access$100(ServletInitialHandler.java:78)
  843. at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:133)
  844. at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:130)
  845. at io.undertow.servlet.core.ServletRequestContextThreadSetupAction$1.call(ServletRequestContextThreadSetupAction.java:48)
  846. at io.undertow.servlet.core.ContextClassLoaderSetupAction$1.call(ContextClassLoaderSetupAction.java:43)
  847. at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:249)
  848. at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:78)
  849. at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:99)
  850. at io.undertow.server.Connectors.executeRootHandler(Connectors.java:376)
  851. at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:830)
  852. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
  853. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
  854. at java.lang.Thread.run(Thread.java:748)
  855. Caused by: org.apache.http.conn.HttpHostConnectException: Connect to 127.0.0.1:10501 [/127.0.0.1] failed: Connection refused: connect
  856. at org.apache.http.impl.conn.DefaultHttpClientConnectionOperator.connect(DefaultHttpClientConnectionOperator.java:156)
  857. at org.apache.http.impl.conn.PoolingHttpClientConnectionManager.connect(PoolingHttpClientConnectionManager.java:376)
  858. at org.apache.http.impl.execchain.MainClientExec.establishRoute(MainClientExec.java:393)
  859. at org.apache.http.impl.execchain.MainClientExec.execute(MainClientExec.java:236)
  860. at org.apache.http.impl.execchain.ProtocolExec.execute(ProtocolExec.java:186)
  861. at org.apache.http.impl.execchain.RetryExec.execute(RetryExec.java:89)
  862. at org.apache.http.impl.execchain.RedirectExec.execute(RedirectExec.java:110)
  863. at org.apache.http.impl.client.InternalHttpClient.doExecute(InternalHttpClient.java:185)
  864. at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:83)
  865. at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:56)
  866. at org.springframework.http.client.HttpComponentsClientHttpRequest.executeInternal(HttpComponentsClientHttpRequest.java:87)
  867. at org.springframework.http.client.AbstractBufferingClientHttpRequest.executeInternal(AbstractBufferingClientHttpRequest.java:48)
  868. at org.springframework.http.client.AbstractClientHttpRequest.execute(AbstractClientHttpRequest.java:53)
  869. at org.springframework.http.client.InterceptingClientHttpRequest$InterceptingRequestExecution.execute(InterceptingClientHttpRequest.java:109)
  870. at org.springframework.boot.actuate.metrics.web.client.MetricsClientHttpRequestInterceptor.intercept(MetricsClientHttpRequestInterceptor.java:95)
  871. at org.springframework.http.client.InterceptingClientHttpRequest$InterceptingRequestExecution.execute(InterceptingClientHttpRequest.java:93)
  872. at org.springframework.http.client.InterceptingClientHttpRequest.executeInternal(InterceptingClientHttpRequest.java:77)
  873. at org.springframework.http.client.AbstractBufferingClientHttpRequest.executeInternal(AbstractBufferingClientHttpRequest.java:48)
  874. at org.springframework.http.client.AbstractClientHttpRequest.execute(AbstractClientHttpRequest.java:53)
  875. at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:739)
  876. ... 69 common frames omitted
  877. Caused by: java.net.ConnectException: Connection refused: connect
  878. at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method)
  879. at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:85)
  880. at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)
  881. at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
  882. at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
  883. at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:172)
  884. at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
  885. at java.net.Socket.connect(Socket.java:589)
  886. at org.apache.http.conn.socket.PlainConnectionSocketFactory.connectSocket(PlainConnectionSocketFactory.java:75)
  887. at org.apache.http.impl.conn.DefaultHttpClientConnectionOperator.connect(DefaultHttpClientConnectionOperator.java:142)
  888. ... 88 common frames omitted
  889. 2026-05-09 11:52:26.753 [XNIO-1 task-34] ERROR io.undertow.request - UT005022: Exception generating error page /error
  890. 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
  891. at io.undertow.servlet.spec.RequestDispatcherImpl.error(RequestDispatcherImpl.java:507)
  892. at io.undertow.servlet.spec.RequestDispatcherImpl.error(RequestDispatcherImpl.java:427)
  893. at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:308)
  894. at io.undertow.servlet.handlers.ServletInitialHandler.access$100(ServletInitialHandler.java:78)
  895. at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:133)
  896. at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:130)
  897. at io.undertow.servlet.core.ServletRequestContextThreadSetupAction$1.call(ServletRequestContextThreadSetupAction.java:48)
  898. at io.undertow.servlet.core.ContextClassLoaderSetupAction$1.call(ContextClassLoaderSetupAction.java:43)
  899. at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:249)
  900. at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:78)
  901. at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:99)
  902. at io.undertow.server.Connectors.executeRootHandler(Connectors.java:376)
  903. at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:830)
  904. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
  905. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
  906. at java.lang.Thread.run(Thread.java:748)
  907. 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
  908. at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:748)
  909. at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:674)
  910. at org.springframework.web.client.RestTemplate.exchange(RestTemplate.java:583)
  911. at org.springframework.security.oauth2.provider.token.RemoteTokenServices.postForMap(RemoteTokenServices.java:149)
  912. at org.springframework.security.oauth2.provider.token.RemoteTokenServices.loadAuthentication(RemoteTokenServices.java:106)
  913. at org.springframework.security.oauth2.provider.authentication.OAuth2AuthenticationManager.authenticate(OAuth2AuthenticationManager.java:83)
  914. at org.springframework.security.oauth2.provider.authentication.OAuth2AuthenticationProcessingFilter.doFilter(OAuth2AuthenticationProcessingFilter.java:150)
  915. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
  916. at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
  917. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
  918. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:103)
  919. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
  920. at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
  921. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
  922. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:103)
  923. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
  924. at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:215)
  925. at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:178)
  926. at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:358)
  927. at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:271)
  928. at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
  929. at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
  930. at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:84)
  931. at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:62)
  932. at io.undertow.servlet.handlers.ServletChain$1.handleRequest(ServletChain.java:68)
  933. at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36)
  934. at io.undertow.servlet.handlers.RedirectDirHandler.handleRequest(RedirectDirHandler.java:68)
  935. at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
  936. at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
  937. at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:251)
  938. at io.undertow.servlet.handlers.ServletInitialHandler.dispatchToPath(ServletInitialHandler.java:186)
  939. at io.undertow.servlet.spec.RequestDispatcherImpl.error(RequestDispatcherImpl.java:501)
  940. ... 15 common frames omitted
  941. Caused by: org.apache.http.conn.HttpHostConnectException: Connect to 127.0.0.1:10501 [/127.0.0.1] failed: Connection refused: connect
  942. at org.apache.http.impl.conn.DefaultHttpClientConnectionOperator.connect(DefaultHttpClientConnectionOperator.java:156)
  943. at org.apache.http.impl.conn.PoolingHttpClientConnectionManager.connect(PoolingHttpClientConnectionManager.java:376)
  944. at org.apache.http.impl.execchain.MainClientExec.establishRoute(MainClientExec.java:393)
  945. at org.apache.http.impl.execchain.MainClientExec.execute(MainClientExec.java:236)
  946. at org.apache.http.impl.execchain.ProtocolExec.execute(ProtocolExec.java:186)
  947. at org.apache.http.impl.execchain.RetryExec.execute(RetryExec.java:89)
  948. at org.apache.http.impl.execchain.RedirectExec.execute(RedirectExec.java:110)
  949. at org.apache.http.impl.client.InternalHttpClient.doExecute(InternalHttpClient.java:185)
  950. at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:83)
  951. at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:56)
  952. at org.springframework.http.client.HttpComponentsClientHttpRequest.executeInternal(HttpComponentsClientHttpRequest.java:87)
  953. at org.springframework.http.client.AbstractBufferingClientHttpRequest.executeInternal(AbstractBufferingClientHttpRequest.java:48)
  954. at org.springframework.http.client.AbstractClientHttpRequest.execute(AbstractClientHttpRequest.java:53)
  955. at org.springframework.http.client.InterceptingClientHttpRequest$InterceptingRequestExecution.execute(InterceptingClientHttpRequest.java:109)
  956. at org.springframework.boot.actuate.metrics.web.client.MetricsClientHttpRequestInterceptor.intercept(MetricsClientHttpRequestInterceptor.java:95)
  957. at org.springframework.http.client.InterceptingClientHttpRequest$InterceptingRequestExecution.execute(InterceptingClientHttpRequest.java:93)
  958. at org.springframework.http.client.InterceptingClientHttpRequest.executeInternal(InterceptingClientHttpRequest.java:77)
  959. at org.springframework.http.client.AbstractBufferingClientHttpRequest.executeInternal(AbstractBufferingClientHttpRequest.java:48)
  960. at org.springframework.http.client.AbstractClientHttpRequest.execute(AbstractClientHttpRequest.java:53)
  961. at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:739)
  962. ... 46 common frames omitted
  963. Caused by: java.net.ConnectException: Connection refused: connect
  964. at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method)
  965. at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:85)
  966. at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)
  967. at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
  968. at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
  969. at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:172)
  970. at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
  971. at java.net.Socket.connect(Socket.java:589)
  972. at org.apache.http.conn.socket.PlainConnectionSocketFactory.connectSocket(PlainConnectionSocketFactory.java:75)
  973. at org.apache.http.impl.conn.DefaultHttpClientConnectionOperator.connect(DefaultHttpClientConnectionOperator.java:142)
  974. ... 65 common frames omitted
  975. 2026-05-09 11:54:17.034 [XNIO-1 task-35] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/yysspjxx/getPageList/getPageList】请求开始==================
  976. 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 = ?)
  977. 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)
  978. 2026-05-09 11:54:17.431 [XNIO-1 task-35] DEBUG c.t.f.s.m.Y.getPageList_mpCount - <== Total: 1
  979. 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
  980. 2026-05-09 11:54:17.475 [XNIO-1 task-35] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - ==> Parameters:
  981. 2026-05-09 11:54:17.667 [XNIO-1 task-35] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - <== Total: 21
  982. 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=?)
  983. 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)
  984. 2026-05-09 11:54:17.757 [XNIO-1 task-35] DEBUG c.t.f.s.m.Y.getPageCount - <== Total: 1
  985. 2026-05-09 11:54:17.760 [XNIO-1 task-35] INFO c.t.feesapi.common.LogRecordAspect - =================【getPageList】请求结束==================
  986. 2026-05-09 11:54:33.365 [XNIO-1 task-36] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/yysspjxx/getPageList/getPageList】请求开始==================
  987. 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 = ?)
  988. 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)
  989. 2026-05-09 11:54:33.425 [XNIO-1 task-36] DEBUG c.t.f.s.m.Y.getPageList_mpCount - <== Total: 1
  990. 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 > ?
  991. 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)
  992. 2026-05-09 11:54:33.809 [XNIO-1 task-36] DEBUG c.t.f.s.m.YySspjxxMapper.getPageList - <== Total: 20
  993. 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
  994. 2026-05-09 11:54:33.810 [XNIO-1 task-36] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - ==> Parameters:
  995. 2026-05-09 11:54:33.984 [XNIO-1 task-36] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - <== Total: 21
  996. 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=?)
  997. 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)
  998. 2026-05-09 11:54:34.051 [XNIO-1 task-36] DEBUG c.t.f.s.m.Y.getPageCount - <== Total: 1
  999. 2026-05-09 11:54:34.058 [XNIO-1 task-36] INFO c.t.feesapi.common.LogRecordAspect - =================【getPageList】请求结束==================
  1000. 2026-05-09 11:55:20.136 [XNIO-1 task-37] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/yysspjxx/getPageList/getPageList】请求开始==================
  1001. 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
  1002. 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)
  1003. 2026-05-09 11:55:20.229 [XNIO-1 task-37] DEBUG c.t.f.s.m.Y.getPageListByKhbm_mpCount - <== Total: 1
  1004. 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 > ?
  1005. 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)
  1006. 2026-05-09 11:55:20.303 [XNIO-1 task-37] DEBUG c.t.f.s.m.Y.getPageListByKhbm - <== Total: 1
  1007. 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
  1008. 2026-05-09 11:55:20.305 [XNIO-1 task-37] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - ==> Parameters:
  1009. 2026-05-09 11:55:20.480 [XNIO-1 task-37] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - <== Total: 21
  1010. 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=?)
  1011. 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)
  1012. 2026-05-09 11:55:20.533 [XNIO-1 task-37] DEBUG c.t.f.s.m.Y.getPageCount - <== Total: 1
  1013. 2026-05-09 11:55:20.534 [XNIO-1 task-37] INFO c.t.feesapi.common.LogRecordAspect - =================【getPageList】请求结束==================
  1014. 2026-05-09 12:35:22.141 [SpringContextShutdownHook] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'taskScheduler'
  1015. 2026-05-09 12:35:22.171 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registering from Nacos Server now...
  1016. 2026-05-09 12:35:22.180 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registration finished.
  1017. 2026-05-09 12:35:22.184 [SpringContextShutdownHook] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'taskScheduler'
  1018. 2026-05-09 12:35:40.216 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.0.20.Final
  1019. 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
  1020. 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]
  1021. 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]
  1022. 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'}]
  1023. 2026-05-09 12:35:42.183 [main] INFO com.tofly.feesapi.FeesApiApplication - The following profiles are active: bd
  1024. 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.
  1025. 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.
  1026. 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!
  1027. 2026-05-09 12:35:44.222 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  1028. 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.
  1029. 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.
  1030. 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.
  1031. 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!
  1032. 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!
  1033. 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!
  1034. 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!
  1035. 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!
  1036. 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!
  1037. 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!
  1038. 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!
  1039. 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!
  1040. 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!
  1041. 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!
  1042. 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!
  1043. 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!
  1044. 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!
  1045. 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!
  1046. 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!
  1047. 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!
  1048. 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!
  1049. 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!
  1050. 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!
  1051. 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!
  1052. 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!
  1053. 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!
  1054. 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!
  1055. 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!
  1056. 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!
  1057. 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!
  1058. 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!
  1059. 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!
  1060. 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!
  1061. 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!
  1062. 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!
  1063. 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!
  1064. 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!
  1065. 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!
  1066. 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!
  1067. 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!
  1068. 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!
  1069. 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!
  1070. 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!
  1071. 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!
  1072. 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!
  1073. 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!
  1074. 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!
  1075. 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!
  1076. 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!
  1077. 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!
  1078. 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!
  1079. 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!
  1080. 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!
  1081. 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!
  1082. 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!
  1083. 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!
  1084. 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!
  1085. 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!
  1086. 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!
  1087. 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!
  1088. 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!
  1089. 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!
  1090. 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!
  1091. 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!
  1092. 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!
  1093. 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!
  1094. 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!
  1095. 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!
  1096. 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!
  1097. 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!
  1098. 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!
  1099. 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!
  1100. 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!
  1101. 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!
  1102. 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!
  1103. 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!
  1104. 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!
  1105. 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!
  1106. 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!
  1107. 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!
  1108. 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!
  1109. 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!
  1110. 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!
  1111. 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!
  1112. 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!
  1113. 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!
  1114. 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!
  1115. 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!
  1116. 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!
  1117. 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!
  1118. 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!
  1119. 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!
  1120. 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!
  1121. 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!
  1122. 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!
  1123. 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!
  1124. 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!
  1125. 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!
  1126. 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!
  1127. 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!
  1128. 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!
  1129. 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!
  1130. 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!
  1131. 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!
  1132. 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!
  1133. 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!
  1134. 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!
  1135. 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!
  1136. 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!
  1137. 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.
  1138. 2026-05-09 12:35:44.951 [main] INFO o.s.cloud.context.scope.GenericScope - BeanFactory id=6ba9fcc8-98cb-35e6-8547-52fc325bd065
  1139. 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)
  1140. 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)
  1141. 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)
  1142. 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)
  1143. 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)
  1144. 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)
  1145. 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
  1146. 2026-05-09 12:35:45.685 [main] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  1147. 2026-05-09 12:35:45.685 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3485 ms
  1148. 2026-05-09 12:35:53.382 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1,master} inited
  1149. 2026-05-09 12:35:54.785 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-2,udb} inited
  1150. 2026-05-09 12:35:56.340 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-3,flowDB} inited
  1151. 2026-05-09 12:35:56.341 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [udb] success
  1152. 2026-05-09 12:35:56.341 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [flowDB] success
  1153. 2026-05-09 12:35:56.341 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
  1154. 2026-05-09 12:35:56.341 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [3] datasource,primary datasource named [master]
  1155. 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]
  1156. 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]
  1157. 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".
  1158. 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.
  1159. 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".
  1160. 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.
  1161. 2026-05-09 12:36:06.419 [main] INFO org.redisson.Version - Redisson 3.23.2
  1162. 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
  1163. 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
  1164. 2026-05-09 12:36:15.118 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
  1165. 2026-05-09 12:36:15.296 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 19 endpoint(s) beneath base path '/actuator'
  1166. 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)]
  1167. 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]
  1168. 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]
  1169. 2026-05-09 12:36:15.959 [main] INFO o.s.s.c.ThreadPoolTaskScheduler - Initializing ExecutorService 'taskScheduler'
  1170. 2026-05-09 12:36:16.245 [main] INFO o.s.b.a.s.s.UserDetailsServiceAutoConfiguration -
  1171. Using generated security password: 65220b30-6804-423d-8300-74ac0e1a9618
  1172. 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]
  1173. 2026-05-09 12:36:17.858 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
  1174. 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.
  1175. 2026-05-09 12:36:18.118 [main] INFO s.d.s.w.p.DocumentationPluginsBootstrapper - Documentation plugins bootstrapped
  1176. 2026-05-09 12:36:18.121 [main] INFO s.d.s.w.p.DocumentationPluginsBootstrapper - Found 1 custom documentation plugin(s)
  1177. 2026-05-09 12:36:18.263 [main] INFO s.d.s.w.s.ApiListingReferenceScanner - Scanning for api listing references
  1178. 2026-05-09 12:36:18.636 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_1
  1179. 2026-05-09 12:36:18.640 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_1
  1180. 2026-05-09 12:36:18.641 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_1
  1181. 2026-05-09 12:36:18.642 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_1
  1182. 2026-05-09 12:36:18.646 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_1
  1183. 2026-05-09 12:36:18.647 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_1
  1184. 2026-05-09 12:36:18.667 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: addCustomerUsingPOST_1
  1185. 2026-05-09 12:36:18.668 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: deleteCustomerUsingPOST_1
  1186. 2026-05-09 12:36:18.668 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getBindCustomerUsingGET_1
  1187. 2026-05-09 12:36:18.669 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: selectCustomerUsingGET_1
  1188. 2026-05-09 12:36:18.671 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getBindCustomerAndQfUsingGET_1
  1189. 2026-05-09 12:36:18.672 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerBasicInFoUsingGET_1
  1190. 2026-05-09 12:36:18.672 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerChargeInFoUsingGET_1
  1191. 2026-05-09 12:36:18.673 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerInFoUsingGET_1
  1192. 2026-05-09 12:36:18.674 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerQfInFoUsingGET_1
  1193. 2026-05-09 12:36:18.675 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerReadMeterInFoUsingGET_1
  1194. 2026-05-09 12:36:18.685 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_2
  1195. 2026-05-09 12:36:18.709 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_2
  1196. 2026-05-09 12:36:18.711 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_2
  1197. 2026-05-09 12:36:18.712 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_2
  1198. 2026-05-09 12:36:18.716 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_2
  1199. 2026-05-09 12:36:18.717 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_2
  1200. 2026-05-09 12:36:18.733 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_3
  1201. 2026-05-09 12:36:18.735 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_3
  1202. 2026-05-09 12:36:18.735 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_3
  1203. 2026-05-09 12:36:18.738 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_3
  1204. 2026-05-09 12:36:18.738 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_3
  1205. 2026-05-09 12:36:18.745 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_3
  1206. 2026-05-09 12:36:18.752 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_4
  1207. 2026-05-09 12:36:18.752 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_4
  1208. 2026-05-09 12:36:18.753 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_4
  1209. 2026-05-09 12:36:18.754 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_4
  1210. 2026-05-09 12:36:18.756 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_4
  1211. 2026-05-09 12:36:18.758 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_5
  1212. 2026-05-09 12:36:18.759 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_5
  1213. 2026-05-09 12:36:18.760 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_5
  1214. 2026-05-09 12:36:18.762 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_5
  1215. 2026-05-09 12:36:18.762 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_5
  1216. 2026-05-09 12:36:18.768 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_4
  1217. 2026-05-09 12:36:18.774 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_6
  1218. 2026-05-09 12:36:18.781 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_5
  1219. 2026-05-09 12:36:18.782 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_6
  1220. 2026-05-09 12:36:18.783 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_6
  1221. 2026-05-09 12:36:18.786 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_6
  1222. 2026-05-09 12:36:18.787 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_6
  1223. 2026-05-09 12:36:18.789 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_1
  1224. 2026-05-09 12:36:18.795 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_7
  1225. 2026-05-09 12:36:18.796 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_7
  1226. 2026-05-09 12:36:18.796 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_7
  1227. 2026-05-09 12:36:18.799 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_7
  1228. 2026-05-09 12:36:18.800 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_7
  1229. 2026-05-09 12:36:18.804 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_8
  1230. 2026-05-09 12:36:18.804 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getFffsListUsingGET_1
  1231. 2026-05-09 12:36:18.805 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_8
  1232. 2026-05-09 12:36:18.806 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_9
  1233. 2026-05-09 12:36:18.808 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_8
  1234. 2026-05-09 12:36:18.809 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_8
  1235. 2026-05-09 12:36:18.814 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_2
  1236. 2026-05-09 12:36:18.818 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_9
  1237. 2026-05-09 12:36:18.821 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_10
  1238. 2026-05-09 12:36:18.822 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_11
  1239. 2026-05-09 12:36:18.824 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_9
  1240. 2026-05-09 12:36:18.825 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_9
  1241. 2026-05-09 12:36:18.828 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_10
  1242. 2026-05-09 12:36:18.829 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_12
  1243. 2026-05-09 12:36:18.830 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_13
  1244. 2026-05-09 12:36:18.833 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_10
  1245. 2026-05-09 12:36:18.833 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_10
  1246. 2026-05-09 12:36:18.837 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_11
  1247. 2026-05-09 12:36:18.838 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_14
  1248. 2026-05-09 12:36:18.839 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_15
  1249. 2026-05-09 12:36:18.842 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_11
  1250. 2026-05-09 12:36:18.843 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_11
  1251. 2026-05-09 12:36:18.849 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_12
  1252. 2026-05-09 12:36:18.850 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_16
  1253. 2026-05-09 12:36:18.851 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_8
  1254. 2026-05-09 12:36:18.853 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_12
  1255. 2026-05-09 12:36:18.853 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_12
  1256. 2026-05-09 12:36:18.859 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_13
  1257. 2026-05-09 12:36:18.860 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_17
  1258. 2026-05-09 12:36:18.861 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_9
  1259. 2026-05-09 12:36:18.863 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_13
  1260. 2026-05-09 12:36:18.864 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_13
  1261. 2026-05-09 12:36:18.867 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_14
  1262. 2026-05-09 12:36:18.868 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_18
  1263. 2026-05-09 12:36:18.870 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_19
  1264. 2026-05-09 12:36:18.874 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_14
  1265. 2026-05-09 12:36:18.875 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_14
  1266. 2026-05-09 12:36:18.881 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_15
  1267. 2026-05-09 12:36:18.893 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_6
  1268. 2026-05-09 12:36:18.915 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_15
  1269. 2026-05-09 12:36:18.921 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_3
  1270. 2026-05-09 12:36:18.927 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_16
  1271. 2026-05-09 12:36:18.928 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_20
  1272. 2026-05-09 12:36:18.930 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_10
  1273. 2026-05-09 12:36:18.931 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_16
  1274. 2026-05-09 12:36:18.932 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_15
  1275. 2026-05-09 12:36:18.938 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_17
  1276. 2026-05-09 12:36:18.945 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_7
  1277. 2026-05-09 12:36:18.946 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_21
  1278. 2026-05-09 12:36:18.947 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_11
  1279. 2026-05-09 12:36:18.949 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_17
  1280. 2026-05-09 12:36:18.950 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_16
  1281. 2026-05-09 12:36:18.964 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_8
  1282. 2026-05-09 12:36:18.966 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveBatchUsingPOST_1
  1283. 2026-05-09 12:36:19.084 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_18
  1284. 2026-05-09 12:36:19.088 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_22
  1285. 2026-05-09 12:36:19.089 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_12
  1286. 2026-05-09 12:36:19.091 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_18
  1287. 2026-05-09 12:36:19.092 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_17
  1288. 2026-05-09 12:36:19.094 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_19
  1289. 2026-05-09 12:36:19.098 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_23
  1290. 2026-05-09 12:36:19.099 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_13
  1291. 2026-05-09 12:36:19.101 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_19
  1292. 2026-05-09 12:36:19.102 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_18
  1293. 2026-05-09 12:36:19.104 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_20
  1294. 2026-05-09 12:36:19.106 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_24
  1295. 2026-05-09 12:36:19.109 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_20
  1296. 2026-05-09 12:36:19.110 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_19
  1297. 2026-05-09 12:36:19.118 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_21
  1298. 2026-05-09 12:36:19.120 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_25
  1299. 2026-05-09 12:36:19.120 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_14
  1300. 2026-05-09 12:36:19.124 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_21
  1301. 2026-05-09 12:36:19.147 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: Xh_WordToPdfUsingPOST_1
  1302. 2026-05-09 12:36:19.152 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_22
  1303. 2026-05-09 12:36:19.158 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_26
  1304. 2026-05-09 12:36:19.159 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_15
  1305. 2026-05-09 12:36:19.164 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_22
  1306. 2026-05-09 12:36:19.165 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_27
  1307. 2026-05-09 12:36:19.166 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_16
  1308. 2026-05-09 12:36:19.169 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_23
  1309. 2026-05-09 12:36:19.171 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_20
  1310. 2026-05-09 12:36:19.188 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_23
  1311. 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
  1312. 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
  1313. 2026-05-09 12:36:19.289 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportYsqdUsingGET_1
  1314. 2026-05-09 12:36:19.357 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_24
  1315. 2026-05-09 12:36:19.359 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_28
  1316. 2026-05-09 12:36:19.360 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_17
  1317. 2026-05-09 12:36:19.389 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_25
  1318. 2026-05-09 12:36:19.390 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_29
  1319. 2026-05-09 12:36:19.392 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_18
  1320. 2026-05-09 12:36:19.395 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_24
  1321. 2026-05-09 12:36:19.396 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_21
  1322. 2026-05-09 12:36:19.411 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_26
  1323. 2026-05-09 12:36:19.418 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_30
  1324. 2026-05-09 12:36:19.419 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_19
  1325. 2026-05-09 12:36:19.421 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_25
  1326. 2026-05-09 12:36:19.422 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_22
  1327. 2026-05-09 12:36:19.424 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_27
  1328. 2026-05-09 12:36:19.429 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_31
  1329. 2026-05-09 12:36:19.430 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_20
  1330. 2026-05-09 12:36:19.432 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_26
  1331. 2026-05-09 12:36:19.433 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_23
  1332. 2026-05-09 12:36:19.446 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_28
  1333. 2026-05-09 12:36:19.452 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_32
  1334. 2026-05-09 12:36:19.453 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_21
  1335. 2026-05-09 12:36:19.457 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_27
  1336. 2026-05-09 12:36:19.458 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_24
  1337. 2026-05-09 12:36:19.468 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxBtsqPageUsingGET_1
  1338. 2026-05-09 12:36:19.470 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_29
  1339. 2026-05-09 12:36:19.475 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_33
  1340. 2026-05-09 12:36:19.476 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_22
  1341. 2026-05-09 12:36:19.479 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_28
  1342. 2026-05-09 12:36:19.480 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_25
  1343. 2026-05-09 12:36:19.484 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxBzsqPageUsingGET_1
  1344. 2026-05-09 12:36:19.492 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_30
  1345. 2026-05-09 12:36:19.497 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_34
  1346. 2026-05-09 12:36:19.498 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_23
  1347. 2026-05-09 12:36:19.502 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_29
  1348. 2026-05-09 12:36:19.504 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_26
  1349. 2026-05-09 12:36:19.511 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxDbsqPageUsingGET_1
  1350. 2026-05-09 12:36:19.514 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPOST_1
  1351. 2026-05-09 12:36:19.517 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_31
  1352. 2026-05-09 12:36:19.521 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_35
  1353. 2026-05-09 12:36:19.523 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_24
  1354. 2026-05-09 12:36:19.525 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_30
  1355. 2026-05-09 12:36:19.527 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_27
  1356. 2026-05-09 12:36:19.528 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_32
  1357. 2026-05-09 12:36:19.531 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_36
  1358. 2026-05-09 12:36:19.532 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_25
  1359. 2026-05-09 12:36:19.537 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_31
  1360. 2026-05-09 12:36:19.538 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_28
  1361. 2026-05-09 12:36:19.540 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_33
  1362. 2026-05-09 12:36:19.541 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_37
  1363. 2026-05-09 12:36:19.542 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_26
  1364. 2026-05-09 12:36:19.547 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_32
  1365. 2026-05-09 12:36:19.549 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_29
  1366. 2026-05-09 12:36:19.562 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_34
  1367. 2026-05-09 12:36:19.565 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_38
  1368. 2026-05-09 12:36:19.566 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_39
  1369. 2026-05-09 12:36:19.570 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_33
  1370. 2026-05-09 12:36:19.571 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_30
  1371. 2026-05-09 12:36:19.573 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_35
  1372. 2026-05-09 12:36:19.580 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_40
  1373. 2026-05-09 12:36:19.582 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_27
  1374. 2026-05-09 12:36:19.586 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_34
  1375. 2026-05-09 12:36:19.588 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_31
  1376. 2026-05-09 12:36:19.595 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxHfsqPageUsingGET_1
  1377. 2026-05-09 12:36:19.598 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_36
  1378. 2026-05-09 12:36:19.604 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_41
  1379. 2026-05-09 12:36:19.605 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_28
  1380. 2026-05-09 12:36:19.608 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_35
  1381. 2026-05-09 12:36:19.610 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_32
  1382. 2026-05-09 12:36:19.618 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxLwsqPageUsingGET_1
  1383. 2026-05-09 12:36:19.620 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_37
  1384. 2026-05-09 12:36:19.627 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_42
  1385. 2026-05-09 12:36:19.628 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_29
  1386. 2026-05-09 12:36:19.631 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_36
  1387. 2026-05-09 12:36:19.633 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_33
  1388. 2026-05-09 12:36:19.639 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxLxdhsqPageUsingGET_1
  1389. 2026-05-09 12:36:19.642 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_38
  1390. 2026-05-09 12:36:19.647 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_43
  1391. 2026-05-09 12:36:19.648 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_30
  1392. 2026-05-09 12:36:19.653 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_37
  1393. 2026-05-09 12:36:19.654 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_34
  1394. 2026-05-09 12:36:19.665 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_39
  1395. 2026-05-09 12:36:19.670 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_44
  1396. 2026-05-09 12:36:19.672 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_31
  1397. 2026-05-09 12:36:19.675 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_38
  1398. 2026-05-09 12:36:19.677 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_35
  1399. 2026-05-09 12:36:19.683 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxDbsqPageUsingGET_2
  1400. 2026-05-09 12:36:19.690 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_1
  1401. 2026-05-09 12:36:19.693 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_40
  1402. 2026-05-09 12:36:19.695 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_45
  1403. 2026-05-09 12:36:19.697 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_32
  1404. 2026-05-09 12:36:19.702 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_39
  1405. 2026-05-09 12:36:19.710 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_36
  1406. 2026-05-09 12:36:19.712 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_41
  1407. 2026-05-09 12:36:19.715 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_46
  1408. 2026-05-09 12:36:19.716 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_33
  1409. 2026-05-09 12:36:19.720 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_40
  1410. 2026-05-09 12:36:19.722 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_37
  1411. 2026-05-09 12:36:19.724 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_42
  1412. 2026-05-09 12:36:19.727 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_47
  1413. 2026-05-09 12:36:19.728 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_34
  1414. 2026-05-09 12:36:19.732 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_41
  1415. 2026-05-09 12:36:19.734 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_38
  1416. 2026-05-09 12:36:19.735 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_43
  1417. 2026-05-09 12:36:19.738 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_48
  1418. 2026-05-09 12:36:19.740 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_49
  1419. 2026-05-09 12:36:19.743 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_42
  1420. 2026-05-09 12:36:19.744 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_39
  1421. 2026-05-09 12:36:19.746 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_44
  1422. 2026-05-09 12:36:19.749 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_50
  1423. 2026-05-09 12:36:19.750 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_51
  1424. 2026-05-09 12:36:19.752 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_43
  1425. 2026-05-09 12:36:19.753 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_40
  1426. 2026-05-09 12:36:19.756 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_45
  1427. 2026-05-09 12:36:19.761 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_52
  1428. 2026-05-09 12:36:19.762 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_35
  1429. 2026-05-09 12:36:19.765 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_44
  1430. 2026-05-09 12:36:19.767 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_41
  1431. 2026-05-09 12:36:19.773 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxWzjbsqPageUsingGET_1
  1432. 2026-05-09 12:36:19.776 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_46
  1433. 2026-05-09 12:36:19.782 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_53
  1434. 2026-05-09 12:36:19.783 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_36
  1435. 2026-05-09 12:36:19.786 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_45
  1436. 2026-05-09 12:36:19.788 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_42
  1437. 2026-05-09 12:36:19.795 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxXbsqPageUsingGET_1
  1438. 2026-05-09 12:36:19.797 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_47
  1439. 2026-05-09 12:36:19.803 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_54
  1440. 2026-05-09 12:36:19.804 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_37
  1441. 2026-05-09 12:36:19.808 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_46
  1442. 2026-05-09 12:36:19.809 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_43
  1443. 2026-05-09 12:36:19.816 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxXhsqPageUsingGET_1
  1444. 2026-05-09 12:36:19.817 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPOST_2
  1445. 2026-05-09 12:36:19.819 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_48
  1446. 2026-05-09 12:36:19.821 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_55
  1447. 2026-05-09 12:36:19.823 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_38
  1448. 2026-05-09 12:36:19.826 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_47
  1449. 2026-05-09 12:36:19.827 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_44
  1450. 2026-05-09 12:36:19.830 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_49
  1451. 2026-05-09 12:36:19.834 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_56
  1452. 2026-05-09 12:36:19.835 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_39
  1453. 2026-05-09 12:36:19.837 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_48
  1454. 2026-05-09 12:36:19.839 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_45
  1455. 2026-05-09 12:36:19.846 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_9
  1456. 2026-05-09 12:36:19.847 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_57
  1457. 2026-05-09 12:36:19.849 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_40
  1458. 2026-05-09 12:36:19.851 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_49
  1459. 2026-05-09 12:36:19.853 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_58
  1460. 2026-05-09 12:36:19.854 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_41
  1461. 2026-05-09 12:36:19.856 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_50
  1462. 2026-05-09 12:36:19.862 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_10
  1463. 2026-05-09 12:36:19.864 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_50
  1464. 2026-05-09 12:36:19.868 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_59
  1465. 2026-05-09 12:36:19.869 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_42
  1466. 2026-05-09 12:36:19.873 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_51
  1467. 2026-05-09 12:36:19.877 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_46
  1468. 2026-05-09 12:36:19.878 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_2
  1469. 2026-05-09 12:36:19.896 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_52
  1470. 2026-05-09 12:36:19.913 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_51
  1471. 2026-05-09 12:36:19.923 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_11
  1472. 2026-05-09 12:36:19.935 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_1
  1473. 2026-05-09 12:36:19.946 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_52
  1474. 2026-05-09 12:36:19.948 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_43
  1475. 2026-05-09 12:36:19.969 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_53
  1476. 2026-05-09 12:36:19.975 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_60
  1477. 2026-05-09 12:36:19.976 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_44
  1478. 2026-05-09 12:36:19.979 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_53
  1479. 2026-05-09 12:36:19.980 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_47
  1480. 2026-05-09 12:36:19.982 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_54
  1481. 2026-05-09 12:36:19.986 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_61
  1482. 2026-05-09 12:36:19.987 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_45
  1483. 2026-05-09 12:36:19.992 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_54
  1484. 2026-05-09 12:36:19.999 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_48
  1485. 2026-05-09 12:36:20.000 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_3
  1486. 2026-05-09 12:36:20.002 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_62
  1487. 2026-05-09 12:36:20.004 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_46
  1488. 2026-05-09 12:36:20.006 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_55
  1489. 2026-05-09 12:36:20.012 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_12
  1490. 2026-05-09 12:36:20.017 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_63
  1491. 2026-05-09 12:36:20.019 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_47
  1492. 2026-05-09 12:36:20.022 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_56
  1493. 2026-05-09 12:36:20.028 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_13
  1494. 2026-05-09 12:36:20.031 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_55
  1495. 2026-05-09 12:36:20.034 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_64
  1496. 2026-05-09 12:36:20.035 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_48
  1497. 2026-05-09 12:36:20.040 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_57
  1498. 2026-05-09 12:36:20.045 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_49
  1499. 2026-05-09 12:36:20.046 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_4
  1500. 2026-05-09 12:36:20.065 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getDaCustomerPageUsingGET_1
  1501. 2026-05-09 12:36:20.094 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_1
  1502. 2026-05-09 12:36:20.104 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_14
  1503. 2026-05-09 12:36:20.127 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_56
  1504. 2026-05-09 12:36:20.170 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: delByIdUsingDELETE_1
  1505. 2026-05-09 12:36:20.172 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: delByIdsUsingDELETE_1
  1506. 2026-05-09 12:36:20.173 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: disableUsingPUT_1
  1507. 2026-05-09 12:36:20.175 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: enableUsingPUT_1
  1508. 2026-05-09 12:36:20.176 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: importExcelUsingPOST_1
  1509. 2026-05-09 12:36:20.179 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_2
  1510. 2026-05-09 12:36:20.186 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_3
  1511. 2026-05-09 12:36:20.206 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_5
  1512. 2026-05-09 12:36:20.208 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_6
  1513. 2026-05-09 12:36:20.210 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_7
  1514. 2026-05-09 12:36:20.213 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_57
  1515. 2026-05-09 12:36:20.223 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_49
  1516. 2026-05-09 12:36:20.245 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: addUsingPOST_1
  1517. 2026-05-09 12:36:20.251 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_58
  1518. 2026-05-09 12:36:20.258 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_65
  1519. 2026-05-09 12:36:20.259 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_50
  1520. 2026-05-09 12:36:20.262 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_58
  1521. 2026-05-09 12:36:20.266 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: save_gdUsingPOST_1
  1522. 2026-05-09 12:36:20.274 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_50
  1523. 2026-05-09 12:36:20.287 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_59
  1524. 2026-05-09 12:36:20.291 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_66
  1525. 2026-05-09 12:36:20.293 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_51
  1526. 2026-05-09 12:36:20.296 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_59
  1527. 2026-05-09 12:36:20.298 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_51
  1528. 2026-05-09 12:36:20.301 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_60
  1529. 2026-05-09 12:36:20.304 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_67
  1530. 2026-05-09 12:36:20.305 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_52
  1531. 2026-05-09 12:36:20.309 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_60
  1532. 2026-05-09 12:36:20.312 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: save_gdUsingPOST_2
  1533. 2026-05-09 12:36:20.316 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_52
  1534. 2026-05-09 12:36:20.317 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_8
  1535. 2026-05-09 12:36:20.327 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_9
  1536. 2026-05-09 12:36:20.341 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_61
  1537. 2026-05-09 12:36:20.389 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_2
  1538. 2026-05-09 12:36:20.394 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_62
  1539. 2026-05-09 12:36:20.398 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_15
  1540. 2026-05-09 12:36:20.434 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_4
  1541. 2026-05-09 12:36:20.441 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_10
  1542. 2026-05-09 12:36:20.450 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_63
  1543. 2026-05-09 12:36:20.459 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_68
  1544. 2026-05-09 12:36:20.460 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_53
  1545. 2026-05-09 12:36:20.469 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_61
  1546. 2026-05-09 12:36:20.471 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_53
  1547. 2026-05-09 12:36:20.526 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_54
  1548. 2026-05-09 12:36:20.626 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_16
  1549. 2026-05-09 12:36:20.685 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getListUsingGET_1
  1550. 2026-05-09 12:36:20.738 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_64
  1551. 2026-05-09 12:36:20.786 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: statUsingGET_1
  1552. 2026-05-09 12:36:20.823 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_11
  1553. 2026-05-09 12:36:20.830 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_65
  1554. 2026-05-09 12:36:20.846 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_69
  1555. 2026-05-09 12:36:20.848 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_54
  1556. 2026-05-09 12:36:20.893 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_62
  1557. 2026-05-09 12:36:20.896 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_55
  1558. 2026-05-09 12:36:20.899 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_66
  1559. 2026-05-09 12:36:20.905 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_63
  1560. 2026-05-09 12:36:20.908 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_56
  1561. 2026-05-09 12:36:20.919 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_12
  1562. 2026-05-09 12:36:20.966 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_64
  1563. 2026-05-09 12:36:21.008 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_17
  1564. 2026-05-09 12:36:21.039 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: monthlyStatUsingGET_1
  1565. 2026-05-09 12:36:21.043 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: monthlyStatSummaryUsingGET_1
  1566. 2026-05-09 12:36:21.049 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getListUsingGET_2
  1567. 2026-05-09 12:36:21.140 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_67
  1568. 2026-05-09 12:36:21.185 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageListUsingGET_1
  1569. 2026-05-09 12:36:21.190 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: statUsingGET_2
  1570. 2026-05-09 12:36:21.253 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_13
  1571. 2026-05-09 12:36:21.256 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_14
  1572. 2026-05-09 12:36:21.315 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_65
  1573. 2026-05-09 12:36:21.328 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_68
  1574. 2026-05-09 12:36:21.394 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getYyWyjtzPageUsingGET_1
  1575. 2026-05-09 12:36:21.397 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_15
  1576. 2026-05-09 12:36:21.403 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_5
  1577. 2026-05-09 12:36:21.416 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_18
  1578. 2026-05-09 12:36:21.419 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_16
  1579. 2026-05-09 12:36:21.440 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_19
  1580. 2026-05-09 12:36:21.443 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_17
  1581. 2026-05-09 12:36:21.517 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_20
  1582. 2026-05-09 12:36:21.519 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_18
  1583. 2026-05-09 12:36:21.526 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_69
  1584. 2026-05-09 12:36:21.537 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_70
  1585. 2026-05-09 12:36:21.540 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_55
  1586. 2026-05-09 12:36:21.551 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_66
  1587. 2026-05-09 12:36:21.555 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_57
  1588. 2026-05-09 12:36:21.559 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_70
  1589. 2026-05-09 12:36:21.563 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_71
  1590. 2026-05-09 12:36:21.566 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_56
  1591. 2026-05-09 12:36:21.594 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_67
  1592. 2026-05-09 12:36:21.598 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_58
  1593. 2026-05-09 12:36:21.603 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_21
  1594. 2026-05-09 12:36:21.606 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_3
  1595. 2026-05-09 12:36:21.615 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_68
  1596. 2026-05-09 12:36:21.631 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_22
  1597. 2026-05-09 12:36:21.696 [main] INFO io.undertow - starting server: Undertow - 2.0.31.Final
  1598. 2026-05-09 12:36:21.713 [main] INFO org.xnio - XNIO version 3.3.8.Final
  1599. 2026-05-09 12:36:21.723 [main] INFO org.xnio.nio - XNIO NIO Implementation Version 3.3.8.Final
  1600. 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 ''
  1601. 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
  1602. 2026-05-09 12:36:23.299 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
  1603. 2026-05-09 12:36:23.302 [main] INFO com.tofly.feesapi.FeesApiApplication - Started FeesApiApplication in 44.857 seconds (JVM running for 46.753)
  1604. 2026-05-09 12:36:23.954 [RMI TCP Connection(3)-192.168.1.105] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  1605. 2026-05-09 12:36:23.955 [RMI TCP Connection(3)-192.168.1.105] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  1606. 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
  1607. 2026-05-09 12:37:30.587 [XNIO-1 task-1] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/yysspjxx/getPageList/getPageList】请求开始==================
  1608. 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
  1609. 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)
  1610. 2026-05-09 12:37:30.895 [XNIO-1 task-1] DEBUG c.t.f.s.m.Y.getPageListByKhbm_mpCount - <== Total: 1
  1611. 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 > ?
  1612. 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)
  1613. 2026-05-09 12:37:30.975 [XNIO-1 task-1] DEBUG c.t.f.s.m.Y.getPageListByKhbm - <== Total: 1
  1614. 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
  1615. 2026-05-09 12:37:31.008 [XNIO-1 task-1] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - ==> Parameters:
  1616. 2026-05-09 12:37:31.178 [XNIO-1 task-1] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - <== Total: 21
  1617. 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=?)
  1618. 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)
  1619. 2026-05-09 12:37:31.236 [XNIO-1 task-1] DEBUG c.t.f.s.m.Y.getPageCount - <== Total: 1
  1620. 2026-05-09 12:37:31.247 [XNIO-1 task-1] INFO c.t.feesapi.common.LogRecordAspect - =================【getPageList】请求结束==================
  1621. 2026-05-09 12:37:57.641 [SpringContextShutdownHook] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'taskScheduler'
  1622. 2026-05-09 12:37:57.652 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registering from Nacos Server now...
  1623. 2026-05-09 12:37:57.654 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registration finished.
  1624. 2026-05-09 12:37:57.656 [SpringContextShutdownHook] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'taskScheduler'
  1625. 2026-05-09 12:38:10.456 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.0.20.Final
  1626. 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
  1627. 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]
  1628. 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]
  1629. 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'}]
  1630. 2026-05-09 12:38:12.190 [main] INFO com.tofly.feesapi.FeesApiApplication - The following profiles are active: bd
  1631. 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.
  1632. 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.
  1633. 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!
  1634. 2026-05-09 12:38:13.961 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  1635. 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.
  1636. 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.
  1637. 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.
  1638. 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!
  1639. 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!
  1640. 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!
  1641. 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!
  1642. 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!
  1643. 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!
  1644. 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!
  1645. 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!
  1646. 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!
  1647. 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!
  1648. 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!
  1649. 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!
  1650. 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!
  1651. 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!
  1652. 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!
  1653. 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!
  1654. 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!
  1655. 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!
  1656. 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!
  1657. 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!
  1658. 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!
  1659. 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!
  1660. 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!
  1661. 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!
  1662. 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!
  1663. 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!
  1664. 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!
  1665. 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!
  1666. 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!
  1667. 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!
  1668. 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!
  1669. 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!
  1670. 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!
  1671. 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!
  1672. 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!
  1673. 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!
  1674. 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!
  1675. 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!
  1676. 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!
  1677. 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!
  1678. 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!
  1679. 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!
  1680. 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!
  1681. 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!
  1682. 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!
  1683. 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!
  1684. 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!
  1685. 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!
  1686. 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!
  1687. 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!
  1688. 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!
  1689. 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!
  1690. 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!
  1691. 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!
  1692. 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!
  1693. 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!
  1694. 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!
  1695. 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!
  1696. 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!
  1697. 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!
  1698. 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!
  1699. 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!
  1700. 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!
  1701. 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!
  1702. 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!
  1703. 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!
  1704. 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!
  1705. 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!
  1706. 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!
  1707. 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!
  1708. 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!
  1709. 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!
  1710. 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!
  1711. 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!
  1712. 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!
  1713. 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!
  1714. 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!
  1715. 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!
  1716. 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!
  1717. 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!
  1718. 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!
  1719. 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!
  1720. 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!
  1721. 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!
  1722. 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!
  1723. 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!
  1724. 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!
  1725. 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!
  1726. 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!
  1727. 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!
  1728. 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!
  1729. 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!
  1730. 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!
  1731. 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!
  1732. 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!
  1733. 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!
  1734. 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!
  1735. 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!
  1736. 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!
  1737. 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!
  1738. 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!
  1739. 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!
  1740. 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!
  1741. 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!
  1742. 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!
  1743. 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!
  1744. 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.
  1745. 2026-05-09 12:38:14.577 [main] INFO o.s.cloud.context.scope.GenericScope - BeanFactory id=6ba9fcc8-98cb-35e6-8547-52fc325bd065
  1746. 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)
  1747. 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)
  1748. 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)
  1749. 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)
  1750. 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)
  1751. 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)
  1752. 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
  1753. 2026-05-09 12:38:15.164 [main] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  1754. 2026-05-09 12:38:15.164 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 2959 ms
  1755. 2026-05-09 12:38:22.573 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1,master} inited
  1756. 2026-05-09 12:38:23.558 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-2,udb} inited
  1757. 2026-05-09 12:38:25.007 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-3,flowDB} inited
  1758. 2026-05-09 12:38:25.007 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [udb] success
  1759. 2026-05-09 12:38:25.007 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [flowDB] success
  1760. 2026-05-09 12:38:25.007 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
  1761. 2026-05-09 12:38:25.007 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [3] datasource,primary datasource named [master]
  1762. 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]
  1763. 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]
  1764. 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".
  1765. 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.
  1766. 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".
  1767. 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.
  1768. 2026-05-09 12:38:30.599 [main] INFO org.redisson.Version - Redisson 3.23.2
  1769. 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
  1770. 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
  1771. 2026-05-09 12:38:38.568 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
  1772. 2026-05-09 12:38:38.719 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 19 endpoint(s) beneath base path '/actuator'
  1773. 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)]
  1774. 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]
  1775. 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]
  1776. 2026-05-09 12:38:39.249 [main] INFO o.s.s.c.ThreadPoolTaskScheduler - Initializing ExecutorService 'taskScheduler'
  1777. 2026-05-09 12:38:39.449 [main] INFO o.s.b.a.s.s.UserDetailsServiceAutoConfiguration -
  1778. Using generated security password: 0bdcd5f9-57df-448f-b45d-84e26e37547f
  1779. 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]
  1780. 2026-05-09 12:38:41.042 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
  1781. 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.
  1782. 2026-05-09 12:38:41.279 [main] INFO s.d.s.w.p.DocumentationPluginsBootstrapper - Documentation plugins bootstrapped
  1783. 2026-05-09 12:38:41.282 [main] INFO s.d.s.w.p.DocumentationPluginsBootstrapper - Found 1 custom documentation plugin(s)
  1784. 2026-05-09 12:38:41.436 [main] INFO s.d.s.w.s.ApiListingReferenceScanner - Scanning for api listing references
  1785. 2026-05-09 12:38:41.855 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_1
  1786. 2026-05-09 12:38:41.860 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_1
  1787. 2026-05-09 12:38:41.861 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_1
  1788. 2026-05-09 12:38:41.862 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_1
  1789. 2026-05-09 12:38:41.866 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_1
  1790. 2026-05-09 12:38:41.867 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_1
  1791. 2026-05-09 12:38:41.888 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: addCustomerUsingPOST_1
  1792. 2026-05-09 12:38:41.889 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: deleteCustomerUsingPOST_1
  1793. 2026-05-09 12:38:41.890 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getBindCustomerUsingGET_1
  1794. 2026-05-09 12:38:41.892 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: selectCustomerUsingGET_1
  1795. 2026-05-09 12:38:41.893 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getBindCustomerAndQfUsingGET_1
  1796. 2026-05-09 12:38:41.894 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerBasicInFoUsingGET_1
  1797. 2026-05-09 12:38:41.895 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerChargeInFoUsingGET_1
  1798. 2026-05-09 12:38:41.896 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerInFoUsingGET_1
  1799. 2026-05-09 12:38:41.897 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerQfInFoUsingGET_1
  1800. 2026-05-09 12:38:41.898 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerReadMeterInFoUsingGET_1
  1801. 2026-05-09 12:38:41.909 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_2
  1802. 2026-05-09 12:38:41.933 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_2
  1803. 2026-05-09 12:38:41.935 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_2
  1804. 2026-05-09 12:38:41.936 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_2
  1805. 2026-05-09 12:38:41.941 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_2
  1806. 2026-05-09 12:38:41.942 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_2
  1807. 2026-05-09 12:38:41.959 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_3
  1808. 2026-05-09 12:38:41.961 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_3
  1809. 2026-05-09 12:38:41.961 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_3
  1810. 2026-05-09 12:38:41.964 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_3
  1811. 2026-05-09 12:38:41.965 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_3
  1812. 2026-05-09 12:38:41.971 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_3
  1813. 2026-05-09 12:38:41.978 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_4
  1814. 2026-05-09 12:38:41.979 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_4
  1815. 2026-05-09 12:38:41.980 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_4
  1816. 2026-05-09 12:38:41.982 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_4
  1817. 2026-05-09 12:38:41.983 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_4
  1818. 2026-05-09 12:38:41.985 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_5
  1819. 2026-05-09 12:38:41.986 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_5
  1820. 2026-05-09 12:38:41.987 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_5
  1821. 2026-05-09 12:38:41.990 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_5
  1822. 2026-05-09 12:38:41.990 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_5
  1823. 2026-05-09 12:38:41.997 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_4
  1824. 2026-05-09 12:38:42.002 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_6
  1825. 2026-05-09 12:38:42.009 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_5
  1826. 2026-05-09 12:38:42.010 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_6
  1827. 2026-05-09 12:38:42.011 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_6
  1828. 2026-05-09 12:38:42.014 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_6
  1829. 2026-05-09 12:38:42.015 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_6
  1830. 2026-05-09 12:38:42.017 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_1
  1831. 2026-05-09 12:38:42.024 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_7
  1832. 2026-05-09 12:38:42.025 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_7
  1833. 2026-05-09 12:38:42.025 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_7
  1834. 2026-05-09 12:38:42.029 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_7
  1835. 2026-05-09 12:38:42.030 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_7
  1836. 2026-05-09 12:38:42.034 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_8
  1837. 2026-05-09 12:38:42.034 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getFffsListUsingGET_1
  1838. 2026-05-09 12:38:42.035 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_8
  1839. 2026-05-09 12:38:42.036 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_9
  1840. 2026-05-09 12:38:42.040 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_8
  1841. 2026-05-09 12:38:42.040 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_8
  1842. 2026-05-09 12:38:42.046 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_2
  1843. 2026-05-09 12:38:42.051 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_9
  1844. 2026-05-09 12:38:42.052 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_10
  1845. 2026-05-09 12:38:42.053 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_11
  1846. 2026-05-09 12:38:42.055 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_9
  1847. 2026-05-09 12:38:42.056 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_9
  1848. 2026-05-09 12:38:42.059 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_10
  1849. 2026-05-09 12:38:42.061 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_12
  1850. 2026-05-09 12:38:42.061 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_13
  1851. 2026-05-09 12:38:42.064 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_10
  1852. 2026-05-09 12:38:42.065 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_10
  1853. 2026-05-09 12:38:42.069 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_11
  1854. 2026-05-09 12:38:42.071 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_14
  1855. 2026-05-09 12:38:42.072 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_15
  1856. 2026-05-09 12:38:42.075 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_11
  1857. 2026-05-09 12:38:42.076 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_11
  1858. 2026-05-09 12:38:42.083 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_12
  1859. 2026-05-09 12:38:42.084 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_16
  1860. 2026-05-09 12:38:42.085 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_8
  1861. 2026-05-09 12:38:42.087 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_12
  1862. 2026-05-09 12:38:42.088 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_12
  1863. 2026-05-09 12:38:42.094 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_13
  1864. 2026-05-09 12:38:42.095 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_17
  1865. 2026-05-09 12:38:42.096 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_9
  1866. 2026-05-09 12:38:42.098 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_13
  1867. 2026-05-09 12:38:42.100 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_13
  1868. 2026-05-09 12:38:42.104 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_14
  1869. 2026-05-09 12:38:42.105 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_18
  1870. 2026-05-09 12:38:42.106 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_19
  1871. 2026-05-09 12:38:42.111 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_14
  1872. 2026-05-09 12:38:42.112 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_14
  1873. 2026-05-09 12:38:42.120 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_15
  1874. 2026-05-09 12:38:42.134 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_6
  1875. 2026-05-09 12:38:42.161 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_15
  1876. 2026-05-09 12:38:42.168 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_3
  1877. 2026-05-09 12:38:42.175 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_16
  1878. 2026-05-09 12:38:42.176 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_20
  1879. 2026-05-09 12:38:42.178 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_10
  1880. 2026-05-09 12:38:42.180 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_16
  1881. 2026-05-09 12:38:42.181 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_15
  1882. 2026-05-09 12:38:42.187 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_17
  1883. 2026-05-09 12:38:42.196 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_7
  1884. 2026-05-09 12:38:42.197 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_21
  1885. 2026-05-09 12:38:42.198 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_11
  1886. 2026-05-09 12:38:42.201 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_17
  1887. 2026-05-09 12:38:42.202 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_16
  1888. 2026-05-09 12:38:42.219 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_8
  1889. 2026-05-09 12:38:42.221 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveBatchUsingPOST_1
  1890. 2026-05-09 12:38:42.366 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_18
  1891. 2026-05-09 12:38:42.370 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_22
  1892. 2026-05-09 12:38:42.371 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_12
  1893. 2026-05-09 12:38:42.373 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_18
  1894. 2026-05-09 12:38:42.374 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_17
  1895. 2026-05-09 12:38:42.376 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_19
  1896. 2026-05-09 12:38:42.382 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_23
  1897. 2026-05-09 12:38:42.382 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_13
  1898. 2026-05-09 12:38:42.385 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_19
  1899. 2026-05-09 12:38:42.386 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_18
  1900. 2026-05-09 12:38:42.389 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_20
  1901. 2026-05-09 12:38:42.391 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_24
  1902. 2026-05-09 12:38:42.394 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_20
  1903. 2026-05-09 12:38:42.395 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_19
  1904. 2026-05-09 12:38:42.403 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_21
  1905. 2026-05-09 12:38:42.405 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_25
  1906. 2026-05-09 12:38:42.405 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_14
  1907. 2026-05-09 12:38:42.408 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_21
  1908. 2026-05-09 12:38:42.433 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: Xh_WordToPdfUsingPOST_1
  1909. 2026-05-09 12:38:42.437 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_22
  1910. 2026-05-09 12:38:42.443 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_26
  1911. 2026-05-09 12:38:42.444 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_15
  1912. 2026-05-09 12:38:42.448 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_22
  1913. 2026-05-09 12:38:42.450 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_27
  1914. 2026-05-09 12:38:42.451 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_16
  1915. 2026-05-09 12:38:42.455 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_23
  1916. 2026-05-09 12:38:42.455 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_20
  1917. 2026-05-09 12:38:42.472 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_23
  1918. 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
  1919. 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
  1920. 2026-05-09 12:38:42.574 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportYsqdUsingGET_1
  1921. 2026-05-09 12:38:42.632 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_24
  1922. 2026-05-09 12:38:42.635 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_28
  1923. 2026-05-09 12:38:42.636 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_17
  1924. 2026-05-09 12:38:42.661 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_25
  1925. 2026-05-09 12:38:42.661 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_29
  1926. 2026-05-09 12:38:42.662 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_18
  1927. 2026-05-09 12:38:42.665 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_24
  1928. 2026-05-09 12:38:42.666 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_21
  1929. 2026-05-09 12:38:42.679 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_26
  1930. 2026-05-09 12:38:42.685 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_30
  1931. 2026-05-09 12:38:42.686 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_19
  1932. 2026-05-09 12:38:42.689 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_25
  1933. 2026-05-09 12:38:42.690 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_22
  1934. 2026-05-09 12:38:42.692 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_27
  1935. 2026-05-09 12:38:42.696 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_31
  1936. 2026-05-09 12:38:42.697 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_20
  1937. 2026-05-09 12:38:42.699 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_26
  1938. 2026-05-09 12:38:42.700 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_23
  1939. 2026-05-09 12:38:42.710 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_28
  1940. 2026-05-09 12:38:42.716 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_32
  1941. 2026-05-09 12:38:42.717 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_21
  1942. 2026-05-09 12:38:42.721 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_27
  1943. 2026-05-09 12:38:42.722 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_24
  1944. 2026-05-09 12:38:42.732 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxBtsqPageUsingGET_1
  1945. 2026-05-09 12:38:42.734 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_29
  1946. 2026-05-09 12:38:42.738 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_33
  1947. 2026-05-09 12:38:42.739 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_22
  1948. 2026-05-09 12:38:42.742 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_28
  1949. 2026-05-09 12:38:42.743 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_25
  1950. 2026-05-09 12:38:42.746 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxBzsqPageUsingGET_1
  1951. 2026-05-09 12:38:42.753 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_30
  1952. 2026-05-09 12:38:42.758 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_34
  1953. 2026-05-09 12:38:42.758 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_23
  1954. 2026-05-09 12:38:42.762 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_29
  1955. 2026-05-09 12:38:42.763 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_26
  1956. 2026-05-09 12:38:42.770 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxDbsqPageUsingGET_1
  1957. 2026-05-09 12:38:42.772 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPOST_1
  1958. 2026-05-09 12:38:42.774 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_31
  1959. 2026-05-09 12:38:42.779 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_35
  1960. 2026-05-09 12:38:42.780 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_24
  1961. 2026-05-09 12:38:42.782 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_30
  1962. 2026-05-09 12:38:42.783 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_27
  1963. 2026-05-09 12:38:42.785 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_32
  1964. 2026-05-09 12:38:42.788 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_36
  1965. 2026-05-09 12:38:42.789 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_25
  1966. 2026-05-09 12:38:42.793 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_31
  1967. 2026-05-09 12:38:42.794 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_28
  1968. 2026-05-09 12:38:42.796 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_33
  1969. 2026-05-09 12:38:42.797 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_37
  1970. 2026-05-09 12:38:42.798 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_26
  1971. 2026-05-09 12:38:42.803 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_32
  1972. 2026-05-09 12:38:42.804 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_29
  1973. 2026-05-09 12:38:42.815 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_34
  1974. 2026-05-09 12:38:42.819 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_38
  1975. 2026-05-09 12:38:42.820 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_39
  1976. 2026-05-09 12:38:42.824 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_33
  1977. 2026-05-09 12:38:42.824 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_30
  1978. 2026-05-09 12:38:42.827 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_35
  1979. 2026-05-09 12:38:42.833 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_40
  1980. 2026-05-09 12:38:42.835 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_27
  1981. 2026-05-09 12:38:42.839 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_34
  1982. 2026-05-09 12:38:42.840 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_31
  1983. 2026-05-09 12:38:42.849 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxHfsqPageUsingGET_1
  1984. 2026-05-09 12:38:42.851 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_36
  1985. 2026-05-09 12:38:42.857 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_41
  1986. 2026-05-09 12:38:42.859 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_28
  1987. 2026-05-09 12:38:42.862 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_35
  1988. 2026-05-09 12:38:42.864 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_32
  1989. 2026-05-09 12:38:42.873 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxLwsqPageUsingGET_1
  1990. 2026-05-09 12:38:42.876 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_37
  1991. 2026-05-09 12:38:42.884 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_42
  1992. 2026-05-09 12:38:42.885 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_29
  1993. 2026-05-09 12:38:42.889 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_36
  1994. 2026-05-09 12:38:42.891 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_33
  1995. 2026-05-09 12:38:42.898 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxLxdhsqPageUsingGET_1
  1996. 2026-05-09 12:38:42.901 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_38
  1997. 2026-05-09 12:38:42.908 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_43
  1998. 2026-05-09 12:38:42.910 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_30
  1999. 2026-05-09 12:38:42.915 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_37
  2000. 2026-05-09 12:38:42.917 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_34
  2001. 2026-05-09 12:38:42.929 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_39
  2002. 2026-05-09 12:38:42.936 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_44
  2003. 2026-05-09 12:38:42.938 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_31
  2004. 2026-05-09 12:38:42.942 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_38
  2005. 2026-05-09 12:38:42.944 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_35
  2006. 2026-05-09 12:38:42.951 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxDbsqPageUsingGET_2
  2007. 2026-05-09 12:38:42.959 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_1
  2008. 2026-05-09 12:38:42.962 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_40
  2009. 2026-05-09 12:38:42.965 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_45
  2010. 2026-05-09 12:38:42.966 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_32
  2011. 2026-05-09 12:38:42.971 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_39
  2012. 2026-05-09 12:38:42.980 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_36
  2013. 2026-05-09 12:38:42.981 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_41
  2014. 2026-05-09 12:38:42.984 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_46
  2015. 2026-05-09 12:38:42.985 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_33
  2016. 2026-05-09 12:38:42.989 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_40
  2017. 2026-05-09 12:38:42.991 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_37
  2018. 2026-05-09 12:38:42.992 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_42
  2019. 2026-05-09 12:38:42.996 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_47
  2020. 2026-05-09 12:38:42.997 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_34
  2021. 2026-05-09 12:38:43.002 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_41
  2022. 2026-05-09 12:38:43.003 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_38
  2023. 2026-05-09 12:38:43.005 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_43
  2024. 2026-05-09 12:38:43.008 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_48
  2025. 2026-05-09 12:38:43.009 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_49
  2026. 2026-05-09 12:38:43.013 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_42
  2027. 2026-05-09 12:38:43.014 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_39
  2028. 2026-05-09 12:38:43.016 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_44
  2029. 2026-05-09 12:38:43.019 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_50
  2030. 2026-05-09 12:38:43.020 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_51
  2031. 2026-05-09 12:38:43.023 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_43
  2032. 2026-05-09 12:38:43.024 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_40
  2033. 2026-05-09 12:38:43.026 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_45
  2034. 2026-05-09 12:38:43.032 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_52
  2035. 2026-05-09 12:38:43.034 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_35
  2036. 2026-05-09 12:38:43.037 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_44
  2037. 2026-05-09 12:38:43.038 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_41
  2038. 2026-05-09 12:38:43.046 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxWzjbsqPageUsingGET_1
  2039. 2026-05-09 12:38:43.049 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_46
  2040. 2026-05-09 12:38:43.056 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_53
  2041. 2026-05-09 12:38:43.057 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_36
  2042. 2026-05-09 12:38:43.061 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_45
  2043. 2026-05-09 12:38:43.062 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_42
  2044. 2026-05-09 12:38:43.070 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxXbsqPageUsingGET_1
  2045. 2026-05-09 12:38:43.073 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_47
  2046. 2026-05-09 12:38:43.080 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_54
  2047. 2026-05-09 12:38:43.081 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_37
  2048. 2026-05-09 12:38:43.084 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_46
  2049. 2026-05-09 12:38:43.087 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_43
  2050. 2026-05-09 12:38:43.094 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxXhsqPageUsingGET_1
  2051. 2026-05-09 12:38:43.096 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPOST_2
  2052. 2026-05-09 12:38:43.097 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_48
  2053. 2026-05-09 12:38:43.100 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_55
  2054. 2026-05-09 12:38:43.101 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_38
  2055. 2026-05-09 12:38:43.105 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_47
  2056. 2026-05-09 12:38:43.107 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_44
  2057. 2026-05-09 12:38:43.109 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_49
  2058. 2026-05-09 12:38:43.114 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_56
  2059. 2026-05-09 12:38:43.115 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_39
  2060. 2026-05-09 12:38:43.118 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_48
  2061. 2026-05-09 12:38:43.120 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_45
  2062. 2026-05-09 12:38:43.128 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_9
  2063. 2026-05-09 12:38:43.129 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_57
  2064. 2026-05-09 12:38:43.131 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_40
  2065. 2026-05-09 12:38:43.133 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_49
  2066. 2026-05-09 12:38:43.135 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_58
  2067. 2026-05-09 12:38:43.136 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_41
  2068. 2026-05-09 12:38:43.139 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_50
  2069. 2026-05-09 12:38:43.147 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_10
  2070. 2026-05-09 12:38:43.149 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_50
  2071. 2026-05-09 12:38:43.155 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_59
  2072. 2026-05-09 12:38:43.156 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_42
  2073. 2026-05-09 12:38:43.160 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_51
  2074. 2026-05-09 12:38:43.164 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_46
  2075. 2026-05-09 12:38:43.166 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_2
  2076. 2026-05-09 12:38:43.187 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_52
  2077. 2026-05-09 12:38:43.198 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_51
  2078. 2026-05-09 12:38:43.212 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_11
  2079. 2026-05-09 12:38:43.225 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_1
  2080. 2026-05-09 12:38:43.239 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_52
  2081. 2026-05-09 12:38:43.240 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_43
  2082. 2026-05-09 12:38:43.262 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_53
  2083. 2026-05-09 12:38:43.270 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_60
  2084. 2026-05-09 12:38:43.271 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_44
  2085. 2026-05-09 12:38:43.274 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_53
  2086. 2026-05-09 12:38:43.276 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_47
  2087. 2026-05-09 12:38:43.278 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_54
  2088. 2026-05-09 12:38:43.282 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_61
  2089. 2026-05-09 12:38:43.284 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_45
  2090. 2026-05-09 12:38:43.290 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_54
  2091. 2026-05-09 12:38:43.297 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_48
  2092. 2026-05-09 12:38:43.299 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_3
  2093. 2026-05-09 12:38:43.302 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_62
  2094. 2026-05-09 12:38:43.303 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_46
  2095. 2026-05-09 12:38:43.306 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_55
  2096. 2026-05-09 12:38:43.312 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_12
  2097. 2026-05-09 12:38:43.319 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_63
  2098. 2026-05-09 12:38:43.320 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_47
  2099. 2026-05-09 12:38:43.324 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_56
  2100. 2026-05-09 12:38:43.330 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_13
  2101. 2026-05-09 12:38:43.333 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_55
  2102. 2026-05-09 12:38:43.336 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_64
  2103. 2026-05-09 12:38:43.337 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_48
  2104. 2026-05-09 12:38:43.342 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_57
  2105. 2026-05-09 12:38:43.348 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_49
  2106. 2026-05-09 12:38:43.349 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_4
  2107. 2026-05-09 12:38:43.369 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getDaCustomerPageUsingGET_1
  2108. 2026-05-09 12:38:43.402 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_1
  2109. 2026-05-09 12:38:43.417 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_14
  2110. 2026-05-09 12:38:43.448 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_56
  2111. 2026-05-09 12:38:43.496 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: delByIdUsingDELETE_1
  2112. 2026-05-09 12:38:43.498 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: delByIdsUsingDELETE_1
  2113. 2026-05-09 12:38:43.500 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: disableUsingPUT_1
  2114. 2026-05-09 12:38:43.501 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: enableUsingPUT_1
  2115. 2026-05-09 12:38:43.504 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: importExcelUsingPOST_1
  2116. 2026-05-09 12:38:43.507 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_2
  2117. 2026-05-09 12:38:43.513 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_3
  2118. 2026-05-09 12:38:43.531 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_5
  2119. 2026-05-09 12:38:43.534 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_6
  2120. 2026-05-09 12:38:43.536 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_7
  2121. 2026-05-09 12:38:43.539 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_57
  2122. 2026-05-09 12:38:43.550 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_49
  2123. 2026-05-09 12:38:43.574 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: addUsingPOST_1
  2124. 2026-05-09 12:38:43.581 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_58
  2125. 2026-05-09 12:38:43.589 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_65
  2126. 2026-05-09 12:38:43.590 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_50
  2127. 2026-05-09 12:38:43.593 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_58
  2128. 2026-05-09 12:38:43.597 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: save_gdUsingPOST_1
  2129. 2026-05-09 12:38:43.606 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_50
  2130. 2026-05-09 12:38:43.620 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_59
  2131. 2026-05-09 12:38:43.627 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_66
  2132. 2026-05-09 12:38:43.628 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_51
  2133. 2026-05-09 12:38:43.632 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_59
  2134. 2026-05-09 12:38:43.634 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_51
  2135. 2026-05-09 12:38:43.637 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_60
  2136. 2026-05-09 12:38:43.640 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_67
  2137. 2026-05-09 12:38:43.642 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_52
  2138. 2026-05-09 12:38:43.647 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_60
  2139. 2026-05-09 12:38:43.649 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: save_gdUsingPOST_2
  2140. 2026-05-09 12:38:43.654 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_52
  2141. 2026-05-09 12:38:43.655 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_8
  2142. 2026-05-09 12:38:43.665 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_9
  2143. 2026-05-09 12:38:43.679 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_61
  2144. 2026-05-09 12:38:43.728 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_2
  2145. 2026-05-09 12:38:43.732 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_62
  2146. 2026-05-09 12:38:43.736 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_15
  2147. 2026-05-09 12:38:43.767 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_4
  2148. 2026-05-09 12:38:43.773 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_10
  2149. 2026-05-09 12:38:43.780 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_63
  2150. 2026-05-09 12:38:43.787 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_68
  2151. 2026-05-09 12:38:43.789 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_53
  2152. 2026-05-09 12:38:43.796 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_61
  2153. 2026-05-09 12:38:43.798 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_53
  2154. 2026-05-09 12:38:43.855 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_54
  2155. 2026-05-09 12:38:43.947 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_16
  2156. 2026-05-09 12:38:43.998 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getListUsingGET_1
  2157. 2026-05-09 12:38:44.049 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_64
  2158. 2026-05-09 12:38:44.092 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: statUsingGET_1
  2159. 2026-05-09 12:38:44.128 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_11
  2160. 2026-05-09 12:38:44.134 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_65
  2161. 2026-05-09 12:38:44.145 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_69
  2162. 2026-05-09 12:38:44.146 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_54
  2163. 2026-05-09 12:38:44.180 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_62
  2164. 2026-05-09 12:38:44.183 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_55
  2165. 2026-05-09 12:38:44.185 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_66
  2166. 2026-05-09 12:38:44.191 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_63
  2167. 2026-05-09 12:38:44.193 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_56
  2168. 2026-05-09 12:38:44.204 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_12
  2169. 2026-05-09 12:38:44.236 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_64
  2170. 2026-05-09 12:38:44.263 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_17
  2171. 2026-05-09 12:38:44.282 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: monthlyStatUsingGET_1
  2172. 2026-05-09 12:38:44.285 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: monthlyStatSummaryUsingGET_1
  2173. 2026-05-09 12:38:44.289 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getListUsingGET_2
  2174. 2026-05-09 12:38:44.356 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_67
  2175. 2026-05-09 12:38:44.408 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageListUsingGET_1
  2176. 2026-05-09 12:38:44.411 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: statUsingGET_2
  2177. 2026-05-09 12:38:44.447 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_13
  2178. 2026-05-09 12:38:44.449 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_14
  2179. 2026-05-09 12:38:44.483 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_65
  2180. 2026-05-09 12:38:44.491 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_68
  2181. 2026-05-09 12:38:44.536 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getYyWyjtzPageUsingGET_1
  2182. 2026-05-09 12:38:44.537 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_15
  2183. 2026-05-09 12:38:44.540 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_5
  2184. 2026-05-09 12:38:44.548 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_18
  2185. 2026-05-09 12:38:44.549 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_16
  2186. 2026-05-09 12:38:44.562 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_19
  2187. 2026-05-09 12:38:44.565 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_17
  2188. 2026-05-09 12:38:44.617 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_20
  2189. 2026-05-09 12:38:44.619 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_18
  2190. 2026-05-09 12:38:44.623 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_69
  2191. 2026-05-09 12:38:44.632 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_70
  2192. 2026-05-09 12:38:44.634 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_55
  2193. 2026-05-09 12:38:44.642 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_66
  2194. 2026-05-09 12:38:44.645 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_57
  2195. 2026-05-09 12:38:44.649 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_70
  2196. 2026-05-09 12:38:44.651 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_71
  2197. 2026-05-09 12:38:44.653 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_56
  2198. 2026-05-09 12:38:44.661 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_67
  2199. 2026-05-09 12:38:44.664 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_58
  2200. 2026-05-09 12:38:44.667 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_21
  2201. 2026-05-09 12:38:44.670 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_3
  2202. 2026-05-09 12:38:44.676 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_68
  2203. 2026-05-09 12:38:44.688 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_22
  2204. 2026-05-09 12:38:44.731 [main] INFO io.undertow - starting server: Undertow - 2.0.31.Final
  2205. 2026-05-09 12:38:44.740 [main] INFO org.xnio - XNIO version 3.3.8.Final
  2206. 2026-05-09 12:38:44.747 [main] INFO org.xnio.nio - XNIO NIO Implementation Version 3.3.8.Final
  2207. 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 ''
  2208. 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
  2209. 2026-05-09 12:38:46.255 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
  2210. 2026-05-09 12:38:46.257 [main] INFO com.tofly.feesapi.FeesApiApplication - Started FeesApiApplication in 37.594 seconds (JVM running for 39.168)
  2211. 2026-05-09 12:38:46.814 [RMI TCP Connection(3)-192.168.1.105] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  2212. 2026-05-09 12:38:46.814 [RMI TCP Connection(3)-192.168.1.105] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  2213. 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
  2214. 2026-05-09 12:39:23.930 [XNIO-1 task-1] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/yysspjxx/getPageList/getPageList】请求开始==================
  2215. 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
  2216. 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)
  2217. 2026-05-09 12:39:24.171 [XNIO-1 task-1] DEBUG c.t.f.s.m.Y.getPageListByKhbm_mpCount - <== Total: 1
  2218. 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 > ?
  2219. 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)
  2220. 2026-05-09 12:39:24.292 [XNIO-1 task-1] DEBUG c.t.f.s.m.Y.getPageListByKhbm - <== Total: 1
  2221. 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
  2222. 2026-05-09 12:39:24.319 [XNIO-1 task-1] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - ==> Parameters:
  2223. 2026-05-09 12:39:24.550 [XNIO-1 task-1] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - <== Total: 21
  2224. 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=?)
  2225. 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)
  2226. 2026-05-09 12:39:24.612 [XNIO-1 task-1] DEBUG c.t.f.s.m.Y.getPageCount - <== Total: 1
  2227. 2026-05-09 12:39:24.622 [XNIO-1 task-1] INFO c.t.feesapi.common.LogRecordAspect - =================【getPageList】请求结束==================
  2228. 2026-05-09 12:39:53.552 [XNIO-1 task-2] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/yysspjxx/getPageList/getPageList】请求开始==================
  2229. 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 = ?)
  2230. 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)
  2231. 2026-05-09 12:39:53.623 [XNIO-1 task-2] DEBUG c.t.f.s.m.Y.getPageList_mpCount - <== Total: 1
  2232. 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 > ?
  2233. 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)
  2234. 2026-05-09 12:39:53.942 [XNIO-1 task-2] DEBUG c.t.f.s.m.YySspjxxMapper.getPageList - <== Total: 20
  2235. 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
  2236. 2026-05-09 12:39:53.945 [XNIO-1 task-2] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - ==> Parameters:
  2237. 2026-05-09 12:39:54.156 [XNIO-1 task-2] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - <== Total: 21
  2238. 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=?)
  2239. 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)
  2240. 2026-05-09 12:39:54.246 [XNIO-1 task-2] DEBUG c.t.f.s.m.Y.getPageCount - <== Total: 1
  2241. 2026-05-09 12:39:54.247 [XNIO-1 task-2] INFO c.t.feesapi.common.LogRecordAspect - =================【getPageList】请求结束==================
  2242. 2026-05-09 12:40:04.965 [XNIO-1 task-3] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/yysspjxx/getPageList/getPageList】请求开始==================
  2243. 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
  2244. 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)
  2245. 2026-05-09 12:40:05.035 [XNIO-1 task-3] DEBUG c.t.f.s.m.Y.getPageListByKhbm_mpCount - <== Total: 1
  2246. 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 > ?
  2247. 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)
  2248. 2026-05-09 12:40:05.102 [XNIO-1 task-3] DEBUG c.t.f.s.m.Y.getPageListByKhbm - <== Total: 1
  2249. 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
  2250. 2026-05-09 12:40:05.103 [XNIO-1 task-3] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - ==> Parameters:
  2251. 2026-05-09 12:40:05.271 [XNIO-1 task-3] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - <== Total: 21
  2252. 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=?)
  2253. 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)
  2254. 2026-05-09 12:40:05.343 [XNIO-1 task-3] DEBUG c.t.f.s.m.Y.getPageCount - <== Total: 1
  2255. 2026-05-09 12:40:05.344 [XNIO-1 task-3] INFO c.t.feesapi.common.LogRecordAspect - =================【getPageList】请求结束==================
  2256. 2026-05-09 12:44:43.826 [XNIO-1 task-4] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/yysspjxx/getPageList/getPageList】请求开始==================
  2257. 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
  2258. 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)
  2259. 2026-05-09 12:44:43.960 [XNIO-1 task-4] DEBUG c.t.f.s.m.Y.getPageListByKhbm_mpCount - <== Total: 1
  2260. 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 > ?
  2261. 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)
  2262. 2026-05-09 12:44:44.031 [XNIO-1 task-4] DEBUG c.t.f.s.m.Y.getPageListByKhbm - <== Total: 1
  2263. 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
  2264. 2026-05-09 12:44:44.033 [XNIO-1 task-4] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - ==> Parameters:
  2265. 2026-05-09 12:44:44.199 [XNIO-1 task-4] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - <== Total: 21
  2266. 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=?)
  2267. 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)
  2268. 2026-05-09 12:44:44.259 [XNIO-1 task-4] DEBUG c.t.f.s.m.Y.getPageCount - <== Total: 1
  2269. 2026-05-09 12:44:44.259 [XNIO-1 task-4] INFO c.t.feesapi.common.LogRecordAspect - =================【getPageList】请求结束==================
  2270. 2026-05-09 12:45:34.040 [XNIO-1 task-5] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/yysspjxx/getPageList/getPageList】请求开始==================
  2271. 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
  2272. 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)
  2273. 2026-05-09 12:45:34.107 [XNIO-1 task-5] DEBUG c.t.f.s.m.Y.getPageListByKhbm_mpCount - <== Total: 1
  2274. 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 > ?
  2275. 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)
  2276. 2026-05-09 12:45:34.166 [XNIO-1 task-5] DEBUG c.t.f.s.m.Y.getPageListByKhbm - <== Total: 1
  2277. 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
  2278. 2026-05-09 12:45:34.167 [XNIO-1 task-5] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - ==> Parameters:
  2279. 2026-05-09 12:45:34.341 [XNIO-1 task-5] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - <== Total: 21
  2280. 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=?)
  2281. 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)
  2282. 2026-05-09 12:45:34.411 [XNIO-1 task-5] DEBUG c.t.f.s.m.Y.getPageCount - <== Total: 1
  2283. 2026-05-09 12:45:34.412 [XNIO-1 task-5] INFO c.t.feesapi.common.LogRecordAspect - =================【getPageList】请求结束==================
  2284. 2026-05-09 12:49:20.759 [XNIO-1 task-6] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/yysspjxx/getPageList/getPageList】请求开始==================
  2285. 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
  2286. 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)
  2287. 2026-05-09 12:49:20.887 [XNIO-1 task-6] DEBUG c.t.f.s.m.Y.getPageListByKhbm_mpCount - <== Total: 1
  2288. 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
  2289. 2026-05-09 12:49:20.888 [XNIO-1 task-6] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - ==> Parameters:
  2290. 2026-05-09 12:49:21.135 [XNIO-1 task-6] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - <== Total: 21
  2291. 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 >' '
  2292. 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)
  2293. 2026-05-09 12:49:21.202 [XNIO-1 task-6] DEBUG c.t.f.s.m.Y.getPageCount - <== Total: 1
  2294. 2026-05-09 12:49:21.203 [XNIO-1 task-6] INFO c.t.feesapi.common.LogRecordAspect - =================【getPageList】请求结束==================
  2295. 2026-05-09 12:49:38.914 [XNIO-1 task-7] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/yysspjxx/getPageList/getPageList】请求开始==================
  2296. 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
  2297. 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)
  2298. 2026-05-09 12:49:39.049 [XNIO-1 task-7] DEBUG c.t.f.s.m.Y.getPageListByKhbm_mpCount - <== Total: 1
  2299. 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 > ?
  2300. 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)
  2301. 2026-05-09 12:49:39.270 [XNIO-1 task-7] DEBUG c.t.f.s.m.Y.getPageListByKhbm - <== Total: 20
  2302. 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
  2303. 2026-05-09 12:49:39.271 [XNIO-1 task-7] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - ==> Parameters:
  2304. 2026-05-09 12:49:39.452 [XNIO-1 task-7] DEBUG c.t.f.b.mapper.BmSjMapper.selectList - <== Total: 21
  2305. 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 >' '
  2306. 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)
  2307. 2026-05-09 12:49:39.540 [XNIO-1 task-7] DEBUG c.t.f.s.m.Y.getPageCount - <== Total: 1
  2308. 2026-05-09 12:49:39.540 [XNIO-1 task-7] INFO c.t.feesapi.common.LogRecordAspect - =================【getPageList】请求结束==================
  2309. 2026-05-09 13:39:28.468 [SpringContextShutdownHook] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'taskScheduler'
  2310. 2026-05-09 13:39:28.850 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registering from Nacos Server now...
  2311. 2026-05-09 13:39:28.892 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registration finished.
  2312. 2026-05-09 13:39:28.904 [SpringContextShutdownHook] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'taskScheduler'
  2313. 2026-05-09 15:30:16.111 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.0.20.Final
  2314. 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
  2315. 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]
  2316. 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]
  2317. 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'}]
  2318. 2026-05-09 15:30:17.900 [main] INFO com.tofly.feesapi.FeesApiApplication - The following profiles are active: bd
  2319. 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.
  2320. 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.
  2321. 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!
  2322. 2026-05-09 15:30:19.851 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  2323. 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.
  2324. 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.
  2325. 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.
  2326. 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!
  2327. 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!
  2328. 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!
  2329. 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!
  2330. 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!
  2331. 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!
  2332. 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!
  2333. 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!
  2334. 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!
  2335. 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!
  2336. 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!
  2337. 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!
  2338. 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!
  2339. 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!
  2340. 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!
  2341. 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!
  2342. 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!
  2343. 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!
  2344. 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!
  2345. 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!
  2346. 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!
  2347. 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!
  2348. 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!
  2349. 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!
  2350. 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!
  2351. 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!
  2352. 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!
  2353. 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!
  2354. 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!
  2355. 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!
  2356. 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!
  2357. 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!
  2358. 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!
  2359. 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!
  2360. 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!
  2361. 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!
  2362. 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!
  2363. 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!
  2364. 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!
  2365. 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!
  2366. 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!
  2367. 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!
  2368. 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!
  2369. 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!
  2370. 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!
  2371. 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!
  2372. 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!
  2373. 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!
  2374. 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!
  2375. 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!
  2376. 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!
  2377. 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!
  2378. 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!
  2379. 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!
  2380. 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!
  2381. 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!
  2382. 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!
  2383. 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!
  2384. 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!
  2385. 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!
  2386. 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!
  2387. 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!
  2388. 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!
  2389. 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!
  2390. 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!
  2391. 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!
  2392. 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!
  2393. 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!
  2394. 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!
  2395. 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!
  2396. 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!
  2397. 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!
  2398. 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!
  2399. 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!
  2400. 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!
  2401. 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!
  2402. 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!
  2403. 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!
  2404. 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!
  2405. 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!
  2406. 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!
  2407. 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!
  2408. 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!
  2409. 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!
  2410. 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!
  2411. 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!
  2412. 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!
  2413. 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!
  2414. 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!
  2415. 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!
  2416. 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!
  2417. 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!
  2418. 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!
  2419. 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!
  2420. 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!
  2421. 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!
  2422. 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!
  2423. 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!
  2424. 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!
  2425. 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!
  2426. 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!
  2427. 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!
  2428. 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!
  2429. 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!
  2430. 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!
  2431. 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!
  2432. 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.
  2433. 2026-05-09 15:30:20.567 [main] INFO o.s.cloud.context.scope.GenericScope - BeanFactory id=6ba9fcc8-98cb-35e6-8547-52fc325bd065
  2434. 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)
  2435. 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)
  2436. 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)
  2437. 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)
  2438. 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)
  2439. 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)
  2440. 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
  2441. 2026-05-09 15:30:21.196 [main] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  2442. 2026-05-09 15:30:21.196 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3281 ms
  2443. 2026-05-09 15:30:28.589 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1,master} inited
  2444. 2026-05-09 15:30:29.906 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-2,udb} inited
  2445. 2026-05-09 15:30:31.391 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-3,flowDB} inited
  2446. 2026-05-09 15:30:31.391 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [udb] success
  2447. 2026-05-09 15:30:31.391 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [flowDB] success
  2448. 2026-05-09 15:30:31.391 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
  2449. 2026-05-09 15:30:31.391 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [3] datasource,primary datasource named [master]
  2450. 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]
  2451. 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]
  2452. 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".
  2453. 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.
  2454. 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".
  2455. 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.
  2456. 2026-05-09 15:30:38.563 [main] INFO org.redisson.Version - Redisson 3.23.2
  2457. 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
  2458. 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
  2459. 2026-05-09 15:30:46.852 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
  2460. 2026-05-09 15:30:47.017 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 19 endpoint(s) beneath base path '/actuator'
  2461. 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)]
  2462. 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]
  2463. 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]
  2464. 2026-05-09 15:30:47.552 [main] INFO o.s.s.c.ThreadPoolTaskScheduler - Initializing ExecutorService 'taskScheduler'
  2465. 2026-05-09 15:30:47.761 [main] INFO o.s.b.a.s.s.UserDetailsServiceAutoConfiguration -
  2466. Using generated security password: 7fcee511-f776-496f-80e4-4db46cb88a08
  2467. 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]
  2468. 2026-05-09 15:30:49.306 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
  2469. 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.
  2470. 2026-05-09 15:30:49.543 [main] INFO s.d.s.w.p.DocumentationPluginsBootstrapper - Documentation plugins bootstrapped
  2471. 2026-05-09 15:30:49.545 [main] INFO s.d.s.w.p.DocumentationPluginsBootstrapper - Found 1 custom documentation plugin(s)
  2472. 2026-05-09 15:30:49.674 [main] INFO s.d.s.w.s.ApiListingReferenceScanner - Scanning for api listing references
  2473. 2026-05-09 15:30:50.042 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_1
  2474. 2026-05-09 15:30:50.046 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_1
  2475. 2026-05-09 15:30:50.047 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_1
  2476. 2026-05-09 15:30:50.047 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_1
  2477. 2026-05-09 15:30:50.052 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_1
  2478. 2026-05-09 15:30:50.053 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_1
  2479. 2026-05-09 15:30:50.071 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: addCustomerUsingPOST_1
  2480. 2026-05-09 15:30:50.072 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: deleteCustomerUsingPOST_1
  2481. 2026-05-09 15:30:50.073 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getBindCustomerUsingGET_1
  2482. 2026-05-09 15:30:50.074 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: selectCustomerUsingGET_1
  2483. 2026-05-09 15:30:50.075 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getBindCustomerAndQfUsingGET_1
  2484. 2026-05-09 15:30:50.076 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerBasicInFoUsingGET_1
  2485. 2026-05-09 15:30:50.077 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerChargeInFoUsingGET_1
  2486. 2026-05-09 15:30:50.077 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerInFoUsingGET_1
  2487. 2026-05-09 15:30:50.078 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerQfInFoUsingGET_1
  2488. 2026-05-09 15:30:50.079 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerReadMeterInFoUsingGET_1
  2489. 2026-05-09 15:30:50.089 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_2
  2490. 2026-05-09 15:30:50.111 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_2
  2491. 2026-05-09 15:30:50.113 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_2
  2492. 2026-05-09 15:30:50.114 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_2
  2493. 2026-05-09 15:30:50.118 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_2
  2494. 2026-05-09 15:30:50.119 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_2
  2495. 2026-05-09 15:30:50.136 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_3
  2496. 2026-05-09 15:30:50.137 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_3
  2497. 2026-05-09 15:30:50.138 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_3
  2498. 2026-05-09 15:30:50.141 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_3
  2499. 2026-05-09 15:30:50.142 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_3
  2500. 2026-05-09 15:30:50.148 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_3
  2501. 2026-05-09 15:30:50.154 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_4
  2502. 2026-05-09 15:30:50.155 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_4
  2503. 2026-05-09 15:30:50.155 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_4
  2504. 2026-05-09 15:30:50.158 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_4
  2505. 2026-05-09 15:30:50.158 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_4
  2506. 2026-05-09 15:30:50.160 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_5
  2507. 2026-05-09 15:30:50.161 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_5
  2508. 2026-05-09 15:30:50.162 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_5
  2509. 2026-05-09 15:30:50.164 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_5
  2510. 2026-05-09 15:30:50.165 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_5
  2511. 2026-05-09 15:30:50.172 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_4
  2512. 2026-05-09 15:30:50.178 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_6
  2513. 2026-05-09 15:30:50.184 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_5
  2514. 2026-05-09 15:30:50.185 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_6
  2515. 2026-05-09 15:30:50.185 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_6
  2516. 2026-05-09 15:30:50.188 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_6
  2517. 2026-05-09 15:30:50.188 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_6
  2518. 2026-05-09 15:30:50.191 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_1
  2519. 2026-05-09 15:30:50.196 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_7
  2520. 2026-05-09 15:30:50.197 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_7
  2521. 2026-05-09 15:30:50.197 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_7
  2522. 2026-05-09 15:30:50.201 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_7
  2523. 2026-05-09 15:30:50.201 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_7
  2524. 2026-05-09 15:30:50.205 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_8
  2525. 2026-05-09 15:30:50.206 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getFffsListUsingGET_1
  2526. 2026-05-09 15:30:50.207 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_8
  2527. 2026-05-09 15:30:50.208 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_9
  2528. 2026-05-09 15:30:50.210 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_8
  2529. 2026-05-09 15:30:50.211 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_8
  2530. 2026-05-09 15:30:50.216 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_2
  2531. 2026-05-09 15:30:50.220 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_9
  2532. 2026-05-09 15:30:50.222 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_10
  2533. 2026-05-09 15:30:50.223 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_11
  2534. 2026-05-09 15:30:50.225 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_9
  2535. 2026-05-09 15:30:50.225 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_9
  2536. 2026-05-09 15:30:50.228 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_10
  2537. 2026-05-09 15:30:50.230 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_12
  2538. 2026-05-09 15:30:50.231 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_13
  2539. 2026-05-09 15:30:50.234 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_10
  2540. 2026-05-09 15:30:50.235 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_10
  2541. 2026-05-09 15:30:50.239 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_11
  2542. 2026-05-09 15:30:50.240 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_14
  2543. 2026-05-09 15:30:50.241 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_15
  2544. 2026-05-09 15:30:50.244 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_11
  2545. 2026-05-09 15:30:50.245 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_11
  2546. 2026-05-09 15:30:50.252 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_12
  2547. 2026-05-09 15:30:50.252 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_16
  2548. 2026-05-09 15:30:50.253 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_8
  2549. 2026-05-09 15:30:50.255 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_12
  2550. 2026-05-09 15:30:50.256 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_12
  2551. 2026-05-09 15:30:50.261 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_13
  2552. 2026-05-09 15:30:50.263 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_17
  2553. 2026-05-09 15:30:50.264 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_9
  2554. 2026-05-09 15:30:50.265 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_13
  2555. 2026-05-09 15:30:50.266 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_13
  2556. 2026-05-09 15:30:50.269 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_14
  2557. 2026-05-09 15:30:50.270 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_18
  2558. 2026-05-09 15:30:50.272 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_19
  2559. 2026-05-09 15:30:50.275 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_14
  2560. 2026-05-09 15:30:50.276 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_14
  2561. 2026-05-09 15:30:50.285 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_15
  2562. 2026-05-09 15:30:50.297 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_6
  2563. 2026-05-09 15:30:50.315 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_15
  2564. 2026-05-09 15:30:50.320 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_3
  2565. 2026-05-09 15:30:50.326 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_16
  2566. 2026-05-09 15:30:50.327 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_20
  2567. 2026-05-09 15:30:50.327 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_10
  2568. 2026-05-09 15:30:50.329 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_16
  2569. 2026-05-09 15:30:50.329 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_15
  2570. 2026-05-09 15:30:50.334 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_17
  2571. 2026-05-09 15:30:50.340 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_7
  2572. 2026-05-09 15:30:50.340 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_21
  2573. 2026-05-09 15:30:50.342 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_11
  2574. 2026-05-09 15:30:50.343 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_17
  2575. 2026-05-09 15:30:50.345 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_16
  2576. 2026-05-09 15:30:50.358 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_8
  2577. 2026-05-09 15:30:50.360 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveBatchUsingPOST_1
  2578. 2026-05-09 15:30:50.471 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_18
  2579. 2026-05-09 15:30:50.475 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_22
  2580. 2026-05-09 15:30:50.476 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_12
  2581. 2026-05-09 15:30:50.478 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_18
  2582. 2026-05-09 15:30:50.479 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_17
  2583. 2026-05-09 15:30:50.481 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_19
  2584. 2026-05-09 15:30:50.487 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_23
  2585. 2026-05-09 15:30:50.488 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_13
  2586. 2026-05-09 15:30:50.491 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_19
  2587. 2026-05-09 15:30:50.492 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_18
  2588. 2026-05-09 15:30:50.493 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_20
  2589. 2026-05-09 15:30:50.495 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_24
  2590. 2026-05-09 15:30:50.498 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_20
  2591. 2026-05-09 15:30:50.500 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_19
  2592. 2026-05-09 15:30:50.508 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_21
  2593. 2026-05-09 15:30:50.509 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_25
  2594. 2026-05-09 15:30:50.510 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_14
  2595. 2026-05-09 15:30:50.513 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_21
  2596. 2026-05-09 15:30:50.538 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: Xh_WordToPdfUsingPOST_1
  2597. 2026-05-09 15:30:50.542 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_22
  2598. 2026-05-09 15:30:50.548 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_26
  2599. 2026-05-09 15:30:50.549 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_15
  2600. 2026-05-09 15:30:50.553 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_22
  2601. 2026-05-09 15:30:50.554 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_27
  2602. 2026-05-09 15:30:50.555 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_16
  2603. 2026-05-09 15:30:50.558 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_23
  2604. 2026-05-09 15:30:50.559 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_20
  2605. 2026-05-09 15:30:50.573 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_23
  2606. 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
  2607. 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
  2608. 2026-05-09 15:30:50.662 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportYsqdUsingGET_1
  2609. 2026-05-09 15:30:50.712 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_24
  2610. 2026-05-09 15:30:50.714 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_28
  2611. 2026-05-09 15:30:50.714 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_17
  2612. 2026-05-09 15:30:50.738 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_25
  2613. 2026-05-09 15:30:50.739 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_29
  2614. 2026-05-09 15:30:50.740 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_18
  2615. 2026-05-09 15:30:50.743 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_24
  2616. 2026-05-09 15:30:50.744 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_21
  2617. 2026-05-09 15:30:50.757 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_26
  2618. 2026-05-09 15:30:50.764 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_30
  2619. 2026-05-09 15:30:50.765 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_19
  2620. 2026-05-09 15:30:50.768 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_25
  2621. 2026-05-09 15:30:50.769 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_22
  2622. 2026-05-09 15:30:50.771 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_27
  2623. 2026-05-09 15:30:50.776 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_31
  2624. 2026-05-09 15:30:50.777 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_20
  2625. 2026-05-09 15:30:50.779 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_26
  2626. 2026-05-09 15:30:50.779 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_23
  2627. 2026-05-09 15:30:50.789 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_28
  2628. 2026-05-09 15:30:50.796 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_32
  2629. 2026-05-09 15:30:50.797 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_21
  2630. 2026-05-09 15:30:50.801 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_27
  2631. 2026-05-09 15:30:50.802 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_24
  2632. 2026-05-09 15:30:50.812 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxBtsqPageUsingGET_1
  2633. 2026-05-09 15:30:50.814 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_29
  2634. 2026-05-09 15:30:50.819 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_33
  2635. 2026-05-09 15:30:50.820 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_22
  2636. 2026-05-09 15:30:50.823 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_28
  2637. 2026-05-09 15:30:50.824 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_25
  2638. 2026-05-09 15:30:50.827 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxBzsqPageUsingGET_1
  2639. 2026-05-09 15:30:50.833 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_30
  2640. 2026-05-09 15:30:50.838 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_34
  2641. 2026-05-09 15:30:50.839 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_23
  2642. 2026-05-09 15:30:50.844 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_29
  2643. 2026-05-09 15:30:50.845 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_26
  2644. 2026-05-09 15:30:50.851 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxDbsqPageUsingGET_1
  2645. 2026-05-09 15:30:50.853 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPOST_1
  2646. 2026-05-09 15:30:50.856 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_31
  2647. 2026-05-09 15:30:50.862 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_35
  2648. 2026-05-09 15:30:50.863 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_24
  2649. 2026-05-09 15:30:50.865 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_30
  2650. 2026-05-09 15:30:50.866 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_27
  2651. 2026-05-09 15:30:50.867 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_32
  2652. 2026-05-09 15:30:50.870 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_36
  2653. 2026-05-09 15:30:50.871 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_25
  2654. 2026-05-09 15:30:50.875 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_31
  2655. 2026-05-09 15:30:50.876 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_28
  2656. 2026-05-09 15:30:50.878 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_33
  2657. 2026-05-09 15:30:50.879 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_37
  2658. 2026-05-09 15:30:50.880 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_26
  2659. 2026-05-09 15:30:50.884 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_32
  2660. 2026-05-09 15:30:50.885 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_29
  2661. 2026-05-09 15:30:50.895 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_34
  2662. 2026-05-09 15:30:50.898 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_38
  2663. 2026-05-09 15:30:50.899 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_39
  2664. 2026-05-09 15:30:50.901 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_33
  2665. 2026-05-09 15:30:50.902 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_30
  2666. 2026-05-09 15:30:50.904 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_35
  2667. 2026-05-09 15:30:50.911 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_40
  2668. 2026-05-09 15:30:50.912 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_27
  2669. 2026-05-09 15:30:50.915 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_34
  2670. 2026-05-09 15:30:50.916 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_31
  2671. 2026-05-09 15:30:50.922 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxHfsqPageUsingGET_1
  2672. 2026-05-09 15:30:50.925 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_36
  2673. 2026-05-09 15:30:50.929 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_41
  2674. 2026-05-09 15:30:50.929 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_28
  2675. 2026-05-09 15:30:50.933 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_35
  2676. 2026-05-09 15:30:50.934 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_32
  2677. 2026-05-09 15:30:50.941 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxLwsqPageUsingGET_1
  2678. 2026-05-09 15:30:50.943 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_37
  2679. 2026-05-09 15:30:50.949 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_42
  2680. 2026-05-09 15:30:50.950 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_29
  2681. 2026-05-09 15:30:50.953 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_36
  2682. 2026-05-09 15:30:50.954 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_33
  2683. 2026-05-09 15:30:50.960 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxLxdhsqPageUsingGET_1
  2684. 2026-05-09 15:30:50.962 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_38
  2685. 2026-05-09 15:30:50.968 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_43
  2686. 2026-05-09 15:30:50.969 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_30
  2687. 2026-05-09 15:30:50.973 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_37
  2688. 2026-05-09 15:30:50.975 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_34
  2689. 2026-05-09 15:30:50.985 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_39
  2690. 2026-05-09 15:30:50.990 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_44
  2691. 2026-05-09 15:30:50.992 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_31
  2692. 2026-05-09 15:30:50.995 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_38
  2693. 2026-05-09 15:30:50.996 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_35
  2694. 2026-05-09 15:30:51.002 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxDbsqPageUsingGET_2
  2695. 2026-05-09 15:30:51.009 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_1
  2696. 2026-05-09 15:30:51.011 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_40
  2697. 2026-05-09 15:30:51.014 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_45
  2698. 2026-05-09 15:30:51.015 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_32
  2699. 2026-05-09 15:30:51.019 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_39
  2700. 2026-05-09 15:30:51.027 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_36
  2701. 2026-05-09 15:30:51.028 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_41
  2702. 2026-05-09 15:30:51.031 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_46
  2703. 2026-05-09 15:30:51.032 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_33
  2704. 2026-05-09 15:30:51.034 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_40
  2705. 2026-05-09 15:30:51.036 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_37
  2706. 2026-05-09 15:30:51.038 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_42
  2707. 2026-05-09 15:30:51.040 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_47
  2708. 2026-05-09 15:30:51.041 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_34
  2709. 2026-05-09 15:30:51.044 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_41
  2710. 2026-05-09 15:30:51.046 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_38
  2711. 2026-05-09 15:30:51.048 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_43
  2712. 2026-05-09 15:30:51.050 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_48
  2713. 2026-05-09 15:30:51.051 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_49
  2714. 2026-05-09 15:30:51.054 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_42
  2715. 2026-05-09 15:30:51.055 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_39
  2716. 2026-05-09 15:30:51.057 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_44
  2717. 2026-05-09 15:30:51.059 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_50
  2718. 2026-05-09 15:30:51.060 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_51
  2719. 2026-05-09 15:30:51.062 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_43
  2720. 2026-05-09 15:30:51.063 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_40
  2721. 2026-05-09 15:30:51.065 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_45
  2722. 2026-05-09 15:30:51.071 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_52
  2723. 2026-05-09 15:30:51.071 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_35
  2724. 2026-05-09 15:30:51.074 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_44
  2725. 2026-05-09 15:30:51.075 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_41
  2726. 2026-05-09 15:30:51.081 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxWzjbsqPageUsingGET_1
  2727. 2026-05-09 15:30:51.083 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_46
  2728. 2026-05-09 15:30:51.088 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_53
  2729. 2026-05-09 15:30:51.089 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_36
  2730. 2026-05-09 15:30:51.092 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_45
  2731. 2026-05-09 15:30:51.093 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_42
  2732. 2026-05-09 15:30:51.098 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxXbsqPageUsingGET_1
  2733. 2026-05-09 15:30:51.100 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_47
  2734. 2026-05-09 15:30:51.105 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_54
  2735. 2026-05-09 15:30:51.106 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_37
  2736. 2026-05-09 15:30:51.108 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_46
  2737. 2026-05-09 15:30:51.109 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_43
  2738. 2026-05-09 15:30:51.114 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxXhsqPageUsingGET_1
  2739. 2026-05-09 15:30:51.116 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPOST_2
  2740. 2026-05-09 15:30:51.117 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_48
  2741. 2026-05-09 15:30:51.119 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_55
  2742. 2026-05-09 15:30:51.120 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_38
  2743. 2026-05-09 15:30:51.124 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_47
  2744. 2026-05-09 15:30:51.124 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_44
  2745. 2026-05-09 15:30:51.127 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_49
  2746. 2026-05-09 15:30:51.131 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_56
  2747. 2026-05-09 15:30:51.132 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_39
  2748. 2026-05-09 15:30:51.134 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_48
  2749. 2026-05-09 15:30:51.135 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_45
  2750. 2026-05-09 15:30:51.141 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_9
  2751. 2026-05-09 15:30:51.142 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_57
  2752. 2026-05-09 15:30:51.143 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_40
  2753. 2026-05-09 15:30:51.145 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_49
  2754. 2026-05-09 15:30:51.147 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_58
  2755. 2026-05-09 15:30:51.148 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_41
  2756. 2026-05-09 15:30:51.150 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_50
  2757. 2026-05-09 15:30:51.155 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_10
  2758. 2026-05-09 15:30:51.157 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_50
  2759. 2026-05-09 15:30:51.162 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_59
  2760. 2026-05-09 15:30:51.163 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_42
  2761. 2026-05-09 15:30:51.166 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_51
  2762. 2026-05-09 15:30:51.170 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_46
  2763. 2026-05-09 15:30:51.171 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_2
  2764. 2026-05-09 15:30:51.188 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_52
  2765. 2026-05-09 15:30:51.195 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_51
  2766. 2026-05-09 15:30:51.203 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_11
  2767. 2026-05-09 15:30:51.214 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_1
  2768. 2026-05-09 15:30:51.223 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_52
  2769. 2026-05-09 15:30:51.224 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_43
  2770. 2026-05-09 15:30:51.244 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_53
  2771. 2026-05-09 15:30:51.249 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_60
  2772. 2026-05-09 15:30:51.250 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_44
  2773. 2026-05-09 15:30:51.253 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_53
  2774. 2026-05-09 15:30:51.254 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_47
  2775. 2026-05-09 15:30:51.256 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_54
  2776. 2026-05-09 15:30:51.258 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_61
  2777. 2026-05-09 15:30:51.259 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_45
  2778. 2026-05-09 15:30:51.264 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_54
  2779. 2026-05-09 15:30:51.271 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_48
  2780. 2026-05-09 15:30:51.272 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_3
  2781. 2026-05-09 15:30:51.274 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_62
  2782. 2026-05-09 15:30:51.275 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_46
  2783. 2026-05-09 15:30:51.277 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_55
  2784. 2026-05-09 15:30:51.284 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_12
  2785. 2026-05-09 15:30:51.290 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_63
  2786. 2026-05-09 15:30:51.292 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_47
  2787. 2026-05-09 15:30:51.295 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_56
  2788. 2026-05-09 15:30:51.302 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_13
  2789. 2026-05-09 15:30:51.303 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_55
  2790. 2026-05-09 15:30:51.306 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_64
  2791. 2026-05-09 15:30:51.307 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_48
  2792. 2026-05-09 15:30:51.312 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_57
  2793. 2026-05-09 15:30:51.317 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_49
  2794. 2026-05-09 15:30:51.318 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_4
  2795. 2026-05-09 15:30:51.336 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getDaCustomerPageUsingGET_1
  2796. 2026-05-09 15:30:51.362 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_1
  2797. 2026-05-09 15:30:51.372 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_14
  2798. 2026-05-09 15:30:51.392 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_56
  2799. 2026-05-09 15:30:51.432 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: delByIdUsingDELETE_1
  2800. 2026-05-09 15:30:51.433 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: delByIdsUsingDELETE_1
  2801. 2026-05-09 15:30:51.435 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: disableUsingPUT_1
  2802. 2026-05-09 15:30:51.436 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: enableUsingPUT_1
  2803. 2026-05-09 15:30:51.439 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: importExcelUsingPOST_1
  2804. 2026-05-09 15:30:51.440 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_2
  2805. 2026-05-09 15:30:51.446 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_3
  2806. 2026-05-09 15:30:51.461 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_5
  2807. 2026-05-09 15:30:51.463 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_6
  2808. 2026-05-09 15:30:51.464 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_7
  2809. 2026-05-09 15:30:51.466 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_57
  2810. 2026-05-09 15:30:51.475 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_49
  2811. 2026-05-09 15:30:51.494 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: addUsingPOST_1
  2812. 2026-05-09 15:30:51.500 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_58
  2813. 2026-05-09 15:30:51.506 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_65
  2814. 2026-05-09 15:30:51.507 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_50
  2815. 2026-05-09 15:30:51.510 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_58
  2816. 2026-05-09 15:30:51.514 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: save_gdUsingPOST_1
  2817. 2026-05-09 15:30:51.521 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_50
  2818. 2026-05-09 15:30:51.534 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_59
  2819. 2026-05-09 15:30:51.538 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_66
  2820. 2026-05-09 15:30:51.540 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_51
  2821. 2026-05-09 15:30:51.543 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_59
  2822. 2026-05-09 15:30:51.545 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_51
  2823. 2026-05-09 15:30:51.547 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_60
  2824. 2026-05-09 15:30:51.550 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_67
  2825. 2026-05-09 15:30:51.551 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_52
  2826. 2026-05-09 15:30:51.555 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_60
  2827. 2026-05-09 15:30:51.557 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: save_gdUsingPOST_2
  2828. 2026-05-09 15:30:51.561 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_52
  2829. 2026-05-09 15:30:51.562 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_8
  2830. 2026-05-09 15:30:51.570 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_9
  2831. 2026-05-09 15:30:51.582 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_61
  2832. 2026-05-09 15:30:51.620 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_2
  2833. 2026-05-09 15:30:51.623 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_62
  2834. 2026-05-09 15:30:51.627 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_15
  2835. 2026-05-09 15:30:51.655 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_4
  2836. 2026-05-09 15:30:51.661 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_10
  2837. 2026-05-09 15:30:51.667 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_63
  2838. 2026-05-09 15:30:51.674 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_68
  2839. 2026-05-09 15:30:51.675 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_53
  2840. 2026-05-09 15:30:51.683 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_61
  2841. 2026-05-09 15:30:51.685 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_53
  2842. 2026-05-09 15:30:51.732 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_54
  2843. 2026-05-09 15:30:51.818 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_16
  2844. 2026-05-09 15:30:51.872 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getListUsingGET_1
  2845. 2026-05-09 15:30:51.923 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_64
  2846. 2026-05-09 15:30:51.969 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: statUsingGET_1
  2847. 2026-05-09 15:30:52.008 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_11
  2848. 2026-05-09 15:30:52.014 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_65
  2849. 2026-05-09 15:30:52.027 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_69
  2850. 2026-05-09 15:30:52.029 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_54
  2851. 2026-05-09 15:30:52.070 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_62
  2852. 2026-05-09 15:30:52.074 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_55
  2853. 2026-05-09 15:30:52.077 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_66
  2854. 2026-05-09 15:30:52.084 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_63
  2855. 2026-05-09 15:30:52.087 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_56
  2856. 2026-05-09 15:30:52.098 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_12
  2857. 2026-05-09 15:30:52.140 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_64
  2858. 2026-05-09 15:30:52.170 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_17
  2859. 2026-05-09 15:30:52.192 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: monthlyStatUsingGET_1
  2860. 2026-05-09 15:30:52.195 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: monthlyStatSummaryUsingGET_1
  2861. 2026-05-09 15:30:52.200 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getListUsingGET_2
  2862. 2026-05-09 15:30:52.277 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_67
  2863. 2026-05-09 15:30:52.330 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageListUsingGET_1
  2864. 2026-05-09 15:30:52.333 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: statUsingGET_2
  2865. 2026-05-09 15:30:52.366 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_13
  2866. 2026-05-09 15:30:52.368 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_14
  2867. 2026-05-09 15:30:52.400 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_65
  2868. 2026-05-09 15:30:52.407 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_68
  2869. 2026-05-09 15:30:52.446 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getYyWyjtzPageUsingGET_1
  2870. 2026-05-09 15:30:52.447 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_15
  2871. 2026-05-09 15:30:52.450 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_5
  2872. 2026-05-09 15:30:52.457 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_18
  2873. 2026-05-09 15:30:52.459 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_16
  2874. 2026-05-09 15:30:52.471 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_19
  2875. 2026-05-09 15:30:52.472 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_17
  2876. 2026-05-09 15:30:52.520 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_20
  2877. 2026-05-09 15:30:52.521 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_18
  2878. 2026-05-09 15:30:52.524 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_69
  2879. 2026-05-09 15:30:52.531 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_70
  2880. 2026-05-09 15:30:52.533 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_55
  2881. 2026-05-09 15:30:52.541 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_66
  2882. 2026-05-09 15:30:52.544 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_57
  2883. 2026-05-09 15:30:52.547 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_70
  2884. 2026-05-09 15:30:52.549 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_71
  2885. 2026-05-09 15:30:52.550 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_56
  2886. 2026-05-09 15:30:52.557 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_67
  2887. 2026-05-09 15:30:52.561 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_58
  2888. 2026-05-09 15:30:52.563 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_21
  2889. 2026-05-09 15:30:52.566 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_3
  2890. 2026-05-09 15:30:52.572 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_68
  2891. 2026-05-09 15:30:52.582 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_22
  2892. 2026-05-09 15:30:52.623 [main] INFO io.undertow - starting server: Undertow - 2.0.31.Final
  2893. 2026-05-09 15:30:52.632 [main] INFO org.xnio - XNIO version 3.3.8.Final
  2894. 2026-05-09 15:30:52.640 [main] INFO org.xnio.nio - XNIO NIO Implementation Version 3.3.8.Final
  2895. 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 ''
  2896. 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
  2897. 2026-05-09 15:30:54.174 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
  2898. 2026-05-09 15:30:54.177 [main] INFO com.tofly.feesapi.FeesApiApplication - Started FeesApiApplication in 39.701 seconds (JVM running for 40.829)
  2899. 2026-05-09 15:30:54.768 [RMI TCP Connection(5)-192.168.1.105] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  2900. 2026-05-09 15:30:54.768 [RMI TCP Connection(5)-192.168.1.105] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  2901. 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
  2902. 2026-05-09 17:32:21.110 [XNIO-1 task-1] ERROR io.undertow.request - UT005023: Exception handling request to /sfgl/yyqfmx/getpagelist
  2903. org.springframework.web.client.HttpClientErrorException$BadRequest: 400 Bad Request: [{"error":"invalid_token","error_description":"Invalid access token: 05867129-9470-4da5-9c4b-facb872be2b0"}]
  2904. at org.springframework.web.client.HttpClientErrorException.create(HttpClientErrorException.java:101)
  2905. at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:184)
  2906. at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:125)
  2907. at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63)
  2908. at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:782)
  2909. at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:740)
  2910. at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:674)
  2911. at org.springframework.web.client.RestTemplate.exchange(RestTemplate.java:583)
  2912. at org.springframework.security.oauth2.provider.token.RemoteTokenServices.postForMap(RemoteTokenServices.java:149)
  2913. at org.springframework.security.oauth2.provider.token.RemoteTokenServices.loadAuthentication(RemoteTokenServices.java:106)
  2914. at org.springframework.security.oauth2.provider.authentication.OAuth2AuthenticationManager.authenticate(OAuth2AuthenticationManager.java:83)
  2915. at org.springframework.security.oauth2.provider.authentication.OAuth2AuthenticationProcessingFilter.doFilter(OAuth2AuthenticationProcessingFilter.java:150)
  2916. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
  2917. at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
  2918. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
  2919. at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:92)
  2920. at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:77)
  2921. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
  2922. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
  2923. at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
  2924. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
  2925. at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
  2926. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
  2927. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
  2928. at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:215)
  2929. at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:178)
  2930. at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:358)
  2931. at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:271)
  2932. at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
  2933. at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
  2934. at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
  2935. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
  2936. at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
  2937. at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
  2938. at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
  2939. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
  2940. at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
  2941. at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
  2942. at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:109)
  2943. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
  2944. at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
  2945. at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
  2946. at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
  2947. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
  2948. at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
  2949. at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
  2950. at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:84)
  2951. at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:62)
  2952. at io.undertow.servlet.handlers.ServletChain$1.handleRequest(ServletChain.java:68)
  2953. at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36)
  2954. at io.undertow.servlet.handlers.RedirectDirHandler.handleRequest(RedirectDirHandler.java:68)
  2955. at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:132)
  2956. at io.undertow.servlet.handlers.security.ServletAuthenticationCallHandler.handleRequest(ServletAuthenticationCallHandler.java:57)
  2957. at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
  2958. at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:46)
  2959. at io.undertow.servlet.handlers.security.ServletConfidentialityConstraintHandler.handleRequest(ServletConfidentialityConstraintHandler.java:64)
  2960. at io.undertow.security.handlers.AuthenticationMechanismsHandler.handleRequest(AuthenticationMechanismsHandler.java:60)
  2961. at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:77)
  2962. at io.undertow.security.handlers.AbstractSecurityContextAssociationHandler.handleRequest(AbstractSecurityContextAssociationHandler.java:43)
  2963. at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
  2964. at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
  2965. at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:269)
  2966. at io.undertow.servlet.handlers.ServletInitialHandler.access$100(ServletInitialHandler.java:78)
  2967. at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:133)
  2968. at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:130)
  2969. at io.undertow.servlet.core.ServletRequestContextThreadSetupAction$1.call(ServletRequestContextThreadSetupAction.java:48)
  2970. at io.undertow.servlet.core.ContextClassLoaderSetupAction$1.call(ContextClassLoaderSetupAction.java:43)
  2971. at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:249)
  2972. at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:78)
  2973. at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:99)
  2974. at io.undertow.server.Connectors.executeRootHandler(Connectors.java:376)
  2975. at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:830)
  2976. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
  2977. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
  2978. at java.lang.Thread.run(Thread.java:748)
  2979. 2026-05-09 17:32:21.138 [XNIO-1 task-1] ERROR io.undertow.request - UT005022: Exception generating error page /error
  2980. 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"}]
  2981. at io.undertow.servlet.spec.RequestDispatcherImpl.error(RequestDispatcherImpl.java:507)
  2982. at io.undertow.servlet.spec.RequestDispatcherImpl.error(RequestDispatcherImpl.java:427)
  2983. at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:308)
  2984. at io.undertow.servlet.handlers.ServletInitialHandler.access$100(ServletInitialHandler.java:78)
  2985. at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:133)
  2986. at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:130)
  2987. at io.undertow.servlet.core.ServletRequestContextThreadSetupAction$1.call(ServletRequestContextThreadSetupAction.java:48)
  2988. at io.undertow.servlet.core.ContextClassLoaderSetupAction$1.call(ContextClassLoaderSetupAction.java:43)
  2989. at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:249)
  2990. at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:78)
  2991. at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:99)
  2992. at io.undertow.server.Connectors.executeRootHandler(Connectors.java:376)
  2993. at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:830)
  2994. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
  2995. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
  2996. at java.lang.Thread.run(Thread.java:748)
  2997. Caused by: org.springframework.web.client.HttpClientErrorException$BadRequest: 400 Bad Request: [{"error":"invalid_token","error_description":"Invalid access token: 05867129-9470-4da5-9c4b-facb872be2b0"}]
  2998. at org.springframework.web.client.HttpClientErrorException.create(HttpClientErrorException.java:101)
  2999. at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:184)
  3000. at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:125)
  3001. at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63)
  3002. at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:782)
  3003. at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:740)
  3004. at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:674)
  3005. at org.springframework.web.client.RestTemplate.exchange(RestTemplate.java:583)
  3006. at org.springframework.security.oauth2.provider.token.RemoteTokenServices.postForMap(RemoteTokenServices.java:149)
  3007. at org.springframework.security.oauth2.provider.token.RemoteTokenServices.loadAuthentication(RemoteTokenServices.java:106)
  3008. at org.springframework.security.oauth2.provider.authentication.OAuth2AuthenticationManager.authenticate(OAuth2AuthenticationManager.java:83)
  3009. at org.springframework.security.oauth2.provider.authentication.OAuth2AuthenticationProcessingFilter.doFilter(OAuth2AuthenticationProcessingFilter.java:150)
  3010. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
  3011. at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
  3012. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
  3013. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:103)
  3014. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
  3015. at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
  3016. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
  3017. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:103)
  3018. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
  3019. at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:215)
  3020. at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:178)
  3021. at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:358)
  3022. at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:271)
  3023. at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
  3024. at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
  3025. at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:84)
  3026. at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:62)
  3027. at io.undertow.servlet.handlers.ServletChain$1.handleRequest(ServletChain.java:68)
  3028. at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36)
  3029. at io.undertow.servlet.handlers.RedirectDirHandler.handleRequest(RedirectDirHandler.java:68)
  3030. at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
  3031. at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
  3032. at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:251)
  3033. at io.undertow.servlet.handlers.ServletInitialHandler.dispatchToPath(ServletInitialHandler.java:186)
  3034. at io.undertow.servlet.spec.RequestDispatcherImpl.error(RequestDispatcherImpl.java:501)
  3035. ... 15 common frames omitted
  3036. 2026-05-09 17:35:28.983 [XNIO-1 task-39] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/api/sfgl/yyqfmx/getpagelist/getPageList】请求开始==================
  3037. 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 = ?)
  3038. 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)
  3039. 2026-05-09 17:35:49.311 [XNIO-1 task-39] DEBUG c.t.f.s.m.Y.getPageList_mpCount - <== Total: 1
  3040. 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 > ?
  3041. 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)
  3042. 2026-05-09 17:35:49.633 [XNIO-1 task-39] DEBUG c.t.f.s.m.YyQfmxMapper.getPageList - <== Total: 20
  3043. 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=?)
  3044. 2026-05-09 17:35:49.638 [XNIO-1 task-39] DEBUG c.t.f.s.m.YyQfmxMapper.getPageCount - ==> Parameters: 70030001(String), 10753(String)
  3045. 2026-05-09 17:35:49.723 [XNIO-1 task-39] DEBUG c.t.f.s.m.YyQfmxMapper.getPageCount - <== Total: 1
  3046. 2026-05-09 17:35:49.733 [XNIO-1 task-39] INFO c.t.feesapi.common.LogRecordAspect - =================【getPageList】请求结束==================
  3047. 2026-05-09 17:37:59.599 [SpringContextShutdownHook] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'taskScheduler'
  3048. 2026-05-09 17:38:00.440 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registering from Nacos Server now...
  3049. 2026-05-09 17:38:00.555 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registration finished.
  3050. 2026-05-09 17:38:00.566 [SpringContextShutdownHook] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'taskScheduler'
  3051. 2026-05-09 17:38:01.092 [SpringContextShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
  3052. 2026-05-09 17:38:01.104 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-2} closing ...
  3053. 2026-05-09 17:38:32.006 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.0.20.Final
  3054. 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
  3055. 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]
  3056. 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]
  3057. 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'}]
  3058. 2026-05-09 17:38:35.276 [main] INFO com.tofly.feesapi.FeesApiApplication - The following profiles are active: bd
  3059. 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.
  3060. 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.
  3061. 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!
  3062. 2026-05-09 17:38:37.990 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  3063. 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.
  3064. 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.
  3065. 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.
  3066. 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!
  3067. 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!
  3068. 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!
  3069. 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!
  3070. 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!
  3071. 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!
  3072. 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!
  3073. 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!
  3074. 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!
  3075. 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!
  3076. 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!
  3077. 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!
  3078. 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!
  3079. 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!
  3080. 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!
  3081. 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!
  3082. 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!
  3083. 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!
  3084. 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!
  3085. 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!
  3086. 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!
  3087. 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!
  3088. 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!
  3089. 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!
  3090. 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!
  3091. 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!
  3092. 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!
  3093. 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!
  3094. 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!
  3095. 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!
  3096. 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!
  3097. 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!
  3098. 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!
  3099. 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!
  3100. 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!
  3101. 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!
  3102. 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!
  3103. 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!
  3104. 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!
  3105. 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!
  3106. 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!
  3107. 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!
  3108. 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!
  3109. 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!
  3110. 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!
  3111. 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!
  3112. 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!
  3113. 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!
  3114. 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!
  3115. 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!
  3116. 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!
  3117. 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!
  3118. 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!
  3119. 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!
  3120. 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!
  3121. 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!
  3122. 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!
  3123. 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!
  3124. 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!
  3125. 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!
  3126. 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!
  3127. 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!
  3128. 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!
  3129. 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!
  3130. 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!
  3131. 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!
  3132. 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!
  3133. 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!
  3134. 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!
  3135. 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!
  3136. 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!
  3137. 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!
  3138. 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!
  3139. 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!
  3140. 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!
  3141. 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!
  3142. 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!
  3143. 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!
  3144. 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!
  3145. 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!
  3146. 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!
  3147. 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!
  3148. 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!
  3149. 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!
  3150. 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!
  3151. 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!
  3152. 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!
  3153. 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!
  3154. 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!
  3155. 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!
  3156. 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!
  3157. 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!
  3158. 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!
  3159. 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!
  3160. 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!
  3161. 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!
  3162. 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!
  3163. 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!
  3164. 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!
  3165. 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!
  3166. 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!
  3167. 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!
  3168. 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!
  3169. 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!
  3170. 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!
  3171. 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!
  3172. 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.
  3173. 2026-05-09 17:38:38.805 [main] INFO o.s.cloud.context.scope.GenericScope - BeanFactory id=6ba9fcc8-98cb-35e6-8547-52fc325bd065
  3174. 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)
  3175. 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)
  3176. 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)
  3177. 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)
  3178. 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)
  3179. 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)
  3180. 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
  3181. 2026-05-09 17:38:39.707 [main] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  3182. 2026-05-09 17:38:39.707 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 4406 ms
  3183. 2026-05-09 17:38:46.711 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1,master} inited
  3184. 2026-05-09 17:38:47.395 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-2,udb} inited
  3185. 2026-05-09 17:38:48.321 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-3,flowDB} inited
  3186. 2026-05-09 17:38:48.321 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [udb] success
  3187. 2026-05-09 17:38:48.321 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [flowDB] success
  3188. 2026-05-09 17:38:48.321 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
  3189. 2026-05-09 17:38:48.321 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [3] datasource,primary datasource named [master]
  3190. 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]
  3191. 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]
  3192. 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".
  3193. 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.
  3194. 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".
  3195. 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.
  3196. 2026-05-09 17:39:00.442 [main] INFO org.redisson.Version - Redisson 3.23.2
  3197. 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
  3198. 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
  3199. 2026-05-09 17:39:20.790 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
  3200. 2026-05-09 17:39:31.939 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 19 endpoint(s) beneath base path '/actuator'
  3201. 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)]
  3202. 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]
  3203. 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]
  3204. 2026-05-09 17:39:36.580 [main] INFO o.s.s.c.ThreadPoolTaskScheduler - Initializing ExecutorService 'taskScheduler'
  3205. 2026-05-09 17:39:38.151 [main] INFO o.s.b.a.s.s.UserDetailsServiceAutoConfiguration -
  3206. Using generated security password: 98487601-840c-4433-abef-2fbb1d72a18e
  3207. 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]
  3208. 2026-05-09 17:39:41.405 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
  3209. 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.
  3210. 2026-05-09 17:39:42.618 [main] INFO s.d.s.w.p.DocumentationPluginsBootstrapper - Documentation plugins bootstrapped
  3211. 2026-05-09 17:39:42.624 [main] INFO s.d.s.w.p.DocumentationPluginsBootstrapper - Found 1 custom documentation plugin(s)
  3212. 2026-05-09 17:39:42.914 [main] INFO s.d.s.w.s.ApiListingReferenceScanner - Scanning for api listing references
  3213. 2026-05-09 17:39:43.267 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_1
  3214. 2026-05-09 17:39:43.276 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_1
  3215. 2026-05-09 17:39:43.278 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_1
  3216. 2026-05-09 17:39:43.281 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_1
  3217. 2026-05-09 17:39:43.290 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_1
  3218. 2026-05-09 17:39:43.292 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_1
  3219. 2026-05-09 17:39:43.339 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: addCustomerUsingPOST_1
  3220. 2026-05-09 17:39:43.341 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: deleteCustomerUsingPOST_1
  3221. 2026-05-09 17:39:43.344 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getBindCustomerUsingGET_1
  3222. 2026-05-09 17:39:43.345 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: selectCustomerUsingGET_1
  3223. 2026-05-09 17:39:43.349 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getBindCustomerAndQfUsingGET_1
  3224. 2026-05-09 17:39:43.350 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerBasicInFoUsingGET_1
  3225. 2026-05-09 17:39:43.352 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerChargeInFoUsingGET_1
  3226. 2026-05-09 17:39:43.354 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerInFoUsingGET_1
  3227. 2026-05-09 17:39:43.356 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerQfInFoUsingGET_1
  3228. 2026-05-09 17:39:43.360 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerReadMeterInFoUsingGET_1
  3229. 2026-05-09 17:39:43.387 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_2
  3230. 2026-05-09 17:39:43.452 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_2
  3231. 2026-05-09 17:39:43.458 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_2
  3232. 2026-05-09 17:39:43.460 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_2
  3233. 2026-05-09 17:39:43.472 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_2
  3234. 2026-05-09 17:39:43.474 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_2
  3235. 2026-05-09 17:39:43.512 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_3
  3236. 2026-05-09 17:39:43.515 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_3
  3237. 2026-05-09 17:39:43.516 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_3
  3238. 2026-05-09 17:39:43.521 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_3
  3239. 2026-05-09 17:39:43.523 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_3
  3240. 2026-05-09 17:39:43.542 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_3
  3241. 2026-05-09 17:39:43.559 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_4
  3242. 2026-05-09 17:39:43.561 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_4
  3243. 2026-05-09 17:39:43.563 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_4
  3244. 2026-05-09 17:39:43.566 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_4
  3245. 2026-05-09 17:39:43.568 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_4
  3246. 2026-05-09 17:39:43.570 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_5
  3247. 2026-05-09 17:39:43.572 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_5
  3248. 2026-05-09 17:39:43.574 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_5
  3249. 2026-05-09 17:39:43.580 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_5
  3250. 2026-05-09 17:39:43.581 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_5
  3251. 2026-05-09 17:39:43.597 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_4
  3252. 2026-05-09 17:39:43.608 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_6
  3253. 2026-05-09 17:39:43.626 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_5
  3254. 2026-05-09 17:39:43.628 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_6
  3255. 2026-05-09 17:39:43.630 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_6
  3256. 2026-05-09 17:39:43.635 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_6
  3257. 2026-05-09 17:39:43.637 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_6
  3258. 2026-05-09 17:39:43.643 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_1
  3259. 2026-05-09 17:39:43.656 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_7
  3260. 2026-05-09 17:39:43.657 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_7
  3261. 2026-05-09 17:39:43.659 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_7
  3262. 2026-05-09 17:39:43.665 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_7
  3263. 2026-05-09 17:39:43.667 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_7
  3264. 2026-05-09 17:39:43.674 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_8
  3265. 2026-05-09 17:39:43.675 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getFffsListUsingGET_1
  3266. 2026-05-09 17:39:43.677 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_8
  3267. 2026-05-09 17:39:43.678 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_9
  3268. 2026-05-09 17:39:43.683 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_8
  3269. 2026-05-09 17:39:43.686 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_8
  3270. 2026-05-09 17:39:43.696 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_2
  3271. 2026-05-09 17:39:43.705 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_9
  3272. 2026-05-09 17:39:43.708 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_10
  3273. 2026-05-09 17:39:43.709 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_11
  3274. 2026-05-09 17:39:43.713 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_9
  3275. 2026-05-09 17:39:43.715 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_9
  3276. 2026-05-09 17:39:43.721 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_10
  3277. 2026-05-09 17:39:43.723 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_12
  3278. 2026-05-09 17:39:43.726 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_13
  3279. 2026-05-09 17:39:43.731 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_10
  3280. 2026-05-09 17:39:43.733 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_10
  3281. 2026-05-09 17:39:43.740 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_11
  3282. 2026-05-09 17:39:43.742 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_14
  3283. 2026-05-09 17:39:43.744 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_15
  3284. 2026-05-09 17:39:43.750 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_11
  3285. 2026-05-09 17:39:43.752 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_11
  3286. 2026-05-09 17:39:43.762 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_12
  3287. 2026-05-09 17:39:43.764 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_16
  3288. 2026-05-09 17:39:43.765 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_8
  3289. 2026-05-09 17:39:43.768 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_12
  3290. 2026-05-09 17:39:43.770 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_12
  3291. 2026-05-09 17:39:43.780 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_13
  3292. 2026-05-09 17:39:43.783 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_17
  3293. 2026-05-09 17:39:43.784 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_9
  3294. 2026-05-09 17:39:43.788 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_13
  3295. 2026-05-09 17:39:43.789 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_13
  3296. 2026-05-09 17:39:43.794 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_14
  3297. 2026-05-09 17:39:43.797 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_18
  3298. 2026-05-09 17:39:43.800 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_19
  3299. 2026-05-09 17:39:43.808 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_14
  3300. 2026-05-09 17:39:43.811 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_14
  3301. 2026-05-09 17:39:43.828 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_15
  3302. 2026-05-09 17:39:43.852 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_6
  3303. 2026-05-09 17:39:43.905 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_15
  3304. 2026-05-09 17:39:43.919 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_3
  3305. 2026-05-09 17:39:43.931 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_16
  3306. 2026-05-09 17:39:43.933 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_20
  3307. 2026-05-09 17:39:43.934 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_10
  3308. 2026-05-09 17:39:43.939 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_16
  3309. 2026-05-09 17:39:43.940 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_15
  3310. 2026-05-09 17:39:43.954 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_17
  3311. 2026-05-09 17:39:43.969 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_7
  3312. 2026-05-09 17:39:43.971 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_21
  3313. 2026-05-09 17:39:43.973 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_11
  3314. 2026-05-09 17:39:43.978 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_17
  3315. 2026-05-09 17:39:43.980 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_16
  3316. 2026-05-09 17:39:44.009 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_8
  3317. 2026-05-09 17:39:44.012 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveBatchUsingPOST_1
  3318. 2026-05-09 17:39:44.252 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_18
  3319. 2026-05-09 17:39:44.262 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_22
  3320. 2026-05-09 17:39:44.263 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_12
  3321. 2026-05-09 17:39:44.267 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_18
  3322. 2026-05-09 17:39:44.269 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_17
  3323. 2026-05-09 17:39:44.273 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_19
  3324. 2026-05-09 17:39:44.288 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_23
  3325. 2026-05-09 17:39:44.289 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_13
  3326. 2026-05-09 17:39:44.294 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_19
  3327. 2026-05-09 17:39:44.297 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_18
  3328. 2026-05-09 17:39:44.299 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_20
  3329. 2026-05-09 17:39:44.303 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_24
  3330. 2026-05-09 17:39:44.309 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_20
  3331. 2026-05-09 17:39:44.311 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_19
  3332. 2026-05-09 17:39:44.326 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_21
  3333. 2026-05-09 17:39:44.330 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_25
  3334. 2026-05-09 17:39:44.332 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_14
  3335. 2026-05-09 17:39:44.338 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_21
  3336. 2026-05-09 17:39:44.380 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: Xh_WordToPdfUsingPOST_1
  3337. 2026-05-09 17:39:44.387 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_22
  3338. 2026-05-09 17:39:44.399 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_26
  3339. 2026-05-09 17:39:44.401 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_15
  3340. 2026-05-09 17:39:44.410 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_22
  3341. 2026-05-09 17:39:44.414 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_27
  3342. 2026-05-09 17:39:44.415 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_16
  3343. 2026-05-09 17:39:44.421 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_23
  3344. 2026-05-09 17:39:44.424 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_20
  3345. 2026-05-09 17:39:44.456 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_23
  3346. 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
  3347. 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
  3348. 2026-05-09 17:39:44.657 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportYsqdUsingGET_1
  3349. 2026-05-09 17:39:44.770 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_24
  3350. 2026-05-09 17:39:44.773 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_28
  3351. 2026-05-09 17:39:44.774 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_17
  3352. 2026-05-09 17:39:44.819 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_25
  3353. 2026-05-09 17:39:44.820 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_29
  3354. 2026-05-09 17:39:44.822 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_18
  3355. 2026-05-09 17:39:44.827 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_24
  3356. 2026-05-09 17:39:44.829 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_21
  3357. 2026-05-09 17:39:44.857 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_26
  3358. 2026-05-09 17:39:44.873 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_30
  3359. 2026-05-09 17:39:44.874 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_19
  3360. 2026-05-09 17:39:44.879 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_25
  3361. 2026-05-09 17:39:44.881 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_22
  3362. 2026-05-09 17:39:44.884 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_27
  3363. 2026-05-09 17:39:44.894 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_31
  3364. 2026-05-09 17:39:44.896 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_20
  3365. 2026-05-09 17:39:44.899 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_26
  3366. 2026-05-09 17:39:44.901 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_23
  3367. 2026-05-09 17:39:44.919 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_28
  3368. 2026-05-09 17:39:44.929 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_32
  3369. 2026-05-09 17:39:44.930 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_21
  3370. 2026-05-09 17:39:44.937 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_27
  3371. 2026-05-09 17:39:44.940 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_24
  3372. 2026-05-09 17:39:44.960 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxBtsqPageUsingGET_1
  3373. 2026-05-09 17:39:44.963 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_29
  3374. 2026-05-09 17:39:44.973 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_33
  3375. 2026-05-09 17:39:44.975 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_22
  3376. 2026-05-09 17:39:44.982 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_28
  3377. 2026-05-09 17:39:44.984 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_25
  3378. 2026-05-09 17:39:44.991 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxBzsqPageUsingGET_1
  3379. 2026-05-09 17:39:45.004 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_30
  3380. 2026-05-09 17:39:45.015 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_34
  3381. 2026-05-09 17:39:45.017 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_23
  3382. 2026-05-09 17:39:45.025 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_29
  3383. 2026-05-09 17:39:45.027 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_26
  3384. 2026-05-09 17:39:45.040 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxDbsqPageUsingGET_1
  3385. 2026-05-09 17:39:45.043 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPOST_1
  3386. 2026-05-09 17:39:45.045 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_31
  3387. 2026-05-09 17:39:45.055 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_35
  3388. 2026-05-09 17:39:45.056 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_24
  3389. 2026-05-09 17:39:45.060 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_30
  3390. 2026-05-09 17:39:45.062 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_27
  3391. 2026-05-09 17:39:45.064 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_32
  3392. 2026-05-09 17:39:45.069 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_36
  3393. 2026-05-09 17:39:45.071 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_25
  3394. 2026-05-09 17:39:45.081 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_31
  3395. 2026-05-09 17:39:45.083 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_28
  3396. 2026-05-09 17:39:45.087 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_33
  3397. 2026-05-09 17:39:45.089 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_37
  3398. 2026-05-09 17:39:45.090 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_26
  3399. 2026-05-09 17:39:45.098 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_32
  3400. 2026-05-09 17:39:45.100 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_29
  3401. 2026-05-09 17:39:45.120 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_34
  3402. 2026-05-09 17:39:45.125 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_38
  3403. 2026-05-09 17:39:45.128 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_39
  3404. 2026-05-09 17:39:45.133 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_33
  3405. 2026-05-09 17:39:45.135 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_30
  3406. 2026-05-09 17:39:45.138 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_35
  3407. 2026-05-09 17:39:45.150 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_40
  3408. 2026-05-09 17:39:45.152 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_27
  3409. 2026-05-09 17:39:45.160 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_34
  3410. 2026-05-09 17:39:45.162 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_31
  3411. 2026-05-09 17:39:45.177 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxHfsqPageUsingGET_1
  3412. 2026-05-09 17:39:45.181 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_36
  3413. 2026-05-09 17:39:45.192 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_41
  3414. 2026-05-09 17:39:45.193 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_28
  3415. 2026-05-09 17:39:45.199 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_35
  3416. 2026-05-09 17:39:45.201 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_32
  3417. 2026-05-09 17:39:45.219 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxLwsqPageUsingGET_1
  3418. 2026-05-09 17:39:45.223 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_37
  3419. 2026-05-09 17:39:45.234 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_42
  3420. 2026-05-09 17:39:45.238 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_29
  3421. 2026-05-09 17:39:45.246 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_36
  3422. 2026-05-09 17:39:45.248 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_33
  3423. 2026-05-09 17:39:45.263 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxLxdhsqPageUsingGET_1
  3424. 2026-05-09 17:39:45.267 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_38
  3425. 2026-05-09 17:39:45.279 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_43
  3426. 2026-05-09 17:39:45.281 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_30
  3427. 2026-05-09 17:39:45.292 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_37
  3428. 2026-05-09 17:39:45.295 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_34
  3429. 2026-05-09 17:39:45.317 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_39
  3430. 2026-05-09 17:39:45.329 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_44
  3431. 2026-05-09 17:39:45.332 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_31
  3432. 2026-05-09 17:39:45.341 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_38
  3433. 2026-05-09 17:39:45.345 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_35
  3434. 2026-05-09 17:39:45.361 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxDbsqPageUsingGET_2
  3435. 2026-05-09 17:39:45.377 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_1
  3436. 2026-05-09 17:39:45.381 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_40
  3437. 2026-05-09 17:39:45.386 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_45
  3438. 2026-05-09 17:39:45.388 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_32
  3439. 2026-05-09 17:39:45.397 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_39
  3440. 2026-05-09 17:39:45.411 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_36
  3441. 2026-05-09 17:39:45.414 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_41
  3442. 2026-05-09 17:39:45.418 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_46
  3443. 2026-05-09 17:39:45.420 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_33
  3444. 2026-05-09 17:39:45.426 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_40
  3445. 2026-05-09 17:39:45.428 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_37
  3446. 2026-05-09 17:39:45.431 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_42
  3447. 2026-05-09 17:39:45.435 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_47
  3448. 2026-05-09 17:39:45.437 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_34
  3449. 2026-05-09 17:39:45.444 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_41
  3450. 2026-05-09 17:39:45.446 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_38
  3451. 2026-05-09 17:39:45.449 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_43
  3452. 2026-05-09 17:39:45.453 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_48
  3453. 2026-05-09 17:39:45.455 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_49
  3454. 2026-05-09 17:39:45.460 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_42
  3455. 2026-05-09 17:39:45.462 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_39
  3456. 2026-05-09 17:39:45.466 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_44
  3457. 2026-05-09 17:39:45.470 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_50
  3458. 2026-05-09 17:39:45.471 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_51
  3459. 2026-05-09 17:39:45.476 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_43
  3460. 2026-05-09 17:39:45.478 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_40
  3461. 2026-05-09 17:39:45.481 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_45
  3462. 2026-05-09 17:39:45.492 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_52
  3463. 2026-05-09 17:39:45.494 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_35
  3464. 2026-05-09 17:39:45.500 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_44
  3465. 2026-05-09 17:39:45.502 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_41
  3466. 2026-05-09 17:39:45.514 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxWzjbsqPageUsingGET_1
  3467. 2026-05-09 17:39:45.518 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_46
  3468. 2026-05-09 17:39:45.529 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_53
  3469. 2026-05-09 17:39:45.531 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_36
  3470. 2026-05-09 17:39:45.538 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_45
  3471. 2026-05-09 17:39:45.541 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_42
  3472. 2026-05-09 17:39:45.555 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxXbsqPageUsingGET_1
  3473. 2026-05-09 17:39:45.560 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_47
  3474. 2026-05-09 17:39:45.573 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_54
  3475. 2026-05-09 17:39:45.575 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_37
  3476. 2026-05-09 17:39:45.583 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_46
  3477. 2026-05-09 17:39:45.586 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_43
  3478. 2026-05-09 17:39:45.600 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxXhsqPageUsingGET_1
  3479. 2026-05-09 17:39:45.603 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPOST_2
  3480. 2026-05-09 17:39:45.606 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_48
  3481. 2026-05-09 17:39:45.611 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_55
  3482. 2026-05-09 17:39:45.615 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_38
  3483. 2026-05-09 17:39:45.621 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_47
  3484. 2026-05-09 17:39:45.624 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_44
  3485. 2026-05-09 17:39:45.627 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_49
  3486. 2026-05-09 17:39:45.637 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_56
  3487. 2026-05-09 17:39:45.639 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_39
  3488. 2026-05-09 17:39:45.642 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_48
  3489. 2026-05-09 17:39:45.645 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_45
  3490. 2026-05-09 17:39:45.660 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_9
  3491. 2026-05-09 17:39:45.663 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_57
  3492. 2026-05-09 17:39:45.667 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_40
  3493. 2026-05-09 17:39:45.675 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_49
  3494. 2026-05-09 17:39:45.681 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_58
  3495. 2026-05-09 17:39:45.685 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_41
  3496. 2026-05-09 17:39:45.691 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_50
  3497. 2026-05-09 17:39:45.707 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_10
  3498. 2026-05-09 17:39:45.712 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_50
  3499. 2026-05-09 17:39:45.724 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_59
  3500. 2026-05-09 17:39:45.726 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_42
  3501. 2026-05-09 17:39:45.734 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_51
  3502. 2026-05-09 17:39:45.743 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_46
  3503. 2026-05-09 17:39:45.745 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_2
  3504. 2026-05-09 17:39:45.788 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_52
  3505. 2026-05-09 17:39:45.805 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_51
  3506. 2026-05-09 17:39:45.822 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_11
  3507. 2026-05-09 17:39:45.842 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_1
  3508. 2026-05-09 17:39:45.866 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_52
  3509. 2026-05-09 17:39:45.868 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_43
  3510. 2026-05-09 17:39:45.914 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_53
  3511. 2026-05-09 17:39:45.926 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_60
  3512. 2026-05-09 17:39:45.928 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_44
  3513. 2026-05-09 17:39:45.933 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_53
  3514. 2026-05-09 17:39:45.936 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_47
  3515. 2026-05-09 17:39:45.941 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_54
  3516. 2026-05-09 17:39:45.946 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_61
  3517. 2026-05-09 17:39:45.948 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_45
  3518. 2026-05-09 17:39:45.959 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_54
  3519. 2026-05-09 17:39:45.974 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_48
  3520. 2026-05-09 17:39:45.977 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_3
  3521. 2026-05-09 17:39:45.981 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_62
  3522. 2026-05-09 17:39:45.984 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_46
  3523. 2026-05-09 17:39:45.991 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_55
  3524. 2026-05-09 17:39:46.004 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_12
  3525. 2026-05-09 17:39:46.016 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_63
  3526. 2026-05-09 17:39:46.019 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_47
  3527. 2026-05-09 17:39:46.026 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_56
  3528. 2026-05-09 17:39:46.040 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_13
  3529. 2026-05-09 17:39:46.046 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_55
  3530. 2026-05-09 17:39:46.054 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_64
  3531. 2026-05-09 17:39:46.056 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_48
  3532. 2026-05-09 17:39:46.072 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_57
  3533. 2026-05-09 17:39:46.085 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_49
  3534. 2026-05-09 17:39:46.087 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_4
  3535. 2026-05-09 17:39:46.138 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getDaCustomerPageUsingGET_1
  3536. 2026-05-09 17:39:46.236 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_1
  3537. 2026-05-09 17:39:46.265 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_14
  3538. 2026-05-09 17:39:46.314 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_56
  3539. 2026-05-09 17:39:46.396 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: delByIdUsingDELETE_1
  3540. 2026-05-09 17:39:46.398 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: delByIdsUsingDELETE_1
  3541. 2026-05-09 17:39:46.400 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: disableUsingPUT_1
  3542. 2026-05-09 17:39:46.402 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: enableUsingPUT_1
  3543. 2026-05-09 17:39:46.406 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: importExcelUsingPOST_1
  3544. 2026-05-09 17:39:46.411 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_2
  3545. 2026-05-09 17:39:46.424 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_3
  3546. 2026-05-09 17:39:46.452 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_5
  3547. 2026-05-09 17:39:46.455 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_6
  3548. 2026-05-09 17:39:46.458 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_7
  3549. 2026-05-09 17:39:46.462 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_57
  3550. 2026-05-09 17:39:46.480 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_49
  3551. 2026-05-09 17:39:46.520 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: addUsingPOST_1
  3552. 2026-05-09 17:39:46.529 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_58
  3553. 2026-05-09 17:39:46.539 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_65
  3554. 2026-05-09 17:39:46.541 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_50
  3555. 2026-05-09 17:39:46.545 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_58
  3556. 2026-05-09 17:39:46.552 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: save_gdUsingPOST_1
  3557. 2026-05-09 17:39:46.568 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_50
  3558. 2026-05-09 17:39:46.590 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_59
  3559. 2026-05-09 17:39:46.598 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_66
  3560. 2026-05-09 17:39:46.600 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_51
  3561. 2026-05-09 17:39:46.605 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_59
  3562. 2026-05-09 17:39:46.608 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_51
  3563. 2026-05-09 17:39:46.612 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_60
  3564. 2026-05-09 17:39:46.617 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_67
  3565. 2026-05-09 17:39:46.619 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_52
  3566. 2026-05-09 17:39:46.627 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_60
  3567. 2026-05-09 17:39:46.631 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: save_gdUsingPOST_2
  3568. 2026-05-09 17:39:46.638 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_52
  3569. 2026-05-09 17:39:46.640 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_8
  3570. 2026-05-09 17:39:46.658 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_9
  3571. 2026-05-09 17:39:46.680 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_61
  3572. 2026-05-09 17:39:46.762 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_2
  3573. 2026-05-09 17:39:46.769 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_62
  3574. 2026-05-09 17:39:46.776 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_15
  3575. 2026-05-09 17:39:46.834 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_4
  3576. 2026-05-09 17:39:46.845 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_10
  3577. 2026-05-09 17:39:46.857 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_63
  3578. 2026-05-09 17:39:46.872 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_68
  3579. 2026-05-09 17:39:46.874 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_53
  3580. 2026-05-09 17:39:46.890 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_61
  3581. 2026-05-09 17:39:46.894 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_53
  3582. 2026-05-09 17:39:46.996 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_54
  3583. 2026-05-09 17:39:47.176 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_16
  3584. 2026-05-09 17:39:47.273 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getListUsingGET_1
  3585. 2026-05-09 17:39:47.389 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_64
  3586. 2026-05-09 17:39:47.472 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: statUsingGET_1
  3587. 2026-05-09 17:39:47.537 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_11
  3588. 2026-05-09 17:39:47.545 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_65
  3589. 2026-05-09 17:39:47.562 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_69
  3590. 2026-05-09 17:39:47.564 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_54
  3591. 2026-05-09 17:39:47.655 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_62
  3592. 2026-05-09 17:39:47.659 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_55
  3593. 2026-05-09 17:39:47.665 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_66
  3594. 2026-05-09 17:39:47.678 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_63
  3595. 2026-05-09 17:39:47.682 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_56
  3596. 2026-05-09 17:39:47.702 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_12
  3597. 2026-05-09 17:39:47.755 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_64
  3598. 2026-05-09 17:39:47.801 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_17
  3599. 2026-05-09 17:39:47.837 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: monthlyStatUsingGET_1
  3600. 2026-05-09 17:39:47.841 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: monthlyStatSummaryUsingGET_1
  3601. 2026-05-09 17:39:47.848 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getListUsingGET_2
  3602. 2026-05-09 17:39:47.978 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_67
  3603. 2026-05-09 17:39:48.032 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageListUsingGET_1
  3604. 2026-05-09 17:39:48.036 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: statUsingGET_2
  3605. 2026-05-09 17:39:48.095 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_13
  3606. 2026-05-09 17:39:48.098 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_14
  3607. 2026-05-09 17:39:48.153 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_65
  3608. 2026-05-09 17:39:48.164 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_68
  3609. 2026-05-09 17:39:48.234 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getYyWyjtzPageUsingGET_1
  3610. 2026-05-09 17:39:48.236 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_15
  3611. 2026-05-09 17:39:48.243 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_5
  3612. 2026-05-09 17:39:48.255 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_18
  3613. 2026-05-09 17:39:48.257 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_16
  3614. 2026-05-09 17:39:48.282 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_19
  3615. 2026-05-09 17:39:48.284 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_17
  3616. 2026-05-09 17:39:48.368 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_20
  3617. 2026-05-09 17:39:48.370 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_18
  3618. 2026-05-09 17:39:48.375 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_69
  3619. 2026-05-09 17:39:48.388 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_70
  3620. 2026-05-09 17:39:48.390 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_55
  3621. 2026-05-09 17:39:48.402 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_66
  3622. 2026-05-09 17:39:48.407 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_57
  3623. 2026-05-09 17:39:48.411 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_70
  3624. 2026-05-09 17:39:48.414 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_71
  3625. 2026-05-09 17:39:48.417 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_56
  3626. 2026-05-09 17:39:48.429 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_67
  3627. 2026-05-09 17:39:48.433 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_58
  3628. 2026-05-09 17:39:48.437 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_21
  3629. 2026-05-09 17:39:48.441 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_3
  3630. 2026-05-09 17:39:48.452 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_68
  3631. 2026-05-09 17:39:48.478 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_22
  3632. 2026-05-09 17:39:48.545 [main] INFO io.undertow - starting server: Undertow - 2.0.31.Final
  3633. 2026-05-09 17:39:48.560 [main] INFO org.xnio - XNIO version 3.3.8.Final
  3634. 2026-05-09 17:39:48.579 [main] INFO org.xnio.nio - XNIO NIO Implementation Version 3.3.8.Final
  3635. 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 ''
  3636. 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
  3637. 2026-05-09 17:39:50.309 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
  3638. 2026-05-09 17:39:50.312 [main] INFO com.tofly.feesapi.FeesApiApplication - Started FeesApiApplication in 81.242 seconds (JVM running for 88.424)
  3639. 2026-05-09 17:39:53.043 [RMI TCP Connection(17)-192.168.1.105] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  3640. 2026-05-09 17:39:53.043 [RMI TCP Connection(17)-192.168.1.105] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  3641. 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
  3642. 2026-05-09 17:39:54.102 [XNIO-1 task-1] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/api/sfgl/yyqfmx/getpagelist/getPageList】请求开始==================
  3643. 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 = ?)
  3644. 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)
  3645. 2026-05-09 17:40:09.953 [XNIO-1 task-1] DEBUG c.t.f.s.m.Y.getPageList_mpCount - <== Total: 1
  3646. 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 > ?
  3647. 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)
  3648. 2026-05-09 17:40:11.219 [XNIO-1 task-1] DEBUG c.t.f.s.m.YyQfmxMapper.getPageList - <== Total: 20
  3649. 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=?)
  3650. 2026-05-09 17:41:34.969 [XNIO-1 task-1] DEBUG c.t.f.s.m.YyQfmxMapper.getPageCount - ==> Parameters: 70030001(String), 10753(String)
  3651. 2026-05-09 17:41:35.015 [XNIO-1 task-1] DEBUG c.t.f.s.m.YyQfmxMapper.getPageCount - <== Total: 1
  3652. 2026-05-09 17:41:35.022 [XNIO-1 task-1] INFO c.t.feesapi.common.LogRecordAspect - =================【getPageList】请求结束==================
  3653. 2026-05-09 17:41:37.544 [XNIO-1 task-2] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/api/sfgl/yyqfmx/getpagelist/getPageList】请求开始==================
  3654. 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 = ?)
  3655. 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)
  3656. 2026-05-09 17:41:43.776 [XNIO-1 task-2] DEBUG c.t.f.s.m.Y.getPageList_mpCount - <== Total: 1
  3657. 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 > ?
  3658. 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)
  3659. 2026-05-09 17:41:45.398 [XNIO-1 task-2] DEBUG c.t.f.s.m.YyQfmxMapper.getPageList - <== Total: 20
  3660. 2026-05-09 17:43:32.931 [SpringContextShutdownHook] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'taskScheduler'
  3661. 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=?)
  3662. 2026-05-09 17:43:32.945 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registering from Nacos Server now...
  3663. 2026-05-09 17:43:32.945 [XNIO-1 task-2] DEBUG c.t.f.s.m.YyQfmxMapper.getPageCount - ==> Parameters: 70030001(String), 10753(String)
  3664. 2026-05-09 17:43:32.948 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registration finished.
  3665. 2026-05-09 17:43:32.950 [SpringContextShutdownHook] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'taskScheduler'
  3666. 2026-05-09 17:43:33.047 [XNIO-1 task-2] DEBUG c.t.f.s.m.YyQfmxMapper.getPageCount - <== Total: 1
  3667. 2026-05-09 17:43:33.048 [XNIO-1 task-2] INFO c.t.feesapi.common.LogRecordAspect - =================【getPageList】请求结束==================
  3668. 2026-05-09 17:43:33.088 [SpringContextShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
  3669. 2026-05-09 17:43:33.098 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-2} closing ...
  3670. 2026-05-09 17:43:33.171 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-2} closed
  3671. 2026-05-09 17:43:33.171 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-3} closing ...
  3672. 2026-05-09 17:43:33.305 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-3} closed
  3673. 2026-05-09 17:43:33.305 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closing ...
  3674. 2026-05-09 17:43:33.877 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closed
  3675. 2026-05-09 17:43:33.877 [SpringContextShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
  3676. 2026-05-09 17:43:33.884 [SpringContextShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  3677. 2026-05-09 17:43:33.887 [SpringContextShutdownHook] INFO io.undertow - stopping server: Undertow - 2.0.31.Final