collect-fees-api.2026-04-15.0.log 371 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445
  1. 2026-04-15 19:06:26.972 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.0.20.Final
  2. 2026-04-15 19:06:27.547 [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-04-15 19:06:28.154 [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]
  4. 2026-04-15 19:06:28.166 [main] WARN c.a.c.n.c.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[collect-fees-api-gs.yaml] & group[DEFAULT_GROUP]
  5. 2026-04-15 19:06:28.167 [main] INFO o.s.c.b.c.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-collect-fees-api-gs.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-collect-fees-api.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-collect-fees-api,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'}]
  6. 2026-04-15 19:06:28.172 [main] INFO com.tofly.feesapi.FeesApiApplication - The following profiles are active: gs
  7. 2026-04-15 19:06:30.268 [main] WARN o.s.boot.actuate.endpoint.EndpointId - Endpoint ID 'nacos-config' contains invalid characters, please migrate to a valid format.
  8. 2026-04-15 19:06:30.273 [main] WARN o.s.boot.actuate.endpoint.EndpointId - Endpoint ID 'nacos-discovery' contains invalid characters, please migrate to a valid format.
  9. 2026-04-15 19:06:30.558 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode!
  10. 2026-04-15 19:06:30.561 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  11. 2026-04-15 19:06:30.840 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 205ms. Found 0 Redis repository interfaces.
  12. 2026-04-15 19:06:30.922 [main] WARN o.s.boot.actuate.endpoint.EndpointId - Endpoint ID 'service-registry' contains invalid characters, please migrate to a valid format.
  13. 2026-04-15 19:06:31.024 [main] DEBUG org.apache.ibatis.logging.LogFactory - Logging initialized using 'class org.apache.ibatis.logging.slf4j.Slf4jImpl' adapter.
  14. 2026-04-15 19:06:31.185 [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!
  15. 2026-04-15 19:06:31.185 [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!
  16. 2026-04-15 19:06:31.185 [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!
  17. 2026-04-15 19:06:31.185 [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!
  18. 2026-04-15 19:06:31.185 [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!
  19. 2026-04-15 19:06:31.185 [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!
  20. 2026-04-15 19:06:31.185 [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!
  21. 2026-04-15 19:06:31.186 [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!
  22. 2026-04-15 19:06:31.186 [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!
  23. 2026-04-15 19:06:31.186 [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!
  24. 2026-04-15 19:06:31.186 [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!
  25. 2026-04-15 19:06:31.186 [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!
  26. 2026-04-15 19:06:31.186 [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!
  27. 2026-04-15 19:06:31.186 [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!
  28. 2026-04-15 19:06:31.186 [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!
  29. 2026-04-15 19:06:31.186 [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!
  30. 2026-04-15 19:06:31.186 [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!
  31. 2026-04-15 19:06:31.186 [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!
  32. 2026-04-15 19:06:31.186 [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!
  33. 2026-04-15 19:06:31.186 [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!
  34. 2026-04-15 19:06:31.186 [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!
  35. 2026-04-15 19:06:31.186 [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!
  36. 2026-04-15 19:06:31.186 [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!
  37. 2026-04-15 19:06:31.186 [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!
  38. 2026-04-15 19:06:31.186 [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!
  39. 2026-04-15 19:06:31.186 [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!
  40. 2026-04-15 19:06:31.186 [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!
  41. 2026-04-15 19:06:31.186 [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!
  42. 2026-04-15 19:06:31.186 [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!
  43. 2026-04-15 19:06:31.186 [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!
  44. 2026-04-15 19:06:31.186 [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!
  45. 2026-04-15 19:06:31.186 [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!
  46. 2026-04-15 19:06:31.186 [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!
  47. 2026-04-15 19:06:31.187 [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!
  48. 2026-04-15 19:06:31.187 [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!
  49. 2026-04-15 19:06:31.187 [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!
  50. 2026-04-15 19:06:31.187 [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!
  51. 2026-04-15 19:06:31.187 [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!
  52. 2026-04-15 19:06:31.187 [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!
  53. 2026-04-15 19:06:31.187 [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!
  54. 2026-04-15 19:06:31.187 [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!
  55. 2026-04-15 19:06:31.187 [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!
  56. 2026-04-15 19:06:31.187 [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!
  57. 2026-04-15 19:06:31.187 [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!
  58. 2026-04-15 19:06:31.187 [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!
  59. 2026-04-15 19:06:31.187 [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!
  60. 2026-04-15 19:06:31.187 [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!
  61. 2026-04-15 19:06:31.187 [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!
  62. 2026-04-15 19:06:31.187 [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!
  63. 2026-04-15 19:06:31.187 [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!
  64. 2026-04-15 19:06:31.187 [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!
  65. 2026-04-15 19:06:31.187 [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!
  66. 2026-04-15 19:06:31.187 [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!
  67. 2026-04-15 19:06:31.187 [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!
  68. 2026-04-15 19:06:31.187 [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!
  69. 2026-04-15 19:06:31.187 [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!
  70. 2026-04-15 19:06:31.187 [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!
  71. 2026-04-15 19:06:31.187 [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!
  72. 2026-04-15 19:06:31.187 [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!
  73. 2026-04-15 19:06:31.187 [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!
  74. 2026-04-15 19:06:31.187 [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!
  75. 2026-04-15 19:06:31.187 [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!
  76. 2026-04-15 19:06:31.187 [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!
  77. 2026-04-15 19:06:31.187 [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!
  78. 2026-04-15 19:06:31.187 [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!
  79. 2026-04-15 19:06:31.187 [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!
  80. 2026-04-15 19:06:31.187 [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!
  81. 2026-04-15 19:06:31.187 [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!
  82. 2026-04-15 19:06:31.187 [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!
  83. 2026-04-15 19:06:31.187 [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!
  84. 2026-04-15 19:06:31.187 [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!
  85. 2026-04-15 19:06:31.187 [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!
  86. 2026-04-15 19:06:31.187 [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!
  87. 2026-04-15 19:06:31.187 [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!
  88. 2026-04-15 19:06:31.187 [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!
  89. 2026-04-15 19:06:31.187 [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!
  90. 2026-04-15 19:06:31.187 [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!
  91. 2026-04-15 19:06:31.188 [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!
  92. 2026-04-15 19:06:31.188 [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!
  93. 2026-04-15 19:06:31.188 [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!
  94. 2026-04-15 19:06:31.188 [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!
  95. 2026-04-15 19:06:31.188 [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!
  96. 2026-04-15 19:06:31.188 [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!
  97. 2026-04-15 19:06:31.188 [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!
  98. 2026-04-15 19:06:31.188 [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!
  99. 2026-04-15 19:06:31.188 [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!
  100. 2026-04-15 19:06:31.188 [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!
  101. 2026-04-15 19:06:31.188 [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!
  102. 2026-04-15 19:06:31.188 [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!
  103. 2026-04-15 19:06:31.188 [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!
  104. 2026-04-15 19:06:31.188 [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!
  105. 2026-04-15 19:06:31.188 [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!
  106. 2026-04-15 19:06:31.188 [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!
  107. 2026-04-15 19:06:31.188 [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!
  108. 2026-04-15 19:06:31.188 [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!
  109. 2026-04-15 19:06:31.188 [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!
  110. 2026-04-15 19:06:31.188 [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!
  111. 2026-04-15 19:06:31.188 [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!
  112. 2026-04-15 19:06:31.188 [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!
  113. 2026-04-15 19:06:31.188 [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!
  114. 2026-04-15 19:06:31.188 [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!
  115. 2026-04-15 19:06:31.188 [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!
  116. 2026-04-15 19:06:31.188 [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!
  117. 2026-04-15 19:06:31.188 [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!
  118. 2026-04-15 19:06:31.188 [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!
  119. 2026-04-15 19:06:31.189 [main] WARN o.m.s.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.tofly.feesapi.**.mapper]' package. Please check your configuration.
  120. 2026-04-15 19:06:31.295 [main] INFO o.s.cloud.context.scope.GenericScope - BeanFactory id=b96e5894-f128-35d3-aafc-41fccadba59b
  121. 2026-04-15 19:06:31.348 [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)
  122. 2026-04-15 19:06:31.679 [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)
  123. 2026-04-15 19:06:31.693 [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$$a82b0449] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  124. 2026-04-15 19:06:31.711 [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)
  125. 2026-04-15 19:06:31.749 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@6b2aafbc' 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)
  126. 2026-04-15 19:06:31.757 [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)
  127. 2026-04-15 19:06:32.085 [main] WARN io.undertow.websockets.jsr - UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
  128. 2026-04-15 19:06:32.116 [main] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  129. 2026-04-15 19:06:32.116 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3924 ms
  130. 2026-04-15 19:06:36.042 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1,master} inited
  131. 2026-04-15 19:06:41.854 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-2,udb} inited
  132. 2026-04-15 19:06:47.821 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-3,flowDB} inited
  133. 2026-04-15 19:06:47.822 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [udb] success
  134. 2026-04-15 19:06:47.822 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [flowDB] success
  135. 2026-04-15 19:06:47.822 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
  136. 2026-04-15 19:06:47.823 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [3] datasource,primary datasource named [master]
  137. 2026-04-15 19:06:49.925 [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]
  138. 2026-04-15 19:06:50.410 [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]
  139. 2026-04-15 19:06:51.440 [main] WARN c.b.m.core.metadata.TableInfoHelper - Can not find table primary key in Class: "com.tofly.feesapi.wxgl.wechatpay.entity.PaySelect".
  140. 2026-04-15 19:06:51.440 [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.
  141. 2026-04-15 19:06:51.452 [main] WARN c.b.m.core.metadata.TableInfoHelper - Can not find table primary key in Class: "com.tofly.feesapi.xtgl.entity.SysGdcsb".
  142. 2026-04-15 19:06:51.452 [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.
  143. 2026-04-15 19:06:56.568 [main] INFO org.redisson.Version - Redisson 3.23.2
  144. 2026-04-15 19:06:57.683 [redisson-netty-2-4] INFO o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 127.0.0.1/127.0.0.1:6379
  145. 2026-04-15 19:06:57.742 [redisson-netty-2-19] INFO o.r.c.pool.MasterConnectionPool - 24 connections initialized for 127.0.0.1/127.0.0.1:6379
  146. 2026-04-15 19:07:19.980 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 19 endpoint(s) beneath base path '/actuator'
  147. 2026-04-15 19:07:20.110 [main] INFO s.d.s.w.WebMvcPropertySourcedRequestMappingHandlerMapping - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  148. 2026-04-15 19:07:20.377 [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]
  149. 2026-04-15 19:07:20.394 [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]
  150. 2026-04-15 19:07:20.751 [main] INFO o.s.s.c.ThreadPoolTaskScheduler - Initializing ExecutorService 'taskScheduler'
  151. 2026-04-15 19:07:21.033 [main] INFO o.s.b.a.s.s.UserDetailsServiceAutoConfiguration -
  152. Using generated security password: 22cb8af2-9de7-444b-b9b2-29c52b4ca3a0
  153. 2026-04-15 19:07:21.228 [main] INFO o.s.s.web.DefaultSecurityFilterChain - Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@584f12eb, org.springframework.security.web.context.SecurityContextPersistenceFilter@625439ba, org.springframework.security.web.header.HeaderWriterFilter@33684b87, org.springframework.security.web.authentication.logout.LogoutFilter@66abb7d4, org.springframework.security.oauth2.provider.authentication.OAuth2AuthenticationProcessingFilter@13b666b4, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@2416378c, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@4734a551, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@6eda3ade, org.springframework.security.web.session.SessionManagementFilter@b09df69, org.springframework.security.web.access.ExceptionTranslationFilter@304d6881, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@52f1f54]
  154. 2026-04-15 19:07:21.960 [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.
  155. 2026-04-15 19:07:22.154 [main] INFO s.d.s.w.p.DocumentationPluginsBootstrapper - Documentation plugins bootstrapped
  156. 2026-04-15 19:07:22.164 [main] INFO s.d.s.w.p.DocumentationPluginsBootstrapper - Found 1 custom documentation plugin(s)
  157. 2026-04-15 19:07:22.335 [main] INFO s.d.s.w.s.ApiListingReferenceScanner - Scanning for api listing references
  158. 2026-04-15 19:07:22.772 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_1
  159. 2026-04-15 19:07:22.776 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_1
  160. 2026-04-15 19:07:22.778 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_1
  161. 2026-04-15 19:07:22.780 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_1
  162. 2026-04-15 19:07:22.785 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_1
  163. 2026-04-15 19:07:22.786 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_1
  164. 2026-04-15 19:07:22.809 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: addCustomerUsingPOST_1
  165. 2026-04-15 19:07:22.810 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: deleteCustomerUsingPOST_1
  166. 2026-04-15 19:07:22.811 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getBindCustomerUsingGET_1
  167. 2026-04-15 19:07:22.812 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: selectCustomerUsingGET_1
  168. 2026-04-15 19:07:22.814 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getBindCustomerAndQfUsingGET_1
  169. 2026-04-15 19:07:22.816 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerBasicInFoUsingGET_1
  170. 2026-04-15 19:07:22.816 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerChargeInFoUsingGET_1
  171. 2026-04-15 19:07:22.817 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerInFoUsingGET_1
  172. 2026-04-15 19:07:22.818 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerQfInFoUsingGET_1
  173. 2026-04-15 19:07:22.819 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerReadMeterInFoUsingGET_1
  174. 2026-04-15 19:07:22.831 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_2
  175. 2026-04-15 19:07:22.860 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_2
  176. 2026-04-15 19:07:22.861 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_2
  177. 2026-04-15 19:07:22.862 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_2
  178. 2026-04-15 19:07:22.866 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_2
  179. 2026-04-15 19:07:22.867 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_2
  180. 2026-04-15 19:07:22.884 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_3
  181. 2026-04-15 19:07:22.886 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_3
  182. 2026-04-15 19:07:22.887 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_3
  183. 2026-04-15 19:07:22.889 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_3
  184. 2026-04-15 19:07:22.890 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_3
  185. 2026-04-15 19:07:22.899 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_3
  186. 2026-04-15 19:07:22.906 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_4
  187. 2026-04-15 19:07:22.907 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_4
  188. 2026-04-15 19:07:22.908 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_4
  189. 2026-04-15 19:07:22.909 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_4
  190. 2026-04-15 19:07:22.910 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_4
  191. 2026-04-15 19:07:22.912 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_5
  192. 2026-04-15 19:07:22.914 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_5
  193. 2026-04-15 19:07:22.916 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_5
  194. 2026-04-15 19:07:22.918 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_5
  195. 2026-04-15 19:07:22.920 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_5
  196. 2026-04-15 19:07:22.929 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_4
  197. 2026-04-15 19:07:22.937 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_6
  198. 2026-04-15 19:07:22.942 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_5
  199. 2026-04-15 19:07:22.942 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_6
  200. 2026-04-15 19:07:22.944 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_6
  201. 2026-04-15 19:07:22.947 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_6
  202. 2026-04-15 19:07:22.949 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_6
  203. 2026-04-15 19:07:22.951 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_1
  204. 2026-04-15 19:07:22.957 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_7
  205. 2026-04-15 19:07:22.958 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_7
  206. 2026-04-15 19:07:22.959 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_7
  207. 2026-04-15 19:07:22.961 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_7
  208. 2026-04-15 19:07:22.962 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_7
  209. 2026-04-15 19:07:22.966 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_8
  210. 2026-04-15 19:07:22.967 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getFffsListUsingGET_1
  211. 2026-04-15 19:07:22.969 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_8
  212. 2026-04-15 19:07:22.971 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_9
  213. 2026-04-15 19:07:22.976 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_8
  214. 2026-04-15 19:07:22.977 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_8
  215. 2026-04-15 19:07:22.984 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_2
  216. 2026-04-15 19:07:22.988 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_9
  217. 2026-04-15 19:07:22.989 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_10
  218. 2026-04-15 19:07:22.990 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_11
  219. 2026-04-15 19:07:22.992 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_9
  220. 2026-04-15 19:07:22.993 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_9
  221. 2026-04-15 19:07:22.998 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_10
  222. 2026-04-15 19:07:22.999 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_12
  223. 2026-04-15 19:07:23.000 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_13
  224. 2026-04-15 19:07:23.002 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_10
  225. 2026-04-15 19:07:23.003 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_10
  226. 2026-04-15 19:07:23.008 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_11
  227. 2026-04-15 19:07:23.009 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_14
  228. 2026-04-15 19:07:23.010 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_15
  229. 2026-04-15 19:07:23.013 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_11
  230. 2026-04-15 19:07:23.013 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_11
  231. 2026-04-15 19:07:23.020 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_12
  232. 2026-04-15 19:07:23.020 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_16
  233. 2026-04-15 19:07:23.021 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_8
  234. 2026-04-15 19:07:23.023 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_12
  235. 2026-04-15 19:07:23.024 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_12
  236. 2026-04-15 19:07:23.030 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_13
  237. 2026-04-15 19:07:23.031 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_17
  238. 2026-04-15 19:07:23.032 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_9
  239. 2026-04-15 19:07:23.034 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_13
  240. 2026-04-15 19:07:23.034 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_13
  241. 2026-04-15 19:07:23.037 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_14
  242. 2026-04-15 19:07:23.038 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_18
  243. 2026-04-15 19:07:23.040 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_19
  244. 2026-04-15 19:07:23.042 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_14
  245. 2026-04-15 19:07:23.043 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_14
  246. 2026-04-15 19:07:23.049 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_15
  247. 2026-04-15 19:07:23.061 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_6
  248. 2026-04-15 19:07:23.092 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_15
  249. 2026-04-15 19:07:23.098 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_3
  250. 2026-04-15 19:07:23.105 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_16
  251. 2026-04-15 19:07:23.106 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_20
  252. 2026-04-15 19:07:23.107 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_10
  253. 2026-04-15 19:07:23.109 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_16
  254. 2026-04-15 19:07:23.110 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_15
  255. 2026-04-15 19:07:23.116 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_17
  256. 2026-04-15 19:07:23.121 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_7
  257. 2026-04-15 19:07:23.123 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_21
  258. 2026-04-15 19:07:23.124 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_11
  259. 2026-04-15 19:07:23.128 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_17
  260. 2026-04-15 19:07:23.129 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_16
  261. 2026-04-15 19:07:23.146 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_8
  262. 2026-04-15 19:07:23.148 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveBatchUsingPOST_1
  263. 2026-04-15 19:07:23.288 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_18
  264. 2026-04-15 19:07:23.292 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_22
  265. 2026-04-15 19:07:23.293 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_12
  266. 2026-04-15 19:07:23.296 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_18
  267. 2026-04-15 19:07:23.297 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_17
  268. 2026-04-15 19:07:23.298 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_19
  269. 2026-04-15 19:07:23.301 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_23
  270. 2026-04-15 19:07:23.305 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_19
  271. 2026-04-15 19:07:23.307 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_18
  272. 2026-04-15 19:07:23.315 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_20
  273. 2026-04-15 19:07:23.317 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_24
  274. 2026-04-15 19:07:23.317 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_13
  275. 2026-04-15 19:07:23.320 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_20
  276. 2026-04-15 19:07:23.346 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: Xh_WordToPdfUsingPOST_1
  277. 2026-04-15 19:07:23.350 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_21
  278. 2026-04-15 19:07:23.356 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_25
  279. 2026-04-15 19:07:23.358 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_14
  280. 2026-04-15 19:07:23.363 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_21
  281. 2026-04-15 19:07:23.365 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_26
  282. 2026-04-15 19:07:23.366 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_15
  283. 2026-04-15 19:07:23.368 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_22
  284. 2026-04-15 19:07:23.369 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_19
  285. 2026-04-15 19:07:23.391 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_22
  286. 2026-04-15 19:07:23.535 [main] WARN s.d.s.w.r.p.ParameterTypeReader - @ModelAttribute annotated parameters should have already been expanded via the ExpandedParameterBuilderPlugin
  287. 2026-04-15 19:07:23.535 [main] WARN s.d.s.w.r.p.ParameterTypeReader - @ModelAttribute annotated parameters should have already been expanded via the ExpandedParameterBuilderPlugin
  288. 2026-04-15 19:07:23.543 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportYsqdUsingGET_1
  289. 2026-04-15 19:07:23.618 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_23
  290. 2026-04-15 19:07:23.620 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_27
  291. 2026-04-15 19:07:23.621 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_16
  292. 2026-04-15 19:07:23.650 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_24
  293. 2026-04-15 19:07:23.652 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_28
  294. 2026-04-15 19:07:23.653 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_17
  295. 2026-04-15 19:07:23.656 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_23
  296. 2026-04-15 19:07:23.657 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_20
  297. 2026-04-15 19:07:23.674 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_25
  298. 2026-04-15 19:07:23.681 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_29
  299. 2026-04-15 19:07:23.683 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_18
  300. 2026-04-15 19:07:23.685 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_24
  301. 2026-04-15 19:07:23.686 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_21
  302. 2026-04-15 19:07:23.689 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_26
  303. 2026-04-15 19:07:23.695 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_30
  304. 2026-04-15 19:07:23.696 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_19
  305. 2026-04-15 19:07:23.698 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_25
  306. 2026-04-15 19:07:23.700 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_22
  307. 2026-04-15 19:07:23.714 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_27
  308. 2026-04-15 19:07:23.722 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_31
  309. 2026-04-15 19:07:23.723 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_20
  310. 2026-04-15 19:07:23.728 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_26
  311. 2026-04-15 19:07:23.730 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_23
  312. 2026-04-15 19:07:23.742 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxBtsqPageUsingGET_1
  313. 2026-04-15 19:07:23.745 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_28
  314. 2026-04-15 19:07:23.753 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_32
  315. 2026-04-15 19:07:23.754 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_21
  316. 2026-04-15 19:07:23.759 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_27
  317. 2026-04-15 19:07:23.761 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_24
  318. 2026-04-15 19:07:23.765 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxBzsqPageUsingGET_1
  319. 2026-04-15 19:07:23.776 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_29
  320. 2026-04-15 19:07:23.783 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_33
  321. 2026-04-15 19:07:23.785 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_22
  322. 2026-04-15 19:07:23.790 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_28
  323. 2026-04-15 19:07:23.792 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_25
  324. 2026-04-15 19:07:23.803 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxDbsqPageUsingGET_1
  325. 2026-04-15 19:07:23.806 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPOST_1
  326. 2026-04-15 19:07:23.809 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_30
  327. 2026-04-15 19:07:23.814 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_34
  328. 2026-04-15 19:07:23.816 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_23
  329. 2026-04-15 19:07:23.819 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_29
  330. 2026-04-15 19:07:23.820 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_26
  331. 2026-04-15 19:07:23.822 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_31
  332. 2026-04-15 19:07:23.826 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_35
  333. 2026-04-15 19:07:23.829 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_24
  334. 2026-04-15 19:07:23.834 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_30
  335. 2026-04-15 19:07:23.836 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_27
  336. 2026-04-15 19:07:23.839 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_32
  337. 2026-04-15 19:07:23.841 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_36
  338. 2026-04-15 19:07:23.843 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_25
  339. 2026-04-15 19:07:23.848 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_31
  340. 2026-04-15 19:07:23.850 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_28
  341. 2026-04-15 19:07:23.864 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_33
  342. 2026-04-15 19:07:23.867 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_37
  343. 2026-04-15 19:07:23.868 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_38
  344. 2026-04-15 19:07:23.872 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_32
  345. 2026-04-15 19:07:23.874 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_29
  346. 2026-04-15 19:07:23.876 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_34
  347. 2026-04-15 19:07:23.882 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_39
  348. 2026-04-15 19:07:23.884 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_26
  349. 2026-04-15 19:07:23.888 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_33
  350. 2026-04-15 19:07:23.889 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_30
  351. 2026-04-15 19:07:23.896 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxHfsqPageUsingGET_1
  352. 2026-04-15 19:07:23.898 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_35
  353. 2026-04-15 19:07:23.901 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_40
  354. 2026-04-15 19:07:23.902 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_27
  355. 2026-04-15 19:07:23.905 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_34
  356. 2026-04-15 19:07:23.905 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_31
  357. 2026-04-15 19:07:23.914 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxLwsqPageUsingGET_1
  358. 2026-04-15 19:07:23.917 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_36
  359. 2026-04-15 19:07:23.921 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_41
  360. 2026-04-15 19:07:23.922 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_28
  361. 2026-04-15 19:07:23.928 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_35
  362. 2026-04-15 19:07:23.930 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_32
  363. 2026-04-15 19:07:23.942 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxLxdhsqPageUsingGET_1
  364. 2026-04-15 19:07:23.947 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_37
  365. 2026-04-15 19:07:23.958 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_42
  366. 2026-04-15 19:07:23.960 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_29
  367. 2026-04-15 19:07:23.968 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_36
  368. 2026-04-15 19:07:23.970 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_33
  369. 2026-04-15 19:07:23.983 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_38
  370. 2026-04-15 19:07:23.990 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_43
  371. 2026-04-15 19:07:23.992 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_30
  372. 2026-04-15 19:07:23.996 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_37
  373. 2026-04-15 19:07:23.998 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_34
  374. 2026-04-15 19:07:24.007 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxDbsqPageUsingGET_2
  375. 2026-04-15 19:07:24.016 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_1
  376. 2026-04-15 19:07:24.019 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_39
  377. 2026-04-15 19:07:24.024 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_44
  378. 2026-04-15 19:07:24.026 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_31
  379. 2026-04-15 19:07:24.031 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_38
  380. 2026-04-15 19:07:24.041 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_35
  381. 2026-04-15 19:07:24.043 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_40
  382. 2026-04-15 19:07:24.047 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_45
  383. 2026-04-15 19:07:24.050 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_32
  384. 2026-04-15 19:07:24.057 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_39
  385. 2026-04-15 19:07:24.059 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_36
  386. 2026-04-15 19:07:24.062 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_41
  387. 2026-04-15 19:07:24.066 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_46
  388. 2026-04-15 19:07:24.067 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_33
  389. 2026-04-15 19:07:24.073 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_40
  390. 2026-04-15 19:07:24.075 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_37
  391. 2026-04-15 19:07:24.076 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_42
  392. 2026-04-15 19:07:24.079 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_47
  393. 2026-04-15 19:07:24.080 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_48
  394. 2026-04-15 19:07:24.084 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_41
  395. 2026-04-15 19:07:24.085 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_38
  396. 2026-04-15 19:07:24.087 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_43
  397. 2026-04-15 19:07:24.091 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_49
  398. 2026-04-15 19:07:24.092 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_50
  399. 2026-04-15 19:07:24.094 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_42
  400. 2026-04-15 19:07:24.095 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_39
  401. 2026-04-15 19:07:24.098 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_44
  402. 2026-04-15 19:07:24.103 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_51
  403. 2026-04-15 19:07:24.104 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_34
  404. 2026-04-15 19:07:24.108 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_43
  405. 2026-04-15 19:07:24.109 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_40
  406. 2026-04-15 19:07:24.115 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxWzjbsqPageUsingGET_1
  407. 2026-04-15 19:07:24.118 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_45
  408. 2026-04-15 19:07:24.123 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_52
  409. 2026-04-15 19:07:24.124 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_35
  410. 2026-04-15 19:07:24.129 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_44
  411. 2026-04-15 19:07:24.130 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_41
  412. 2026-04-15 19:07:24.137 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxXbsqPageUsingGET_1
  413. 2026-04-15 19:07:24.140 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_46
  414. 2026-04-15 19:07:24.146 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_53
  415. 2026-04-15 19:07:24.147 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_36
  416. 2026-04-15 19:07:24.150 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_45
  417. 2026-04-15 19:07:24.153 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_42
  418. 2026-04-15 19:07:24.159 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxXhsqPageUsingGET_1
  419. 2026-04-15 19:07:24.161 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPOST_2
  420. 2026-04-15 19:07:24.163 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_47
  421. 2026-04-15 19:07:24.166 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_54
  422. 2026-04-15 19:07:24.167 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_37
  423. 2026-04-15 19:07:24.171 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_46
  424. 2026-04-15 19:07:24.173 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_43
  425. 2026-04-15 19:07:24.176 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_48
  426. 2026-04-15 19:07:24.183 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_55
  427. 2026-04-15 19:07:24.185 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_38
  428. 2026-04-15 19:07:24.188 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_47
  429. 2026-04-15 19:07:24.189 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_44
  430. 2026-04-15 19:07:24.200 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_9
  431. 2026-04-15 19:07:24.202 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_56
  432. 2026-04-15 19:07:24.203 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_39
  433. 2026-04-15 19:07:24.207 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_48
  434. 2026-04-15 19:07:24.210 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_57
  435. 2026-04-15 19:07:24.212 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_40
  436. 2026-04-15 19:07:24.217 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_49
  437. 2026-04-15 19:07:24.226 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_10
  438. 2026-04-15 19:07:24.230 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_49
  439. 2026-04-15 19:07:24.237 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_58
  440. 2026-04-15 19:07:24.239 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_41
  441. 2026-04-15 19:07:24.244 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_50
  442. 2026-04-15 19:07:24.249 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_45
  443. 2026-04-15 19:07:24.251 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_2
  444. 2026-04-15 19:07:24.274 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_51
  445. 2026-04-15 19:07:24.286 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_50
  446. 2026-04-15 19:07:24.298 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_11
  447. 2026-04-15 19:07:24.316 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_1
  448. 2026-04-15 19:07:24.328 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_51
  449. 2026-04-15 19:07:24.330 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_42
  450. 2026-04-15 19:07:24.352 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_52
  451. 2026-04-15 19:07:24.358 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_59
  452. 2026-04-15 19:07:24.359 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_43
  453. 2026-04-15 19:07:24.361 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_52
  454. 2026-04-15 19:07:24.364 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_46
  455. 2026-04-15 19:07:24.366 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_53
  456. 2026-04-15 19:07:24.369 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_60
  457. 2026-04-15 19:07:24.370 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_44
  458. 2026-04-15 19:07:24.377 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_53
  459. 2026-04-15 19:07:24.385 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_47
  460. 2026-04-15 19:07:24.387 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_3
  461. 2026-04-15 19:07:24.389 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_61
  462. 2026-04-15 19:07:24.391 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_45
  463. 2026-04-15 19:07:24.394 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_54
  464. 2026-04-15 19:07:24.401 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_12
  465. 2026-04-15 19:07:24.406 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_62
  466. 2026-04-15 19:07:24.408 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_46
  467. 2026-04-15 19:07:24.411 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_55
  468. 2026-04-15 19:07:24.419 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_13
  469. 2026-04-15 19:07:24.422 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_54
  470. 2026-04-15 19:07:24.433 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_63
  471. 2026-04-15 19:07:24.435 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_47
  472. 2026-04-15 19:07:24.440 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_56
  473. 2026-04-15 19:07:24.449 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_48
  474. 2026-04-15 19:07:24.452 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_4
  475. 2026-04-15 19:07:24.492 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getDaCustomerPageUsingGET_1
  476. 2026-04-15 19:07:24.547 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_1
  477. 2026-04-15 19:07:24.560 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_14
  478. 2026-04-15 19:07:24.582 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_55
  479. 2026-04-15 19:07:24.628 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: delByIdUsingDELETE_1
  480. 2026-04-15 19:07:24.630 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: delByIdsUsingDELETE_1
  481. 2026-04-15 19:07:24.631 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: disableUsingPUT_1
  482. 2026-04-15 19:07:24.632 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: enableUsingPUT_1
  483. 2026-04-15 19:07:24.635 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: importExcelUsingPOST_1
  484. 2026-04-15 19:07:24.639 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_2
  485. 2026-04-15 19:07:24.646 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_3
  486. 2026-04-15 19:07:24.668 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_5
  487. 2026-04-15 19:07:24.671 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_6
  488. 2026-04-15 19:07:24.675 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_7
  489. 2026-04-15 19:07:24.679 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_56
  490. 2026-04-15 19:07:24.687 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_48
  491. 2026-04-15 19:07:24.726 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: addUsingPOST_1
  492. 2026-04-15 19:07:24.736 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_57
  493. 2026-04-15 19:07:24.745 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_64
  494. 2026-04-15 19:07:24.746 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_49
  495. 2026-04-15 19:07:24.749 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_57
  496. 2026-04-15 19:07:24.753 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: save_gdUsingPOST_1
  497. 2026-04-15 19:07:24.762 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_49
  498. 2026-04-15 19:07:24.775 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_58
  499. 2026-04-15 19:07:24.780 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_65
  500. 2026-04-15 19:07:24.782 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_50
  501. 2026-04-15 19:07:24.785 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_58
  502. 2026-04-15 19:07:24.787 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_50
  503. 2026-04-15 19:07:24.790 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_59
  504. 2026-04-15 19:07:24.794 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_66
  505. 2026-04-15 19:07:24.796 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_51
  506. 2026-04-15 19:07:24.800 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_59
  507. 2026-04-15 19:07:24.803 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: save_gdUsingPOST_2
  508. 2026-04-15 19:07:24.808 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_51
  509. 2026-04-15 19:07:24.810 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_8
  510. 2026-04-15 19:07:24.821 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_9
  511. 2026-04-15 19:07:24.837 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_60
  512. 2026-04-15 19:07:24.895 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_2
  513. 2026-04-15 19:07:24.900 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_61
  514. 2026-04-15 19:07:24.905 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_15
  515. 2026-04-15 19:07:24.943 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_4
  516. 2026-04-15 19:07:24.952 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_10
  517. 2026-04-15 19:07:24.960 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_62
  518. 2026-04-15 19:07:24.968 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_67
  519. 2026-04-15 19:07:24.969 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_52
  520. 2026-04-15 19:07:24.980 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_60
  521. 2026-04-15 19:07:24.983 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_52
  522. 2026-04-15 19:07:25.045 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_53
  523. 2026-04-15 19:07:25.155 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_16
  524. 2026-04-15 19:07:25.207 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getListUsingGET_1
  525. 2026-04-15 19:07:25.284 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_63
  526. 2026-04-15 19:07:25.349 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: statUsingGET_1
  527. 2026-04-15 19:07:25.392 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_11
  528. 2026-04-15 19:07:25.397 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_64
  529. 2026-04-15 19:07:25.413 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_68
  530. 2026-04-15 19:07:25.415 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_53
  531. 2026-04-15 19:07:25.459 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_61
  532. 2026-04-15 19:07:25.462 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_54
  533. 2026-04-15 19:07:25.465 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_65
  534. 2026-04-15 19:07:25.472 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_62
  535. 2026-04-15 19:07:25.475 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_55
  536. 2026-04-15 19:07:25.487 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_12
  537. 2026-04-15 19:07:25.530 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_63
  538. 2026-04-15 19:07:25.589 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_17
  539. 2026-04-15 19:07:25.623 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: monthlyStatUsingGET_1
  540. 2026-04-15 19:07:25.628 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: monthlyStatSummaryUsingGET_1
  541. 2026-04-15 19:07:25.634 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getListUsingGET_2
  542. 2026-04-15 19:07:25.732 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_66
  543. 2026-04-15 19:07:25.783 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageListUsingGET_1
  544. 2026-04-15 19:07:25.789 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: statUsingGET_2
  545. 2026-04-15 19:07:25.836 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_13
  546. 2026-04-15 19:07:25.841 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_14
  547. 2026-04-15 19:07:25.896 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_64
  548. 2026-04-15 19:07:25.910 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_67
  549. 2026-04-15 19:07:25.998 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getYyWyjtzPageUsingGET_1
  550. 2026-04-15 19:07:26.001 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_15
  551. 2026-04-15 19:07:26.008 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_5
  552. 2026-04-15 19:07:26.026 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_18
  553. 2026-04-15 19:07:26.031 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_16
  554. 2026-04-15 19:07:26.063 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_19
  555. 2026-04-15 19:07:26.063 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_17
  556. 2026-04-15 19:07:26.121 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_20
  557. 2026-04-15 19:07:26.121 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_18
  558. 2026-04-15 19:07:26.121 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_68
  559. 2026-04-15 19:07:26.132 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_69
  560. 2026-04-15 19:07:26.132 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_54
  561. 2026-04-15 19:07:26.142 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_65
  562. 2026-04-15 19:07:26.147 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_56
  563. 2026-04-15 19:07:26.152 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_69
  564. 2026-04-15 19:07:26.154 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_70
  565. 2026-04-15 19:07:26.156 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_55
  566. 2026-04-15 19:07:26.163 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_66
  567. 2026-04-15 19:07:26.166 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_57
  568. 2026-04-15 19:07:26.169 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_21
  569. 2026-04-15 19:07:26.173 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_3
  570. 2026-04-15 19:07:26.179 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_67
  571. 2026-04-15 19:07:26.201 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_22
  572. 2026-04-15 19:07:26.268 [main] INFO io.undertow - starting server: Undertow - 2.0.31.Final
  573. 2026-04-15 19:07:26.276 [main] INFO org.xnio - XNIO version 3.3.8.Final
  574. 2026-04-15 19:07:26.286 [main] INFO org.xnio.nio - XNIO NIO Implementation Version 3.3.8.Final
  575. 2026-04-15 19:07:26.386 [main] INFO o.s.b.w.e.u.UndertowServletWebServer - Undertow started on port(s) 10506 (http) with context path ''
  576. 2026-04-15 19:07:26.464 [main] INFO c.a.c.n.r.NacosServiceRegistry - nacos registry, DEFAULT_GROUP collect-fees-api 192.168.200.104:10506 register finished
  577. 2026-04-15 19:07:26.881 [main] INFO com.tofly.feesapi.FeesApiApplication - Started FeesApiApplication in 60.917 seconds (JVM running for 63.407)
  578. 2026-04-15 19:07:27.608 [RMI TCP Connection(3)-192.168.200.104] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  579. 2026-04-15 19:07:27.608 [RMI TCP Connection(3)-192.168.200.104] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  580. 2026-04-15 19:07:27.628 [RMI TCP Connection(3)-192.168.200.104] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 20 ms
  581. 2026-04-15 19:10:12.048 [XNIO-1 task-1] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/api/yhgl/yhkhjbxx/page2/getPage2】请求开始==================
  582. 2026-04-15 19:10:12.213 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.getPage2_mpCount - ==> Preparing: SELECT COUNT(*) AS total FROM yh_khjbxx a WHERE 1 = 1 AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?)
  583. 2026-04-15 19:10:12.246 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.getPage2_mpCount - ==> Parameters: 10753(String)
  584. 2026-04-15 19:10:12.314 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.getPage2_mpCount - <== Total: 1
  585. 2026-04-15 19:10:12.321 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.getPage2 - ==> Preparing: SELECT * FROM ( SELECT TMP.*, ROWNUM ROW_ID FROM ( SELECT a.yhbh,a.ykhbh, a.yhxm,a.yhdz,a.lxdh, a.ssgs,a.sscbpq,a.sscbb,a.xb,a.sj,a.zzdh,a.gzdw,a.bgdh, a.dzyx,a.zjlb,a.zjhm,a.sqrq, a.jdrq,a.yhzt,a.rks,a.hzgx,a.zsjb,a.tsbz,a.tsrq,a.htqd,a.htqdrq,a.htbh,a.bz,a.bz1,a.bz_gcbh,a.bz_pcxlh,a.czrybm,a.czryxm, a.czsj,a.psfz,a.pht,a.pgszz,a.pyyzz,a.pyxzj,a.xydj,a.zw,a.jdrybm,a.jdryxm,a.jdpcxlh,a.sfqz,a.cbryxm,a.xh, a.ssregion,a.xgrybm,a.jtzqljl,a.fplx, (case when a.fplx='1' then '普票' when a.fplx='2' then '专票' else '' end) fplxmc, a.fp_name, a.fp_nsrsbh, a.fp_dz, a.fp_lxdh, a.fp_bankname, a.fp_bankcode, a.fp_bz, a.fffs,h.name AS fffsmc, a.khlb,a.pyjm,a.yljl, g.mc AS ssgsmc, e.cbpqmc AS sscbpqmc, f.cbbmc AS sscbbmc, d.name AS sblbmc,b.sbqs, b.sbbh,b.sblb,b.sbsccj,b.sbxh,b.sbkj,b.sblc,b.jddj,b.cbpl,b.bjwz,b.sbccrq,c.name || (select '|'||name from bm_sj where code=b.sjbm1)||(select '|'||name from bm_sj where code=b.sjbm2) sjmc,k.scds,k.bcds,k.cbxh, nvl(j.yfje,0) yfje, nvl(j.kjje,0) kjje, nvl(j.syje,0) syje, nvl(j.nbsyje,0) nbsyje, a.khbm,a.ysdz,a.wybz FROM yh_khjbxx a LEFT JOIN yh_cbkxx b ON a.yhbh = b.yhbh AND b.cbkh='1' LEFT JOIN bm_sj c on b.sjbm=c.code LEFT JOIN bm_sblb d on b.sblb=d.code LEFT JOIN bm_cbpq e on a.sscbpq=e.cbpqbm LEFT JOIN bm_cbb f on a.sscbb=f.cbbbm LEFT JOIN bm_gs g on a.ssgs=g.bm LEFT JOIN bm_fffs h on a.fffs=h.code LEFT JOIN yy_cblr k on a.yhbh=k.yhbh and b.cbkh=k.cbkh LEFT JOIN yy_zjzh j on a.yhbh=j.yhbh WHERE 1=1 AND a.sscbb in(select cbbbm from yh_sjqx where user_id=?) ORDER BY a.yhbh asc ) TMP WHERE ROWNUM <=?) WHERE ROW_ID > ?
  586. 2026-04-15 19:10:12.323 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.getPage2 - ==> Parameters: 10753(String), 20(Long), 0(Long)
  587. 2026-04-15 19:10:13.077 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.getPage2 - <== Total: 20
  588. 2026-04-15 19:10:13.078 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  589. 2026-04-15 19:10:13.078 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010001(String)
  590. 2026-04-15 19:10:13.104 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  591. 2026-04-15 19:10:13.105 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  592. 2026-04-15 19:10:13.105 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010001(String)
  593. 2026-04-15 19:10:13.375 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  594. 2026-04-15 19:10:13.376 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  595. 2026-04-15 19:10:13.376 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010002(String)
  596. 2026-04-15 19:10:13.400 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  597. 2026-04-15 19:10:13.400 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  598. 2026-04-15 19:10:13.400 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010002(String)
  599. 2026-04-15 19:10:13.426 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  600. 2026-04-15 19:10:13.426 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  601. 2026-04-15 19:10:13.426 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010003(String)
  602. 2026-04-15 19:10:13.455 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  603. 2026-04-15 19:10:13.456 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  604. 2026-04-15 19:10:13.457 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010003(String)
  605. 2026-04-15 19:10:13.487 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  606. 2026-04-15 19:10:13.487 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  607. 2026-04-15 19:10:13.487 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010004(String)
  608. 2026-04-15 19:10:13.509 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  609. 2026-04-15 19:10:13.510 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  610. 2026-04-15 19:10:13.510 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010004(String)
  611. 2026-04-15 19:10:13.539 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  612. 2026-04-15 19:10:13.539 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  613. 2026-04-15 19:10:13.539 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010005(String)
  614. 2026-04-15 19:10:13.564 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  615. 2026-04-15 19:10:13.565 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  616. 2026-04-15 19:10:13.565 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010005(String)
  617. 2026-04-15 19:10:13.593 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  618. 2026-04-15 19:10:13.593 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  619. 2026-04-15 19:10:13.593 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010006(String)
  620. 2026-04-15 19:10:13.621 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  621. 2026-04-15 19:10:13.622 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  622. 2026-04-15 19:10:13.622 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010006(String)
  623. 2026-04-15 19:10:13.649 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  624. 2026-04-15 19:10:13.650 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  625. 2026-04-15 19:10:13.650 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010007(String)
  626. 2026-04-15 19:10:13.674 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  627. 2026-04-15 19:10:13.675 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  628. 2026-04-15 19:10:13.676 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010007(String)
  629. 2026-04-15 19:10:13.703 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  630. 2026-04-15 19:10:13.704 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  631. 2026-04-15 19:10:13.704 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010008(String)
  632. 2026-04-15 19:10:13.732 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  633. 2026-04-15 19:10:13.732 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  634. 2026-04-15 19:10:13.733 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010008(String)
  635. 2026-04-15 19:10:13.762 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  636. 2026-04-15 19:10:13.762 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  637. 2026-04-15 19:10:13.762 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010009(String)
  638. 2026-04-15 19:10:13.787 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  639. 2026-04-15 19:10:13.788 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  640. 2026-04-15 19:10:13.789 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010009(String)
  641. 2026-04-15 19:10:13.808 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  642. 2026-04-15 19:10:13.808 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  643. 2026-04-15 19:10:13.809 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010010(String)
  644. 2026-04-15 19:10:13.832 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  645. 2026-04-15 19:10:13.833 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  646. 2026-04-15 19:10:13.833 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010010(String)
  647. 2026-04-15 19:10:13.860 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  648. 2026-04-15 19:10:13.861 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  649. 2026-04-15 19:10:13.861 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010011(String)
  650. 2026-04-15 19:10:13.889 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  651. 2026-04-15 19:10:13.890 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  652. 2026-04-15 19:10:13.890 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010011(String)
  653. 2026-04-15 19:10:13.917 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  654. 2026-04-15 19:10:13.917 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  655. 2026-04-15 19:10:13.917 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010012(String)
  656. 2026-04-15 19:10:13.942 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  657. 2026-04-15 19:10:13.942 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  658. 2026-04-15 19:10:13.943 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010012(String)
  659. 2026-04-15 19:10:13.966 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  660. 2026-04-15 19:10:13.967 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  661. 2026-04-15 19:10:13.967 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010013(String)
  662. 2026-04-15 19:10:13.989 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  663. 2026-04-15 19:10:13.989 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  664. 2026-04-15 19:10:13.989 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010013(String)
  665. 2026-04-15 19:10:14.014 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  666. 2026-04-15 19:10:14.014 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  667. 2026-04-15 19:10:14.015 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010014(String)
  668. 2026-04-15 19:10:14.036 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  669. 2026-04-15 19:10:14.036 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  670. 2026-04-15 19:10:14.036 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010014(String)
  671. 2026-04-15 19:10:14.057 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  672. 2026-04-15 19:10:14.058 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  673. 2026-04-15 19:10:14.058 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010015(String)
  674. 2026-04-15 19:10:14.079 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  675. 2026-04-15 19:10:14.080 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  676. 2026-04-15 19:10:14.080 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010015(String)
  677. 2026-04-15 19:10:14.102 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  678. 2026-04-15 19:10:14.103 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  679. 2026-04-15 19:10:14.103 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010016(String)
  680. 2026-04-15 19:10:14.124 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  681. 2026-04-15 19:10:14.125 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  682. 2026-04-15 19:10:14.125 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010016(String)
  683. 2026-04-15 19:10:14.149 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  684. 2026-04-15 19:10:14.149 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  685. 2026-04-15 19:10:14.149 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010017(String)
  686. 2026-04-15 19:10:14.176 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  687. 2026-04-15 19:10:14.176 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  688. 2026-04-15 19:10:14.176 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010017(String)
  689. 2026-04-15 19:10:14.197 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  690. 2026-04-15 19:10:14.197 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  691. 2026-04-15 19:10:14.197 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010018(String)
  692. 2026-04-15 19:10:14.222 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  693. 2026-04-15 19:10:14.223 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  694. 2026-04-15 19:10:14.223 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010018(String)
  695. 2026-04-15 19:10:14.251 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  696. 2026-04-15 19:10:14.252 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  697. 2026-04-15 19:10:14.252 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010019(String)
  698. 2026-04-15 19:10:14.280 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  699. 2026-04-15 19:10:14.281 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  700. 2026-04-15 19:10:14.281 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010019(String)
  701. 2026-04-15 19:10:14.303 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  702. 2026-04-15 19:10:14.304 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  703. 2026-04-15 19:10:14.304 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010020(String)
  704. 2026-04-15 19:10:14.345 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  705. 2026-04-15 19:10:14.345 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  706. 2026-04-15 19:10:14.345 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010020(String)
  707. 2026-04-15 19:10:14.373 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  708. 2026-04-15 19:10:14.374 [XNIO-1 task-1] INFO c.t.feesapi.common.LogRecordAspect - =================【getPage2】请求结束==================
  709. 2026-04-15 19:10:23.026 [XNIO-1 task-2] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/api/yhgl/yhkhjbxx/page2/getPage2】请求开始==================
  710. 2026-04-15 19:10:23.037 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.getPage2_mpCount - ==> Preparing: SELECT COUNT(*) AS total FROM yh_khjbxx a WHERE 1 = 1 AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?)
  711. 2026-04-15 19:10:23.037 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.getPage2_mpCount - ==> Parameters: 10753(String)
  712. 2026-04-15 19:10:23.089 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.getPage2_mpCount - <== Total: 1
  713. 2026-04-15 19:10:23.092 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.getPage2 - ==> Preparing: SELECT * FROM ( SELECT TMP.*, ROWNUM ROW_ID FROM ( SELECT a.yhbh,a.ykhbh, a.yhxm,a.yhdz,a.lxdh, a.ssgs,a.sscbpq,a.sscbb,a.xb,a.sj,a.zzdh,a.gzdw,a.bgdh, a.dzyx,a.zjlb,a.zjhm,a.sqrq, a.jdrq,a.yhzt,a.rks,a.hzgx,a.zsjb,a.tsbz,a.tsrq,a.htqd,a.htqdrq,a.htbh,a.bz,a.bz1,a.bz_gcbh,a.bz_pcxlh,a.czrybm,a.czryxm, a.czsj,a.psfz,a.pht,a.pgszz,a.pyyzz,a.pyxzj,a.xydj,a.zw,a.jdrybm,a.jdryxm,a.jdpcxlh,a.sfqz,a.cbryxm,a.xh, a.ssregion,a.xgrybm,a.jtzqljl,a.fplx, (case when a.fplx='1' then '普票' when a.fplx='2' then '专票' else '' end) fplxmc, a.fp_name, a.fp_nsrsbh, a.fp_dz, a.fp_lxdh, a.fp_bankname, a.fp_bankcode, a.fp_bz, a.fffs,h.name AS fffsmc, a.khlb,a.pyjm,a.yljl, g.mc AS ssgsmc, e.cbpqmc AS sscbpqmc, f.cbbmc AS sscbbmc, d.name AS sblbmc,b.sbqs, b.sbbh,b.sblb,b.sbsccj,b.sbxh,b.sbkj,b.sblc,b.jddj,b.cbpl,b.bjwz,b.sbccrq,c.name || (select '|'||name from bm_sj where code=b.sjbm1)||(select '|'||name from bm_sj where code=b.sjbm2) sjmc,k.scds,k.bcds,k.cbxh, nvl(j.yfje,0) yfje, nvl(j.kjje,0) kjje, nvl(j.syje,0) syje, nvl(j.nbsyje,0) nbsyje, a.khbm,a.ysdz,a.wybz FROM yh_khjbxx a LEFT JOIN yh_cbkxx b ON a.yhbh = b.yhbh AND b.cbkh='1' LEFT JOIN bm_sj c on b.sjbm=c.code LEFT JOIN bm_sblb d on b.sblb=d.code LEFT JOIN bm_cbpq e on a.sscbpq=e.cbpqbm LEFT JOIN bm_cbb f on a.sscbb=f.cbbbm LEFT JOIN bm_gs g on a.ssgs=g.bm LEFT JOIN bm_fffs h on a.fffs=h.code LEFT JOIN yy_cblr k on a.yhbh=k.yhbh and b.cbkh=k.cbkh LEFT JOIN yy_zjzh j on a.yhbh=j.yhbh WHERE 1=1 AND a.sscbb in(select cbbbm from yh_sjqx where user_id=?) ORDER BY a.yhbh asc ) TMP WHERE ROWNUM <=?) WHERE ROW_ID > ?
  714. 2026-04-15 19:10:23.092 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.getPage2 - ==> Parameters: 10753(String), 20(Long), 0(Long)
  715. 2026-04-15 19:10:23.738 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.getPage2 - <== Total: 20
  716. 2026-04-15 19:10:23.739 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  717. 2026-04-15 19:10:23.739 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010001(String)
  718. 2026-04-15 19:10:23.762 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  719. 2026-04-15 19:10:23.763 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  720. 2026-04-15 19:10:23.763 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010001(String)
  721. 2026-04-15 19:10:23.784 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  722. 2026-04-15 19:10:23.784 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  723. 2026-04-15 19:10:23.785 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010002(String)
  724. 2026-04-15 19:10:23.806 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  725. 2026-04-15 19:10:23.807 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  726. 2026-04-15 19:10:23.807 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010002(String)
  727. 2026-04-15 19:10:23.828 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  728. 2026-04-15 19:10:23.829 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  729. 2026-04-15 19:10:23.829 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010003(String)
  730. 2026-04-15 19:10:23.850 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  731. 2026-04-15 19:10:23.851 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  732. 2026-04-15 19:10:23.851 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010003(String)
  733. 2026-04-15 19:10:23.872 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  734. 2026-04-15 19:10:23.872 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  735. 2026-04-15 19:10:23.873 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010004(String)
  736. 2026-04-15 19:10:23.893 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  737. 2026-04-15 19:10:23.893 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  738. 2026-04-15 19:10:23.893 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010004(String)
  739. 2026-04-15 19:10:23.916 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  740. 2026-04-15 19:10:23.916 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  741. 2026-04-15 19:10:23.916 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010005(String)
  742. 2026-04-15 19:10:23.938 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  743. 2026-04-15 19:10:23.938 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  744. 2026-04-15 19:10:23.938 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010005(String)
  745. 2026-04-15 19:10:23.958 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  746. 2026-04-15 19:10:23.959 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  747. 2026-04-15 19:10:23.959 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010006(String)
  748. 2026-04-15 19:10:23.981 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  749. 2026-04-15 19:10:23.982 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  750. 2026-04-15 19:10:23.982 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010006(String)
  751. 2026-04-15 19:10:24.004 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  752. 2026-04-15 19:10:24.004 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  753. 2026-04-15 19:10:24.005 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010007(String)
  754. 2026-04-15 19:10:24.027 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  755. 2026-04-15 19:10:24.028 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  756. 2026-04-15 19:10:24.028 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010007(String)
  757. 2026-04-15 19:10:24.051 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  758. 2026-04-15 19:10:24.052 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  759. 2026-04-15 19:10:24.052 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010008(String)
  760. 2026-04-15 19:10:24.073 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  761. 2026-04-15 19:10:24.074 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  762. 2026-04-15 19:10:24.074 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010008(String)
  763. 2026-04-15 19:10:24.095 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  764. 2026-04-15 19:10:24.096 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  765. 2026-04-15 19:10:24.096 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010009(String)
  766. 2026-04-15 19:10:24.116 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  767. 2026-04-15 19:10:24.117 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  768. 2026-04-15 19:10:24.117 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010009(String)
  769. 2026-04-15 19:10:24.138 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  770. 2026-04-15 19:10:24.138 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  771. 2026-04-15 19:10:24.138 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010010(String)
  772. 2026-04-15 19:10:24.164 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  773. 2026-04-15 19:10:24.164 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  774. 2026-04-15 19:10:24.165 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010010(String)
  775. 2026-04-15 19:10:24.186 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  776. 2026-04-15 19:10:24.187 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  777. 2026-04-15 19:10:24.187 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010011(String)
  778. 2026-04-15 19:10:24.208 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  779. 2026-04-15 19:10:24.208 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  780. 2026-04-15 19:10:24.209 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010011(String)
  781. 2026-04-15 19:10:24.229 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  782. 2026-04-15 19:10:24.230 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  783. 2026-04-15 19:10:24.230 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010012(String)
  784. 2026-04-15 19:10:24.253 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  785. 2026-04-15 19:10:24.253 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  786. 2026-04-15 19:10:24.253 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010012(String)
  787. 2026-04-15 19:10:24.274 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  788. 2026-04-15 19:10:24.275 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  789. 2026-04-15 19:10:24.275 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010013(String)
  790. 2026-04-15 19:10:24.303 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  791. 2026-04-15 19:10:24.303 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  792. 2026-04-15 19:10:24.303 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010013(String)
  793. 2026-04-15 19:10:24.325 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  794. 2026-04-15 19:10:24.325 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  795. 2026-04-15 19:10:24.325 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010014(String)
  796. 2026-04-15 19:10:24.346 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  797. 2026-04-15 19:10:24.347 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  798. 2026-04-15 19:10:24.347 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010014(String)
  799. 2026-04-15 19:10:24.368 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  800. 2026-04-15 19:10:24.369 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  801. 2026-04-15 19:10:24.369 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010015(String)
  802. 2026-04-15 19:10:24.391 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  803. 2026-04-15 19:10:24.391 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  804. 2026-04-15 19:10:24.391 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010015(String)
  805. 2026-04-15 19:10:24.413 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  806. 2026-04-15 19:10:24.414 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  807. 2026-04-15 19:10:24.414 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010016(String)
  808. 2026-04-15 19:10:24.435 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  809. 2026-04-15 19:10:24.436 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  810. 2026-04-15 19:10:24.436 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010016(String)
  811. 2026-04-15 19:10:24.458 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  812. 2026-04-15 19:10:24.459 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  813. 2026-04-15 19:10:24.459 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010017(String)
  814. 2026-04-15 19:10:24.481 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  815. 2026-04-15 19:10:24.481 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  816. 2026-04-15 19:10:24.481 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010017(String)
  817. 2026-04-15 19:10:24.502 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  818. 2026-04-15 19:10:24.503 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  819. 2026-04-15 19:10:24.503 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010018(String)
  820. 2026-04-15 19:10:24.524 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  821. 2026-04-15 19:10:24.524 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  822. 2026-04-15 19:10:24.524 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010018(String)
  823. 2026-04-15 19:10:24.545 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  824. 2026-04-15 19:10:24.546 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  825. 2026-04-15 19:10:24.546 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010019(String)
  826. 2026-04-15 19:10:24.566 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  827. 2026-04-15 19:10:24.566 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  828. 2026-04-15 19:10:24.566 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010019(String)
  829. 2026-04-15 19:10:24.588 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  830. 2026-04-15 19:10:24.588 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  831. 2026-04-15 19:10:24.588 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010020(String)
  832. 2026-04-15 19:10:24.610 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  833. 2026-04-15 19:10:24.610 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  834. 2026-04-15 19:10:24.610 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010020(String)
  835. 2026-04-15 19:10:24.631 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  836. 2026-04-15 19:10:24.631 [XNIO-1 task-2] INFO c.t.feesapi.common.LogRecordAspect - =================【getPage2】请求结束==================
  837. 2026-04-15 19:11:37.911 [XNIO-1 task-3] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/api/yhgl/yhkhjbxx/page2/getPage2】请求开始==================
  838. 2026-04-15 19:11:37.911 [XNIO-1 task-3] INFO c.t.feesapi.common.LogRecordAspect - =================【getPage2】请求结束==================
  839. 2026-04-15 19:11:37.917 [XNIO-1 task-3] ERROR c.t.f.c.e.FeesErrorResponseHandler - **未知错误**
  840. java.lang.NullPointerException: null
  841. at com.tofly.feesapi.yhgl.controller.YhKhjbxxController.getPage2(YhKhjbxxController.java:376)
  842. at com.tofly.feesapi.yhgl.controller.YhKhjbxxController$$FastClassBySpringCGLIB$$8bb757dc.invoke(<generated>)
  843. at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
  844. at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:771)
  845. at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
  846. at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:749)
  847. at org.springframework.aop.aspectj.AspectJAfterAdvice.invoke(AspectJAfterAdvice.java:47)
  848. at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
  849. at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:749)
  850. at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56)
  851. at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
  852. at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:749)
  853. at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:95)
  854. at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
  855. at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:749)
  856. at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:691)
  857. at com.tofly.feesapi.yhgl.controller.YhKhjbxxController$$EnhancerBySpringCGLIB$$1416d7ad.getPage2(<generated>)
  858. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  859. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  860. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  861. at java.lang.reflect.Method.invoke(Method.java:498)
  862. at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190)
  863. at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138)
  864. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:105)
  865. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:878)
  866. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:792)
  867. at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
  868. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1040)
  869. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943)
  870. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)
  871. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)
  872. at javax.servlet.http.HttpServlet.service(HttpServlet.java:497)
  873. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)
  874. at javax.servlet.http.HttpServlet.service(HttpServlet.java:584)
  875. at io.undertow.servlet.handlers.ServletHandler.handleRequest(ServletHandler.java:74)
  876. at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:129)
  877. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:320)
  878. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:126)
  879. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:90)
  880. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
  881. at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:118)
  882. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
  883. at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137)
  884. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
  885. at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111)
  886. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
  887. at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:158)
  888. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
  889. at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)
  890. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
  891. at org.springframework.security.oauth2.provider.authentication.OAuth2AuthenticationProcessingFilter.doFilter(OAuth2AuthenticationProcessingFilter.java:176)
  892. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
  893. at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
  894. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
  895. at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:92)
  896. at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:77)
  897. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
  898. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
  899. at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
  900. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
  901. at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
  902. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
  903. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
  904. at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:215)
  905. at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:178)
  906. at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:358)
  907. at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:271)
  908. at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
  909. at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
  910. at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
  911. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
  912. at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
  913. at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
  914. at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
  915. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
  916. at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
  917. at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
  918. at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:109)
  919. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
  920. at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
  921. at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
  922. at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
  923. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
  924. at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
  925. at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
  926. at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:84)
  927. at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:62)
  928. at io.undertow.servlet.handlers.ServletChain$1.handleRequest(ServletChain.java:68)
  929. at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36)
  930. at io.undertow.servlet.handlers.RedirectDirHandler.handleRequest(RedirectDirHandler.java:68)
  931. at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:132)
  932. at io.undertow.servlet.handlers.security.ServletAuthenticationCallHandler.handleRequest(ServletAuthenticationCallHandler.java:57)
  933. at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
  934. at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:46)
  935. at io.undertow.servlet.handlers.security.ServletConfidentialityConstraintHandler.handleRequest(ServletConfidentialityConstraintHandler.java:64)
  936. at io.undertow.security.handlers.AuthenticationMechanismsHandler.handleRequest(AuthenticationMechanismsHandler.java:60)
  937. at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:77)
  938. at io.undertow.security.handlers.AbstractSecurityContextAssociationHandler.handleRequest(AbstractSecurityContextAssociationHandler.java:43)
  939. at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
  940. at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
  941. at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:269)
  942. at io.undertow.servlet.handlers.ServletInitialHandler.access$100(ServletInitialHandler.java:78)
  943. at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:133)
  944. at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:130)
  945. at io.undertow.servlet.core.ServletRequestContextThreadSetupAction$1.call(ServletRequestContextThreadSetupAction.java:48)
  946. at io.undertow.servlet.core.ContextClassLoaderSetupAction$1.call(ContextClassLoaderSetupAction.java:43)
  947. at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:249)
  948. at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:78)
  949. at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:99)
  950. at io.undertow.server.Connectors.executeRootHandler(Connectors.java:376)
  951. at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:830)
  952. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
  953. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
  954. at java.lang.Thread.run(Thread.java:748)
  955. 2026-04-15 19:12:53.735 [SpringContextShutdownHook] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'taskScheduler'
  956. 2026-04-15 19:12:53.745 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registering from Nacos Server now...
  957. 2026-04-15 19:12:53.793 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registration finished.
  958. 2026-04-15 19:12:53.794 [SpringContextShutdownHook] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'taskScheduler'
  959. 2026-04-15 19:12:54.403 [SpringContextShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
  960. 2026-04-15 19:12:54.412 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-2} closing ...
  961. 2026-04-15 19:12:54.469 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-2} closed
  962. 2026-04-15 19:12:54.470 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-3} closing ...
  963. 2026-04-15 19:12:54.532 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-3} closed
  964. 2026-04-15 19:12:54.532 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closing ...
  965. 2026-04-15 19:12:54.557 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closed
  966. 2026-04-15 19:12:54.557 [SpringContextShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
  967. 2026-04-15 19:12:54.561 [SpringContextShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  968. 2026-04-15 19:12:54.562 [SpringContextShutdownHook] INFO io.undertow - stopping server: Undertow - 2.0.31.Final
  969. 2026-04-15 19:13:09.263 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.0.20.Final
  970. 2026-04-15 19:13:09.600 [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
  971. 2026-04-15 19:13:10.044 [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]
  972. 2026-04-15 19:13:10.056 [main] WARN c.a.c.n.c.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[collect-fees-api-gs.yaml] & group[DEFAULT_GROUP]
  973. 2026-04-15 19:13:10.057 [main] INFO o.s.c.b.c.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-collect-fees-api-gs.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-collect-fees-api.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-collect-fees-api,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'}]
  974. 2026-04-15 19:13:10.062 [main] INFO com.tofly.feesapi.FeesApiApplication - The following profiles are active: gs
  975. 2026-04-15 19:13:11.965 [main] WARN o.s.boot.actuate.endpoint.EndpointId - Endpoint ID 'nacos-config' contains invalid characters, please migrate to a valid format.
  976. 2026-04-15 19:13:11.968 [main] WARN o.s.boot.actuate.endpoint.EndpointId - Endpoint ID 'nacos-discovery' contains invalid characters, please migrate to a valid format.
  977. 2026-04-15 19:13:12.182 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode!
  978. 2026-04-15 19:13:12.184 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  979. 2026-04-15 19:13:12.442 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 195ms. Found 0 Redis repository interfaces.
  980. 2026-04-15 19:13:12.533 [main] WARN o.s.boot.actuate.endpoint.EndpointId - Endpoint ID 'service-registry' contains invalid characters, please migrate to a valid format.
  981. 2026-04-15 19:13:12.685 [main] DEBUG org.apache.ibatis.logging.LogFactory - Logging initialized using 'class org.apache.ibatis.logging.slf4j.Slf4jImpl' adapter.
  982. 2026-04-15 19:13:13.261 [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!
  983. 2026-04-15 19:13:13.261 [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!
  984. 2026-04-15 19:13:13.261 [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!
  985. 2026-04-15 19:13:13.261 [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!
  986. 2026-04-15 19:13:13.261 [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!
  987. 2026-04-15 19:13:13.261 [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!
  988. 2026-04-15 19:13:13.261 [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!
  989. 2026-04-15 19:13:13.261 [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!
  990. 2026-04-15 19:13:13.261 [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!
  991. 2026-04-15 19:13:13.261 [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!
  992. 2026-04-15 19:13:13.261 [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!
  993. 2026-04-15 19:13:13.261 [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!
  994. 2026-04-15 19:13:13.261 [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!
  995. 2026-04-15 19:13:13.261 [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!
  996. 2026-04-15 19:13:13.261 [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!
  997. 2026-04-15 19:13:13.261 [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!
  998. 2026-04-15 19:13:13.262 [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!
  999. 2026-04-15 19:13:13.262 [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!
  1000. 2026-04-15 19:13:13.262 [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!
  1001. 2026-04-15 19:13:13.262 [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!
  1002. 2026-04-15 19:13:13.262 [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!
  1003. 2026-04-15 19:13:13.262 [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!
  1004. 2026-04-15 19:13:13.262 [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!
  1005. 2026-04-15 19:13:13.262 [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!
  1006. 2026-04-15 19:13:13.262 [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!
  1007. 2026-04-15 19:13:13.262 [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!
  1008. 2026-04-15 19:13:13.262 [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!
  1009. 2026-04-15 19:13:13.262 [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!
  1010. 2026-04-15 19:13:13.263 [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!
  1011. 2026-04-15 19:13:13.263 [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!
  1012. 2026-04-15 19:13:13.263 [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!
  1013. 2026-04-15 19:13:13.263 [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!
  1014. 2026-04-15 19:13:13.263 [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!
  1015. 2026-04-15 19:13:13.263 [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!
  1016. 2026-04-15 19:13:13.263 [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!
  1017. 2026-04-15 19:13:13.263 [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!
  1018. 2026-04-15 19:13:13.263 [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!
  1019. 2026-04-15 19:13:13.263 [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!
  1020. 2026-04-15 19:13:13.263 [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!
  1021. 2026-04-15 19:13:13.264 [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!
  1022. 2026-04-15 19:13:13.264 [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!
  1023. 2026-04-15 19:13:13.264 [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!
  1024. 2026-04-15 19:13:13.264 [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!
  1025. 2026-04-15 19:13:13.264 [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!
  1026. 2026-04-15 19:13:13.264 [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!
  1027. 2026-04-15 19:13:13.264 [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!
  1028. 2026-04-15 19:13:13.264 [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!
  1029. 2026-04-15 19:13:13.264 [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!
  1030. 2026-04-15 19:13:13.264 [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!
  1031. 2026-04-15 19:13:13.264 [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!
  1032. 2026-04-15 19:13:13.264 [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!
  1033. 2026-04-15 19:13:13.264 [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!
  1034. 2026-04-15 19:13:13.264 [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!
  1035. 2026-04-15 19:13:13.264 [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!
  1036. 2026-04-15 19:13:13.264 [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!
  1037. 2026-04-15 19:13:13.264 [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!
  1038. 2026-04-15 19:13:13.264 [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!
  1039. 2026-04-15 19:13:13.264 [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!
  1040. 2026-04-15 19:13:13.264 [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!
  1041. 2026-04-15 19:13:13.264 [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!
  1042. 2026-04-15 19:13:13.264 [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!
  1043. 2026-04-15 19:13:13.264 [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!
  1044. 2026-04-15 19:13:13.264 [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!
  1045. 2026-04-15 19:13:13.264 [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!
  1046. 2026-04-15 19:13:13.264 [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!
  1047. 2026-04-15 19:13:13.264 [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!
  1048. 2026-04-15 19:13:13.264 [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!
  1049. 2026-04-15 19:13:13.264 [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!
  1050. 2026-04-15 19:13:13.264 [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!
  1051. 2026-04-15 19:13:13.264 [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!
  1052. 2026-04-15 19:13:13.264 [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!
  1053. 2026-04-15 19:13:13.264 [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!
  1054. 2026-04-15 19:13:13.265 [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!
  1055. 2026-04-15 19:13:13.266 [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!
  1056. 2026-04-15 19:13:13.266 [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!
  1057. 2026-04-15 19:13:13.266 [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!
  1058. 2026-04-15 19:13:13.266 [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!
  1059. 2026-04-15 19:13:13.266 [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!
  1060. 2026-04-15 19:13:13.266 [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!
  1061. 2026-04-15 19:13:13.266 [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!
  1062. 2026-04-15 19:13:13.266 [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!
  1063. 2026-04-15 19:13:13.266 [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!
  1064. 2026-04-15 19:13:13.266 [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!
  1065. 2026-04-15 19:13:13.266 [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!
  1066. 2026-04-15 19:13:13.266 [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!
  1067. 2026-04-15 19:13:13.266 [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!
  1068. 2026-04-15 19:13:13.266 [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!
  1069. 2026-04-15 19:13:13.266 [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!
  1070. 2026-04-15 19:13:13.266 [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!
  1071. 2026-04-15 19:13:13.266 [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!
  1072. 2026-04-15 19:13:13.266 [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!
  1073. 2026-04-15 19:13:13.266 [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!
  1074. 2026-04-15 19:13:13.266 [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!
  1075. 2026-04-15 19:13:13.266 [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!
  1076. 2026-04-15 19:13:13.266 [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!
  1077. 2026-04-15 19:13:13.266 [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!
  1078. 2026-04-15 19:13:13.267 [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!
  1079. 2026-04-15 19:13:13.267 [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!
  1080. 2026-04-15 19:13:13.267 [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!
  1081. 2026-04-15 19:13:13.267 [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!
  1082. 2026-04-15 19:13:13.267 [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!
  1083. 2026-04-15 19:13:13.267 [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!
  1084. 2026-04-15 19:13:13.267 [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!
  1085. 2026-04-15 19:13:13.267 [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!
  1086. 2026-04-15 19:13:13.267 [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!
  1087. 2026-04-15 19:13:13.267 [main] WARN o.m.s.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.tofly.feesapi.**.mapper]' package. Please check your configuration.
  1088. 2026-04-15 19:13:13.487 [main] INFO o.s.cloud.context.scope.GenericScope - BeanFactory id=b96e5894-f128-35d3-aafc-41fccadba59b
  1089. 2026-04-15 19:13:13.570 [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)
  1090. 2026-04-15 19:13:13.888 [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)
  1091. 2026-04-15 19:13:13.899 [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$$dff961c6] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  1092. 2026-04-15 19:13:13.918 [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)
  1093. 2026-04-15 19:13:13.943 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@73bb573d' 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)
  1094. 2026-04-15 19:13:13.955 [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)
  1095. 2026-04-15 19:13:14.221 [main] WARN io.undertow.websockets.jsr - UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
  1096. 2026-04-15 19:13:14.250 [main] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  1097. 2026-04-15 19:13:14.250 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 4171 ms
  1098. 2026-04-15 19:13:18.172 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1,master} inited
  1099. 2026-04-15 19:13:23.694 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-2,udb} inited
  1100. 2026-04-15 19:13:29.945 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-3,flowDB} inited
  1101. 2026-04-15 19:13:29.946 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [udb] success
  1102. 2026-04-15 19:13:29.946 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [flowDB] success
  1103. 2026-04-15 19:13:29.946 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
  1104. 2026-04-15 19:13:29.946 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [3] datasource,primary datasource named [master]
  1105. 2026-04-15 19:13:31.253 [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]
  1106. 2026-04-15 19:13:31.553 [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]
  1107. 2026-04-15 19:13:32.388 [main] WARN c.b.m.core.metadata.TableInfoHelper - Can not find table primary key in Class: "com.tofly.feesapi.wxgl.wechatpay.entity.PaySelect".
  1108. 2026-04-15 19:13:32.388 [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.
  1109. 2026-04-15 19:13:32.398 [main] WARN c.b.m.core.metadata.TableInfoHelper - Can not find table primary key in Class: "com.tofly.feesapi.xtgl.entity.SysGdcsb".
  1110. 2026-04-15 19:13:32.399 [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.
  1111. 2026-04-15 19:13:36.368 [main] INFO org.redisson.Version - Redisson 3.23.2
  1112. 2026-04-15 19:13:37.242 [redisson-netty-2-4] INFO o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 127.0.0.1/127.0.0.1:6379
  1113. 2026-04-15 19:13:37.287 [redisson-netty-2-19] INFO o.r.c.pool.MasterConnectionPool - 24 connections initialized for 127.0.0.1/127.0.0.1:6379
  1114. 2026-04-15 19:13:42.858 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 19 endpoint(s) beneath base path '/actuator'
  1115. 2026-04-15 19:13:42.954 [main] INFO s.d.s.w.WebMvcPropertySourcedRequestMappingHandlerMapping - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  1116. 2026-04-15 19:13:43.114 [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]
  1117. 2026-04-15 19:13:43.122 [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]
  1118. 2026-04-15 19:13:43.360 [main] INFO o.s.s.c.ThreadPoolTaskScheduler - Initializing ExecutorService 'taskScheduler'
  1119. 2026-04-15 19:13:43.531 [main] INFO o.s.b.a.s.s.UserDetailsServiceAutoConfiguration -
  1120. Using generated security password: 853009e1-4723-4238-b6ed-454fe830ebd2
  1121. 2026-04-15 19:13:43.619 [main] INFO o.s.s.web.DefaultSecurityFilterChain - Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@3077e4aa, org.springframework.security.web.context.SecurityContextPersistenceFilter@45dc4d1a, org.springframework.security.web.header.HeaderWriterFilter@43bda665, org.springframework.security.web.authentication.logout.LogoutFilter@7537f638, org.springframework.security.oauth2.provider.authentication.OAuth2AuthenticationProcessingFilter@4f1fb8fc, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@60a98fa6, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@2495a351, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@3518882c, org.springframework.security.web.session.SessionManagementFilter@2dc4b58a, org.springframework.security.web.access.ExceptionTranslationFilter@6988dc14, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@5bb1c104]
  1122. 2026-04-15 19:13:44.151 [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.
  1123. 2026-04-15 19:13:44.287 [main] INFO s.d.s.w.p.DocumentationPluginsBootstrapper - Documentation plugins bootstrapped
  1124. 2026-04-15 19:13:44.289 [main] INFO s.d.s.w.p.DocumentationPluginsBootstrapper - Found 1 custom documentation plugin(s)
  1125. 2026-04-15 19:13:44.416 [main] INFO s.d.s.w.s.ApiListingReferenceScanner - Scanning for api listing references
  1126. 2026-04-15 19:13:44.812 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_1
  1127. 2026-04-15 19:13:44.817 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_1
  1128. 2026-04-15 19:13:44.818 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_1
  1129. 2026-04-15 19:13:44.819 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_1
  1130. 2026-04-15 19:13:44.823 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_1
  1131. 2026-04-15 19:13:44.824 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_1
  1132. 2026-04-15 19:13:44.850 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: addCustomerUsingPOST_1
  1133. 2026-04-15 19:13:44.851 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: deleteCustomerUsingPOST_1
  1134. 2026-04-15 19:13:44.852 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getBindCustomerUsingGET_1
  1135. 2026-04-15 19:13:44.852 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: selectCustomerUsingGET_1
  1136. 2026-04-15 19:13:44.854 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getBindCustomerAndQfUsingGET_1
  1137. 2026-04-15 19:13:44.855 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerBasicInFoUsingGET_1
  1138. 2026-04-15 19:13:44.856 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerChargeInFoUsingGET_1
  1139. 2026-04-15 19:13:44.857 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerInFoUsingGET_1
  1140. 2026-04-15 19:13:44.858 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerQfInFoUsingGET_1
  1141. 2026-04-15 19:13:44.859 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerReadMeterInFoUsingGET_1
  1142. 2026-04-15 19:13:44.872 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_2
  1143. 2026-04-15 19:13:44.901 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_2
  1144. 2026-04-15 19:13:44.903 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_2
  1145. 2026-04-15 19:13:44.905 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_2
  1146. 2026-04-15 19:13:44.913 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_2
  1147. 2026-04-15 19:13:44.916 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_2
  1148. 2026-04-15 19:13:44.938 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_3
  1149. 2026-04-15 19:13:44.940 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_3
  1150. 2026-04-15 19:13:44.940 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_3
  1151. 2026-04-15 19:13:44.943 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_3
  1152. 2026-04-15 19:13:44.944 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_3
  1153. 2026-04-15 19:13:44.950 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_3
  1154. 2026-04-15 19:13:44.957 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_4
  1155. 2026-04-15 19:13:44.958 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_4
  1156. 2026-04-15 19:13:44.959 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_4
  1157. 2026-04-15 19:13:44.962 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_4
  1158. 2026-04-15 19:13:44.963 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_4
  1159. 2026-04-15 19:13:44.966 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_5
  1160. 2026-04-15 19:13:44.967 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_5
  1161. 2026-04-15 19:13:44.968 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_5
  1162. 2026-04-15 19:13:44.972 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_5
  1163. 2026-04-15 19:13:44.973 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_5
  1164. 2026-04-15 19:13:44.983 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_4
  1165. 2026-04-15 19:13:44.989 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_6
  1166. 2026-04-15 19:13:44.996 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_5
  1167. 2026-04-15 19:13:44.997 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_6
  1168. 2026-04-15 19:13:44.998 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_6
  1169. 2026-04-15 19:13:45.002 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_6
  1170. 2026-04-15 19:13:45.004 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_6
  1171. 2026-04-15 19:13:45.007 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_1
  1172. 2026-04-15 19:13:45.015 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_7
  1173. 2026-04-15 19:13:45.016 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_7
  1174. 2026-04-15 19:13:45.018 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_7
  1175. 2026-04-15 19:13:45.023 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_7
  1176. 2026-04-15 19:13:45.025 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_7
  1177. 2026-04-15 19:13:45.029 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_8
  1178. 2026-04-15 19:13:45.030 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getFffsListUsingGET_1
  1179. 2026-04-15 19:13:45.031 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_8
  1180. 2026-04-15 19:13:45.033 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_9
  1181. 2026-04-15 19:13:45.036 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_8
  1182. 2026-04-15 19:13:45.038 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_8
  1183. 2026-04-15 19:13:45.045 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_2
  1184. 2026-04-15 19:13:45.050 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_9
  1185. 2026-04-15 19:13:45.052 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_10
  1186. 2026-04-15 19:13:45.053 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_11
  1187. 2026-04-15 19:13:45.056 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_9
  1188. 2026-04-15 19:13:45.057 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_9
  1189. 2026-04-15 19:13:45.062 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_10
  1190. 2026-04-15 19:13:45.064 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_12
  1191. 2026-04-15 19:13:45.065 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_13
  1192. 2026-04-15 19:13:45.070 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_10
  1193. 2026-04-15 19:13:45.071 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_10
  1194. 2026-04-15 19:13:45.076 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_11
  1195. 2026-04-15 19:13:45.077 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_14
  1196. 2026-04-15 19:13:45.079 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_15
  1197. 2026-04-15 19:13:45.083 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_11
  1198. 2026-04-15 19:13:45.084 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_11
  1199. 2026-04-15 19:13:45.092 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_12
  1200. 2026-04-15 19:13:45.093 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_16
  1201. 2026-04-15 19:13:45.094 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_8
  1202. 2026-04-15 19:13:45.096 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_12
  1203. 2026-04-15 19:13:45.096 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_12
  1204. 2026-04-15 19:13:45.104 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_13
  1205. 2026-04-15 19:13:45.106 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_17
  1206. 2026-04-15 19:13:45.107 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_9
  1207. 2026-04-15 19:13:45.111 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_13
  1208. 2026-04-15 19:13:45.112 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_13
  1209. 2026-04-15 19:13:45.117 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_14
  1210. 2026-04-15 19:13:45.120 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_18
  1211. 2026-04-15 19:13:45.121 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_19
  1212. 2026-04-15 19:13:45.127 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_14
  1213. 2026-04-15 19:13:45.129 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_14
  1214. 2026-04-15 19:13:45.138 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_15
  1215. 2026-04-15 19:13:45.155 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_6
  1216. 2026-04-15 19:13:45.181 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_15
  1217. 2026-04-15 19:13:45.188 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_3
  1218. 2026-04-15 19:13:45.194 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_16
  1219. 2026-04-15 19:13:45.195 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_20
  1220. 2026-04-15 19:13:45.196 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_10
  1221. 2026-04-15 19:13:45.198 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_16
  1222. 2026-04-15 19:13:45.199 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_15
  1223. 2026-04-15 19:13:45.205 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_17
  1224. 2026-04-15 19:13:45.213 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_7
  1225. 2026-04-15 19:13:45.214 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_21
  1226. 2026-04-15 19:13:45.215 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_11
  1227. 2026-04-15 19:13:45.217 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_17
  1228. 2026-04-15 19:13:45.218 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_16
  1229. 2026-04-15 19:13:45.234 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_8
  1230. 2026-04-15 19:13:45.237 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveBatchUsingPOST_1
  1231. 2026-04-15 19:13:45.365 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_18
  1232. 2026-04-15 19:13:45.369 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_22
  1233. 2026-04-15 19:13:45.370 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_12
  1234. 2026-04-15 19:13:45.372 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_18
  1235. 2026-04-15 19:13:45.373 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_17
  1236. 2026-04-15 19:13:45.374 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_19
  1237. 2026-04-15 19:13:45.376 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_23
  1238. 2026-04-15 19:13:45.378 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_19
  1239. 2026-04-15 19:13:45.379 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_18
  1240. 2026-04-15 19:13:45.386 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_20
  1241. 2026-04-15 19:13:45.387 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_24
  1242. 2026-04-15 19:13:45.388 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_13
  1243. 2026-04-15 19:13:45.390 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_20
  1244. 2026-04-15 19:13:45.413 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: Xh_WordToPdfUsingPOST_1
  1245. 2026-04-15 19:13:45.416 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_21
  1246. 2026-04-15 19:13:45.425 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_25
  1247. 2026-04-15 19:13:45.427 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_14
  1248. 2026-04-15 19:13:45.431 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_21
  1249. 2026-04-15 19:13:45.432 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_26
  1250. 2026-04-15 19:13:45.433 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_15
  1251. 2026-04-15 19:13:45.436 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_22
  1252. 2026-04-15 19:13:45.437 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_19
  1253. 2026-04-15 19:13:45.454 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_22
  1254. 2026-04-15 19:13:45.541 [main] WARN s.d.s.w.r.p.ParameterTypeReader - @ModelAttribute annotated parameters should have already been expanded via the ExpandedParameterBuilderPlugin
  1255. 2026-04-15 19:13:45.541 [main] WARN s.d.s.w.r.p.ParameterTypeReader - @ModelAttribute annotated parameters should have already been expanded via the ExpandedParameterBuilderPlugin
  1256. 2026-04-15 19:13:45.549 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportYsqdUsingGET_1
  1257. 2026-04-15 19:13:45.597 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_23
  1258. 2026-04-15 19:13:45.598 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_27
  1259. 2026-04-15 19:13:45.599 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_16
  1260. 2026-04-15 19:13:45.618 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_24
  1261. 2026-04-15 19:13:45.619 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_28
  1262. 2026-04-15 19:13:45.620 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_17
  1263. 2026-04-15 19:13:45.622 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_23
  1264. 2026-04-15 19:13:45.624 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_20
  1265. 2026-04-15 19:13:45.633 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_25
  1266. 2026-04-15 19:13:45.638 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_29
  1267. 2026-04-15 19:13:45.639 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_18
  1268. 2026-04-15 19:13:45.641 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_24
  1269. 2026-04-15 19:13:45.642 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_21
  1270. 2026-04-15 19:13:45.644 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_26
  1271. 2026-04-15 19:13:45.648 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_30
  1272. 2026-04-15 19:13:45.649 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_19
  1273. 2026-04-15 19:13:45.650 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_25
  1274. 2026-04-15 19:13:45.651 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_22
  1275. 2026-04-15 19:13:45.661 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_27
  1276. 2026-04-15 19:13:45.666 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_31
  1277. 2026-04-15 19:13:45.667 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_20
  1278. 2026-04-15 19:13:45.670 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_26
  1279. 2026-04-15 19:13:45.671 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_23
  1280. 2026-04-15 19:13:45.679 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxBtsqPageUsingGET_1
  1281. 2026-04-15 19:13:45.681 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_28
  1282. 2026-04-15 19:13:45.685 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_32
  1283. 2026-04-15 19:13:45.687 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_21
  1284. 2026-04-15 19:13:45.690 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_27
  1285. 2026-04-15 19:13:45.691 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_24
  1286. 2026-04-15 19:13:45.694 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxBzsqPageUsingGET_1
  1287. 2026-04-15 19:13:45.700 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_29
  1288. 2026-04-15 19:13:45.704 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_33
  1289. 2026-04-15 19:13:45.705 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_22
  1290. 2026-04-15 19:13:45.708 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_28
  1291. 2026-04-15 19:13:45.709 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_25
  1292. 2026-04-15 19:13:45.715 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxDbsqPageUsingGET_1
  1293. 2026-04-15 19:13:45.717 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPOST_1
  1294. 2026-04-15 19:13:45.719 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_30
  1295. 2026-04-15 19:13:45.723 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_34
  1296. 2026-04-15 19:13:45.724 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_23
  1297. 2026-04-15 19:13:45.725 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_29
  1298. 2026-04-15 19:13:45.726 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_26
  1299. 2026-04-15 19:13:45.728 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_31
  1300. 2026-04-15 19:13:45.730 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_35
  1301. 2026-04-15 19:13:45.731 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_24
  1302. 2026-04-15 19:13:45.734 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_30
  1303. 2026-04-15 19:13:45.736 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_27
  1304. 2026-04-15 19:13:45.739 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_32
  1305. 2026-04-15 19:13:45.740 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_36
  1306. 2026-04-15 19:13:45.741 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_25
  1307. 2026-04-15 19:13:45.744 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_31
  1308. 2026-04-15 19:13:45.745 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_28
  1309. 2026-04-15 19:13:45.754 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_33
  1310. 2026-04-15 19:13:45.757 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_37
  1311. 2026-04-15 19:13:45.758 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_38
  1312. 2026-04-15 19:13:45.760 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_32
  1313. 2026-04-15 19:13:45.761 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_29
  1314. 2026-04-15 19:13:45.763 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_34
  1315. 2026-04-15 19:13:45.769 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_39
  1316. 2026-04-15 19:13:45.770 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_26
  1317. 2026-04-15 19:13:45.773 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_33
  1318. 2026-04-15 19:13:45.774 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_30
  1319. 2026-04-15 19:13:45.781 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxHfsqPageUsingGET_1
  1320. 2026-04-15 19:13:45.783 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_35
  1321. 2026-04-15 19:13:45.787 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_40
  1322. 2026-04-15 19:13:45.788 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_27
  1323. 2026-04-15 19:13:45.791 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_34
  1324. 2026-04-15 19:13:45.792 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_31
  1325. 2026-04-15 19:13:45.799 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxLwsqPageUsingGET_1
  1326. 2026-04-15 19:13:45.801 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_36
  1327. 2026-04-15 19:13:45.807 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_41
  1328. 2026-04-15 19:13:45.808 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_28
  1329. 2026-04-15 19:13:45.811 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_35
  1330. 2026-04-15 19:13:45.812 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_32
  1331. 2026-04-15 19:13:45.818 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxLxdhsqPageUsingGET_1
  1332. 2026-04-15 19:13:45.820 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_37
  1333. 2026-04-15 19:13:45.826 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_42
  1334. 2026-04-15 19:13:45.827 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_29
  1335. 2026-04-15 19:13:45.832 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_36
  1336. 2026-04-15 19:13:45.833 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_33
  1337. 2026-04-15 19:13:45.844 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_38
  1338. 2026-04-15 19:13:45.849 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_43
  1339. 2026-04-15 19:13:45.850 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_30
  1340. 2026-04-15 19:13:45.853 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_37
  1341. 2026-04-15 19:13:45.854 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_34
  1342. 2026-04-15 19:13:45.860 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxDbsqPageUsingGET_2
  1343. 2026-04-15 19:13:45.868 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_1
  1344. 2026-04-15 19:13:45.870 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_39
  1345. 2026-04-15 19:13:45.874 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_44
  1346. 2026-04-15 19:13:45.874 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_31
  1347. 2026-04-15 19:13:45.879 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_38
  1348. 2026-04-15 19:13:45.887 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_35
  1349. 2026-04-15 19:13:45.888 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_40
  1350. 2026-04-15 19:13:45.891 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_45
  1351. 2026-04-15 19:13:45.892 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_32
  1352. 2026-04-15 19:13:45.895 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_39
  1353. 2026-04-15 19:13:45.896 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_36
  1354. 2026-04-15 19:13:45.897 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_41
  1355. 2026-04-15 19:13:45.900 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_46
  1356. 2026-04-15 19:13:45.900 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_33
  1357. 2026-04-15 19:13:45.904 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_40
  1358. 2026-04-15 19:13:45.905 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_37
  1359. 2026-04-15 19:13:45.906 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_42
  1360. 2026-04-15 19:13:45.909 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_47
  1361. 2026-04-15 19:13:45.910 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_48
  1362. 2026-04-15 19:13:45.913 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_41
  1363. 2026-04-15 19:13:45.914 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_38
  1364. 2026-04-15 19:13:45.916 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_43
  1365. 2026-04-15 19:13:45.920 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_49
  1366. 2026-04-15 19:13:45.921 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_50
  1367. 2026-04-15 19:13:45.923 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_42
  1368. 2026-04-15 19:13:45.924 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_39
  1369. 2026-04-15 19:13:45.926 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_44
  1370. 2026-04-15 19:13:45.931 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_51
  1371. 2026-04-15 19:13:45.932 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_34
  1372. 2026-04-15 19:13:45.935 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_43
  1373. 2026-04-15 19:13:45.936 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_40
  1374. 2026-04-15 19:13:45.942 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxWzjbsqPageUsingGET_1
  1375. 2026-04-15 19:13:45.944 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_45
  1376. 2026-04-15 19:13:45.949 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_52
  1377. 2026-04-15 19:13:45.950 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_35
  1378. 2026-04-15 19:13:45.953 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_44
  1379. 2026-04-15 19:13:45.954 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_41
  1380. 2026-04-15 19:13:45.959 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxXbsqPageUsingGET_1
  1381. 2026-04-15 19:13:45.961 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_46
  1382. 2026-04-15 19:13:45.966 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_53
  1383. 2026-04-15 19:13:45.967 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_36
  1384. 2026-04-15 19:13:45.971 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_45
  1385. 2026-04-15 19:13:45.972 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_42
  1386. 2026-04-15 19:13:45.978 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxXhsqPageUsingGET_1
  1387. 2026-04-15 19:13:45.979 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPOST_2
  1388. 2026-04-15 19:13:45.980 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_47
  1389. 2026-04-15 19:13:45.983 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_54
  1390. 2026-04-15 19:13:45.984 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_37
  1391. 2026-04-15 19:13:45.986 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_46
  1392. 2026-04-15 19:13:45.987 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_43
  1393. 2026-04-15 19:13:45.989 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_48
  1394. 2026-04-15 19:13:45.993 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_55
  1395. 2026-04-15 19:13:45.994 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_38
  1396. 2026-04-15 19:13:45.996 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_47
  1397. 2026-04-15 19:13:45.997 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_44
  1398. 2026-04-15 19:13:46.003 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_9
  1399. 2026-04-15 19:13:46.005 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_56
  1400. 2026-04-15 19:13:46.005 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_39
  1401. 2026-04-15 19:13:46.008 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_48
  1402. 2026-04-15 19:13:46.009 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_57
  1403. 2026-04-15 19:13:46.010 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_40
  1404. 2026-04-15 19:13:46.012 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_49
  1405. 2026-04-15 19:13:46.017 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_10
  1406. 2026-04-15 19:13:46.019 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_49
  1407. 2026-04-15 19:13:46.023 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_58
  1408. 2026-04-15 19:13:46.024 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_41
  1409. 2026-04-15 19:13:46.027 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_50
  1410. 2026-04-15 19:13:46.030 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_45
  1411. 2026-04-15 19:13:46.031 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_2
  1412. 2026-04-15 19:13:46.048 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_51
  1413. 2026-04-15 19:13:46.056 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_50
  1414. 2026-04-15 19:13:46.064 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_11
  1415. 2026-04-15 19:13:46.073 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_1
  1416. 2026-04-15 19:13:46.082 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_51
  1417. 2026-04-15 19:13:46.082 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_42
  1418. 2026-04-15 19:13:46.101 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_52
  1419. 2026-04-15 19:13:46.106 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_59
  1420. 2026-04-15 19:13:46.107 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_43
  1421. 2026-04-15 19:13:46.109 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_52
  1422. 2026-04-15 19:13:46.110 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_46
  1423. 2026-04-15 19:13:46.112 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_53
  1424. 2026-04-15 19:13:46.115 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_60
  1425. 2026-04-15 19:13:46.116 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_44
  1426. 2026-04-15 19:13:46.121 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_53
  1427. 2026-04-15 19:13:46.131 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_47
  1428. 2026-04-15 19:13:46.133 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_3
  1429. 2026-04-15 19:13:46.136 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_61
  1430. 2026-04-15 19:13:46.137 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_45
  1431. 2026-04-15 19:13:46.143 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_54
  1432. 2026-04-15 19:13:46.151 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_12
  1433. 2026-04-15 19:13:46.154 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_62
  1434. 2026-04-15 19:13:46.155 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_46
  1435. 2026-04-15 19:13:46.157 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_55
  1436. 2026-04-15 19:13:46.162 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_13
  1437. 2026-04-15 19:13:46.165 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_54
  1438. 2026-04-15 19:13:46.172 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_63
  1439. 2026-04-15 19:13:46.174 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_47
  1440. 2026-04-15 19:13:46.179 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_56
  1441. 2026-04-15 19:13:46.184 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_48
  1442. 2026-04-15 19:13:46.185 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_4
  1443. 2026-04-15 19:13:46.201 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getDaCustomerPageUsingGET_1
  1444. 2026-04-15 19:13:46.226 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_1
  1445. 2026-04-15 19:13:46.236 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_14
  1446. 2026-04-15 19:13:46.257 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_55
  1447. 2026-04-15 19:13:46.293 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: delByIdUsingDELETE_1
  1448. 2026-04-15 19:13:46.295 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: delByIdsUsingDELETE_1
  1449. 2026-04-15 19:13:46.296 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: disableUsingPUT_1
  1450. 2026-04-15 19:13:46.297 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: enableUsingPUT_1
  1451. 2026-04-15 19:13:46.299 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: importExcelUsingPOST_1
  1452. 2026-04-15 19:13:46.300 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_2
  1453. 2026-04-15 19:13:46.305 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_3
  1454. 2026-04-15 19:13:46.320 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_5
  1455. 2026-04-15 19:13:46.322 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_6
  1456. 2026-04-15 19:13:46.323 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_7
  1457. 2026-04-15 19:13:46.326 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_56
  1458. 2026-04-15 19:13:46.334 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_48
  1459. 2026-04-15 19:13:46.352 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: addUsingPOST_1
  1460. 2026-04-15 19:13:46.358 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_57
  1461. 2026-04-15 19:13:46.364 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_64
  1462. 2026-04-15 19:13:46.365 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_49
  1463. 2026-04-15 19:13:46.367 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_57
  1464. 2026-04-15 19:13:46.370 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: save_gdUsingPOST_1
  1465. 2026-04-15 19:13:46.378 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_49
  1466. 2026-04-15 19:13:46.389 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_58
  1467. 2026-04-15 19:13:46.393 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_65
  1468. 2026-04-15 19:13:46.394 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_50
  1469. 2026-04-15 19:13:46.397 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_58
  1470. 2026-04-15 19:13:46.398 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_50
  1471. 2026-04-15 19:13:46.401 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_59
  1472. 2026-04-15 19:13:46.405 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_66
  1473. 2026-04-15 19:13:46.406 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_51
  1474. 2026-04-15 19:13:46.409 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_59
  1475. 2026-04-15 19:13:46.411 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: save_gdUsingPOST_2
  1476. 2026-04-15 19:13:46.415 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_51
  1477. 2026-04-15 19:13:46.416 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_8
  1478. 2026-04-15 19:13:46.425 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_9
  1479. 2026-04-15 19:13:46.437 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_60
  1480. 2026-04-15 19:13:46.479 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_2
  1481. 2026-04-15 19:13:46.483 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_61
  1482. 2026-04-15 19:13:46.487 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_15
  1483. 2026-04-15 19:13:46.516 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_4
  1484. 2026-04-15 19:13:46.521 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_10
  1485. 2026-04-15 19:13:46.528 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_62
  1486. 2026-04-15 19:13:46.534 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_67
  1487. 2026-04-15 19:13:46.537 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_52
  1488. 2026-04-15 19:13:46.544 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_60
  1489. 2026-04-15 19:13:46.546 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_52
  1490. 2026-04-15 19:13:46.595 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_53
  1491. 2026-04-15 19:13:46.677 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_16
  1492. 2026-04-15 19:13:46.731 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getListUsingGET_1
  1493. 2026-04-15 19:13:46.784 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_63
  1494. 2026-04-15 19:13:46.856 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: statUsingGET_1
  1495. 2026-04-15 19:13:46.954 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_11
  1496. 2026-04-15 19:13:46.974 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_64
  1497. 2026-04-15 19:13:47.013 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_68
  1498. 2026-04-15 19:13:47.019 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_53
  1499. 2026-04-15 19:13:47.131 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_61
  1500. 2026-04-15 19:13:47.141 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_54
  1501. 2026-04-15 19:13:47.149 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_65
  1502. 2026-04-15 19:13:47.164 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_62
  1503. 2026-04-15 19:13:47.172 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_55
  1504. 2026-04-15 19:13:47.201 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_12
  1505. 2026-04-15 19:13:47.324 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_63
  1506. 2026-04-15 19:13:47.411 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_17
  1507. 2026-04-15 19:13:47.474 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: monthlyStatUsingGET_1
  1508. 2026-04-15 19:13:47.483 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: monthlyStatSummaryUsingGET_1
  1509. 2026-04-15 19:13:47.499 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getListUsingGET_2
  1510. 2026-04-15 19:13:47.743 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_66
  1511. 2026-04-15 19:13:47.769 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageListUsingGET_1
  1512. 2026-04-15 19:13:47.771 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: statUsingGET_2
  1513. 2026-04-15 19:13:47.796 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_13
  1514. 2026-04-15 19:13:47.797 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_14
  1515. 2026-04-15 19:13:47.830 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_64
  1516. 2026-04-15 19:13:47.837 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_67
  1517. 2026-04-15 19:13:47.876 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getYyWyjtzPageUsingGET_1
  1518. 2026-04-15 19:13:47.878 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_15
  1519. 2026-04-15 19:13:47.881 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_5
  1520. 2026-04-15 19:13:47.889 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_18
  1521. 2026-04-15 19:13:47.890 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_16
  1522. 2026-04-15 19:13:47.902 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_19
  1523. 2026-04-15 19:13:47.904 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_17
  1524. 2026-04-15 19:13:47.952 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_20
  1525. 2026-04-15 19:13:47.953 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_18
  1526. 2026-04-15 19:13:47.957 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_68
  1527. 2026-04-15 19:13:47.966 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_69
  1528. 2026-04-15 19:13:47.968 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_54
  1529. 2026-04-15 19:13:47.976 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_65
  1530. 2026-04-15 19:13:47.979 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_56
  1531. 2026-04-15 19:13:47.982 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_69
  1532. 2026-04-15 19:13:47.984 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_70
  1533. 2026-04-15 19:13:47.986 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_55
  1534. 2026-04-15 19:13:47.993 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_66
  1535. 2026-04-15 19:13:47.996 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_57
  1536. 2026-04-15 19:13:47.999 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_21
  1537. 2026-04-15 19:13:48.001 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_3
  1538. 2026-04-15 19:13:48.007 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_67
  1539. 2026-04-15 19:13:48.017 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_22
  1540. 2026-04-15 19:13:48.059 [main] INFO io.undertow - starting server: Undertow - 2.0.31.Final
  1541. 2026-04-15 19:13:48.068 [main] INFO org.xnio - XNIO version 3.3.8.Final
  1542. 2026-04-15 19:13:48.075 [main] INFO org.xnio.nio - XNIO NIO Implementation Version 3.3.8.Final
  1543. 2026-04-15 19:13:48.124 [main] INFO o.s.b.w.e.u.UndertowServletWebServer - Undertow started on port(s) 10506 (http) with context path ''
  1544. 2026-04-15 19:13:48.165 [main] INFO c.a.c.n.r.NacosServiceRegistry - nacos registry, DEFAULT_GROUP collect-fees-api 192.168.200.104:10506 register finished
  1545. 2026-04-15 19:13:48.528 [main] INFO com.tofly.feesapi.FeesApiApplication - Started FeesApiApplication in 39.93 seconds (JVM running for 41.158)
  1546. 2026-04-15 19:13:49.547 [RMI TCP Connection(13)-192.168.200.104] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  1547. 2026-04-15 19:13:49.547 [RMI TCP Connection(13)-192.168.200.104] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  1548. 2026-04-15 19:13:49.598 [RMI TCP Connection(13)-192.168.200.104] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 51 ms
  1549. 2026-04-15 19:13:53.836 [XNIO-1 task-1] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/api/yhgl/yhkhjbxx/page2/getPage2】请求开始==================
  1550. 2026-04-15 19:13:53.987 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.getPage2_mpCount - ==> Preparing: SELECT COUNT(*) AS total FROM yh_khjbxx a WHERE 1 = 1 AND a.ssgs = ? AND (a.khbm LIKE 'D%' OR a.yhxm LIKE '%D%' OR LOWER(a.pyjm) LIKE LOWER('%D%')) AND a.ZHBZ = '1' AND a.dxh = ? AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?)
  1551. 2026-04-15 19:13:54.019 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.getPage2_mpCount - ==> Parameters: 1(String), 1(Integer), 10753(String)
  1552. 2026-04-15 19:13:54.099 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.getPage2_mpCount - <== Total: 1
  1553. 2026-04-15 19:13:54.129 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.getPage2 - ==> Preparing: SELECT * FROM ( SELECT TMP.*, ROWNUM ROW_ID FROM ( SELECT a.yhbh, a.ykhbh, a.yhxm, a.yhdz, a.lxdh, a.ssgs, a.sscbpq, a.sscbb, a.xb, a.sj, a.zzdh, a.gzdw, a.bgdh, a.dzyx, a.zjlb, a.zjhm, a.sqrq, a.jdrq, a.yhzt, a.rks, a.hzgx, a.zsjb, a.tsbz, a.tsrq, a.htqd, a.htqdrq, a.htbh, a.bz, a.bz1, a.bz_gcbh, a.bz_pcxlh, a.czrybm, a.czryxm, a.czsj, a.psfz, a.pht, a.pgszz, a.pyyzz, a.pyxzj, a.xydj, a.zw, a.jdrybm, a.jdryxm, a.jdpcxlh, a.sfqz, a.cbryxm, a.xh, a.ssregion, a.xgrybm, a.jtzqljl, a.fplx, (CASE WHEN a.fplx = '1' THEN '普票' WHEN a.fplx = '2' THEN '专票' ELSE '' END) fplxmc, a.fp_name, a.fp_nsrsbh, a.fp_dz, a.fp_lxdh, a.fp_bankname, a.fp_bankcode, a.fp_bz, a.fffs, h.name AS fffsmc, a.khlb, a.pyjm, a.yljl, g.mc AS ssgsmc, e.cbpqmc AS sscbpqmc, f.cbbmc AS sscbbmc, d.name AS sblbmc, b.sbqs, b.sbbh, b.sblb, b.sbsccj, b.sbxh, b.sbkj, b.sblc, b.jddj, b.cbpl, b.bjwz, b.sbccrq, c.name || (SELECT '|' || name FROM bm_sj WHERE code = b.sjbm1) || (SELECT '|' || name FROM bm_sj WHERE code = b.sjbm2) sjmc, k.scds, k.bcds, k.cbxh, nvl(j.yfje, 0) yfje, nvl(j.kjje, 0) kjje, nvl(j.syje, 0) syje, nvl(j.nbsyje, 0) nbsyje, a.khbm, a.ysdz, a.wybz FROM yh_khjbxx a LEFT JOIN yh_cbkxx b ON a.yhbh = b.yhbh AND b.cbkh = '1' LEFT JOIN bm_sj c ON b.sjbm = c.code LEFT JOIN bm_sblb d ON b.sblb = d.code LEFT JOIN bm_cbpq e ON a.sscbpq = e.cbpqbm LEFT JOIN bm_cbb f ON a.sscbb = f.cbbbm LEFT JOIN bm_gs g ON a.ssgs = g.bm LEFT JOIN bm_fffs h ON a.fffs = h.code LEFT JOIN yy_cblr k ON a.yhbh = k.yhbh AND b.cbkh = k.cbkh LEFT JOIN yy_zjzh j ON a.yhbh = j.yhbh WHERE 1 = 1 AND a.ssgs = ? AND (a.khbm LIKE 'D%' OR a.yhxm LIKE '%D%' OR LOWER(a.pyjm) LIKE LOWER('%D%')) AND a.ZHBZ = '1' AND a.dxh = ? AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?) ORDER BY a.yhbh ASC, a.yhbh ASC ) TMP WHERE ROWNUM <=?) WHERE ROW_ID > ?
  1554. 2026-04-15 19:13:54.130 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.getPage2 - ==> Parameters: 1(String), 1(Integer), 10753(String), 20(Long), 0(Long)
  1555. 2026-04-15 19:13:54.395 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.getPage2 - <== Total: 20
  1556. 2026-04-15 19:13:54.397 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  1557. 2026-04-15 19:13:54.397 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00000101(String)
  1558. 2026-04-15 19:13:54.420 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  1559. 2026-04-15 19:13:54.421 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  1560. 2026-04-15 19:13:54.421 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00000101(String)
  1561. 2026-04-15 19:13:54.445 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  1562. 2026-04-15 19:13:54.445 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  1563. 2026-04-15 19:13:54.446 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00000201(String)
  1564. 2026-04-15 19:13:54.467 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  1565. 2026-04-15 19:13:54.468 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  1566. 2026-04-15 19:13:54.468 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00000201(String)
  1567. 2026-04-15 19:13:54.490 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  1568. 2026-04-15 19:13:54.490 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  1569. 2026-04-15 19:13:54.490 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00000301(String)
  1570. 2026-04-15 19:13:54.511 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  1571. 2026-04-15 19:13:54.512 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  1572. 2026-04-15 19:13:54.512 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00000301(String)
  1573. 2026-04-15 19:13:54.538 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  1574. 2026-04-15 19:13:54.539 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  1575. 2026-04-15 19:13:54.539 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00000401(String)
  1576. 2026-04-15 19:13:54.561 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  1577. 2026-04-15 19:13:54.561 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  1578. 2026-04-15 19:13:54.561 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00000401(String)
  1579. 2026-04-15 19:13:54.584 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  1580. 2026-04-15 19:13:54.585 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  1581. 2026-04-15 19:13:54.585 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00000601(String)
  1582. 2026-04-15 19:13:54.606 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  1583. 2026-04-15 19:13:54.607 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  1584. 2026-04-15 19:13:54.607 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00000601(String)
  1585. 2026-04-15 19:13:54.630 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  1586. 2026-04-15 19:13:54.631 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  1587. 2026-04-15 19:13:54.631 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00000701(String)
  1588. 2026-04-15 19:13:54.654 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  1589. 2026-04-15 19:13:54.654 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  1590. 2026-04-15 19:13:54.656 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00000701(String)
  1591. 2026-04-15 19:13:54.680 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  1592. 2026-04-15 19:13:54.681 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  1593. 2026-04-15 19:13:54.681 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00000801(String)
  1594. 2026-04-15 19:13:54.703 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  1595. 2026-04-15 19:13:54.704 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  1596. 2026-04-15 19:13:54.704 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00000801(String)
  1597. 2026-04-15 19:13:54.728 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  1598. 2026-04-15 19:13:54.730 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  1599. 2026-04-15 19:13:54.730 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00000901(String)
  1600. 2026-04-15 19:13:54.752 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  1601. 2026-04-15 19:13:54.753 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  1602. 2026-04-15 19:13:54.753 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00000901(String)
  1603. 2026-04-15 19:13:54.775 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  1604. 2026-04-15 19:13:54.776 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  1605. 2026-04-15 19:13:54.776 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00001001(String)
  1606. 2026-04-15 19:13:54.797 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  1607. 2026-04-15 19:13:54.798 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  1608. 2026-04-15 19:13:54.798 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00001001(String)
  1609. 2026-04-15 19:13:54.820 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  1610. 2026-04-15 19:13:54.821 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  1611. 2026-04-15 19:13:54.821 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00001101(String)
  1612. 2026-04-15 19:13:54.843 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  1613. 2026-04-15 19:13:54.844 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  1614. 2026-04-15 19:13:54.844 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00001101(String)
  1615. 2026-04-15 19:13:54.867 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  1616. 2026-04-15 19:13:54.868 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  1617. 2026-04-15 19:13:54.868 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00001301(String)
  1618. 2026-04-15 19:13:54.890 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  1619. 2026-04-15 19:13:54.891 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  1620. 2026-04-15 19:13:54.891 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00001301(String)
  1621. 2026-04-15 19:13:54.918 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  1622. 2026-04-15 19:13:54.919 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  1623. 2026-04-15 19:13:54.919 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00001401(String)
  1624. 2026-04-15 19:13:54.941 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  1625. 2026-04-15 19:13:54.941 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  1626. 2026-04-15 19:13:54.941 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00001401(String)
  1627. 2026-04-15 19:13:54.964 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  1628. 2026-04-15 19:13:54.965 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  1629. 2026-04-15 19:13:54.965 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00001501(String)
  1630. 2026-04-15 19:13:54.986 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  1631. 2026-04-15 19:13:54.987 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  1632. 2026-04-15 19:13:54.988 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00001501(String)
  1633. 2026-04-15 19:13:55.009 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  1634. 2026-04-15 19:13:55.009 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  1635. 2026-04-15 19:13:55.010 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00001701(String)
  1636. 2026-04-15 19:13:55.031 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  1637. 2026-04-15 19:13:55.031 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  1638. 2026-04-15 19:13:55.031 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00001701(String)
  1639. 2026-04-15 19:13:55.053 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  1640. 2026-04-15 19:13:55.053 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  1641. 2026-04-15 19:13:55.053 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00001901(String)
  1642. 2026-04-15 19:13:55.074 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  1643. 2026-04-15 19:13:55.076 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  1644. 2026-04-15 19:13:55.076 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00001901(String)
  1645. 2026-04-15 19:13:55.097 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  1646. 2026-04-15 19:13:55.098 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  1647. 2026-04-15 19:13:55.099 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00002001(String)
  1648. 2026-04-15 19:13:55.121 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  1649. 2026-04-15 19:13:55.123 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  1650. 2026-04-15 19:13:55.123 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00002001(String)
  1651. 2026-04-15 19:13:55.146 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  1652. 2026-04-15 19:13:55.147 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  1653. 2026-04-15 19:13:55.147 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00002101(String)
  1654. 2026-04-15 19:13:55.168 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  1655. 2026-04-15 19:13:55.168 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  1656. 2026-04-15 19:13:55.168 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00002101(String)
  1657. 2026-04-15 19:13:55.190 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  1658. 2026-04-15 19:13:55.191 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  1659. 2026-04-15 19:13:55.191 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00002301(String)
  1660. 2026-04-15 19:13:55.214 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  1661. 2026-04-15 19:13:55.215 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  1662. 2026-04-15 19:13:55.215 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00002301(String)
  1663. 2026-04-15 19:13:55.242 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  1664. 2026-04-15 19:13:55.244 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  1665. 2026-04-15 19:13:55.244 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00002401(String)
  1666. 2026-04-15 19:13:55.267 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  1667. 2026-04-15 19:13:55.268 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  1668. 2026-04-15 19:13:55.268 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00002401(String)
  1669. 2026-04-15 19:13:55.299 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  1670. 2026-04-15 19:13:55.300 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  1671. 2026-04-15 19:13:55.300 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00002501(String)
  1672. 2026-04-15 19:13:55.325 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  1673. 2026-04-15 19:13:55.326 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  1674. 2026-04-15 19:13:55.326 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00002501(String)
  1675. 2026-04-15 19:13:55.357 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  1676. 2026-04-15 19:13:55.358 [XNIO-1 task-1] INFO c.t.feesapi.common.LogRecordAspect - =================【getPage2】请求结束==================
  1677. 2026-04-15 19:14:19.186 [XNIO-1 task-2] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/api/yhgl/yhkhjbxx/page2/getPage2】请求开始==================
  1678. 2026-04-15 19:14:19.195 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.getPage2_mpCount - ==> Preparing: SELECT COUNT(*) AS total FROM yh_khjbxx a WHERE 1 = 1 AND a.ssgs = ? AND (a.khbm LIKE 'D%' OR a.yhxm LIKE '%D%' OR LOWER(a.pyjm) LIKE LOWER('%D%')) AND a.ZHBZ = '1' AND a.dxh = ? AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?)
  1679. 2026-04-15 19:14:19.195 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.getPage2_mpCount - ==> Parameters: 1(String), 1(Integer), 10753(String)
  1680. 2026-04-15 19:14:19.255 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.getPage2_mpCount - <== Total: 1
  1681. 2026-04-15 19:14:19.263 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.getPage2 - ==> Preparing: SELECT * FROM ( SELECT TMP.*, ROWNUM ROW_ID FROM ( SELECT a.yhbh, a.ykhbh, a.yhxm, a.yhdz, a.lxdh, a.ssgs, a.sscbpq, a.sscbb, a.xb, a.sj, a.zzdh, a.gzdw, a.bgdh, a.dzyx, a.zjlb, a.zjhm, a.sqrq, a.jdrq, a.yhzt, a.rks, a.hzgx, a.zsjb, a.tsbz, a.tsrq, a.htqd, a.htqdrq, a.htbh, a.bz, a.bz1, a.bz_gcbh, a.bz_pcxlh, a.czrybm, a.czryxm, a.czsj, a.psfz, a.pht, a.pgszz, a.pyyzz, a.pyxzj, a.xydj, a.zw, a.jdrybm, a.jdryxm, a.jdpcxlh, a.sfqz, a.cbryxm, a.xh, a.ssregion, a.xgrybm, a.jtzqljl, a.fplx, (CASE WHEN a.fplx = '1' THEN '普票' WHEN a.fplx = '2' THEN '专票' ELSE '' END) fplxmc, a.fp_name, a.fp_nsrsbh, a.fp_dz, a.fp_lxdh, a.fp_bankname, a.fp_bankcode, a.fp_bz, a.fffs, h.name AS fffsmc, a.khlb, a.pyjm, a.yljl, g.mc AS ssgsmc, e.cbpqmc AS sscbpqmc, f.cbbmc AS sscbbmc, d.name AS sblbmc, b.sbqs, b.sbbh, b.sblb, b.sbsccj, b.sbxh, b.sbkj, b.sblc, b.jddj, b.cbpl, b.bjwz, b.sbccrq, c.name || (SELECT '|' || name FROM bm_sj WHERE code = b.sjbm1) || (SELECT '|' || name FROM bm_sj WHERE code = b.sjbm2) sjmc, k.scds, k.bcds, k.cbxh, nvl(j.yfje, 0) yfje, nvl(j.kjje, 0) kjje, nvl(j.syje, 0) syje, nvl(j.nbsyje, 0) nbsyje, a.khbm, a.ysdz, a.wybz FROM yh_khjbxx a LEFT JOIN yh_cbkxx b ON a.yhbh = b.yhbh AND b.cbkh = '1' LEFT JOIN bm_sj c ON b.sjbm = c.code LEFT JOIN bm_sblb d ON b.sblb = d.code LEFT JOIN bm_cbpq e ON a.sscbpq = e.cbpqbm LEFT JOIN bm_cbb f ON a.sscbb = f.cbbbm LEFT JOIN bm_gs g ON a.ssgs = g.bm LEFT JOIN bm_fffs h ON a.fffs = h.code LEFT JOIN yy_cblr k ON a.yhbh = k.yhbh AND b.cbkh = k.cbkh LEFT JOIN yy_zjzh j ON a.yhbh = j.yhbh WHERE 1 = 1 AND a.ssgs = ? AND (a.khbm LIKE 'D%' OR a.yhxm LIKE '%D%' OR LOWER(a.pyjm) LIKE LOWER('%D%')) AND a.ZHBZ = '1' AND a.dxh = ? AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?) ORDER BY a.yhbh ASC, a.yhbh ASC ) TMP WHERE ROWNUM <=?) WHERE ROW_ID > ?
  1682. 2026-04-15 19:14:19.263 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.getPage2 - ==> Parameters: 1(String), 1(Integer), 10753(String), 20(Long), 0(Long)
  1683. 2026-04-15 19:14:19.396 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.getPage2 - <== Total: 20
  1684. 2026-04-15 19:14:19.396 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  1685. 2026-04-15 19:14:19.397 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00000101(String)
  1686. 2026-04-15 19:14:19.421 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  1687. 2026-04-15 19:14:19.422 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  1688. 2026-04-15 19:14:19.422 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00000101(String)
  1689. 2026-04-15 19:14:19.445 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  1690. 2026-04-15 19:14:19.445 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  1691. 2026-04-15 19:14:19.445 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00000201(String)
  1692. 2026-04-15 19:14:19.467 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  1693. 2026-04-15 19:14:19.468 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  1694. 2026-04-15 19:14:19.468 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00000201(String)
  1695. 2026-04-15 19:14:19.490 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  1696. 2026-04-15 19:14:19.491 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  1697. 2026-04-15 19:14:19.491 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00000301(String)
  1698. 2026-04-15 19:14:19.513 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  1699. 2026-04-15 19:14:19.514 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  1700. 2026-04-15 19:14:19.514 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00000301(String)
  1701. 2026-04-15 19:14:19.536 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  1702. 2026-04-15 19:14:19.536 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  1703. 2026-04-15 19:14:19.537 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00000401(String)
  1704. 2026-04-15 19:14:19.559 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  1705. 2026-04-15 19:14:19.559 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  1706. 2026-04-15 19:14:19.559 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00000401(String)
  1707. 2026-04-15 19:14:19.580 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  1708. 2026-04-15 19:14:19.581 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  1709. 2026-04-15 19:14:19.581 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00000601(String)
  1710. 2026-04-15 19:14:19.602 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  1711. 2026-04-15 19:14:19.603 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  1712. 2026-04-15 19:14:19.603 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00000601(String)
  1713. 2026-04-15 19:14:19.625 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  1714. 2026-04-15 19:14:19.626 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  1715. 2026-04-15 19:14:19.626 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00000701(String)
  1716. 2026-04-15 19:14:19.647 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  1717. 2026-04-15 19:14:19.648 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  1718. 2026-04-15 19:14:19.648 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00000701(String)
  1719. 2026-04-15 19:14:19.670 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  1720. 2026-04-15 19:14:19.671 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  1721. 2026-04-15 19:14:19.671 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00000801(String)
  1722. 2026-04-15 19:14:19.693 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  1723. 2026-04-15 19:14:19.694 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  1724. 2026-04-15 19:14:19.694 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00000801(String)
  1725. 2026-04-15 19:14:19.717 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  1726. 2026-04-15 19:14:19.718 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  1727. 2026-04-15 19:14:19.718 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00000901(String)
  1728. 2026-04-15 19:14:19.742 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  1729. 2026-04-15 19:14:19.743 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  1730. 2026-04-15 19:14:19.743 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00000901(String)
  1731. 2026-04-15 19:14:19.767 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  1732. 2026-04-15 19:14:19.768 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  1733. 2026-04-15 19:14:19.768 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00001001(String)
  1734. 2026-04-15 19:14:19.790 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  1735. 2026-04-15 19:14:19.791 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  1736. 2026-04-15 19:14:19.791 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00001001(String)
  1737. 2026-04-15 19:14:19.812 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  1738. 2026-04-15 19:14:19.814 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  1739. 2026-04-15 19:14:19.814 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00001101(String)
  1740. 2026-04-15 19:14:19.836 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  1741. 2026-04-15 19:14:19.836 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  1742. 2026-04-15 19:14:19.836 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00001101(String)
  1743. 2026-04-15 19:14:19.858 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  1744. 2026-04-15 19:14:19.858 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  1745. 2026-04-15 19:14:19.859 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00001301(String)
  1746. 2026-04-15 19:14:19.881 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  1747. 2026-04-15 19:14:19.882 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  1748. 2026-04-15 19:14:19.882 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00001301(String)
  1749. 2026-04-15 19:14:19.903 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  1750. 2026-04-15 19:14:19.904 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  1751. 2026-04-15 19:14:19.904 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00001401(String)
  1752. 2026-04-15 19:14:19.924 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  1753. 2026-04-15 19:14:19.926 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  1754. 2026-04-15 19:14:19.926 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00001401(String)
  1755. 2026-04-15 19:14:19.948 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  1756. 2026-04-15 19:14:19.949 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  1757. 2026-04-15 19:14:19.949 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00001501(String)
  1758. 2026-04-15 19:14:19.970 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  1759. 2026-04-15 19:14:19.971 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  1760. 2026-04-15 19:14:19.971 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00001501(String)
  1761. 2026-04-15 19:14:19.992 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  1762. 2026-04-15 19:14:19.992 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  1763. 2026-04-15 19:14:19.992 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00001701(String)
  1764. 2026-04-15 19:14:20.014 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  1765. 2026-04-15 19:14:20.014 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  1766. 2026-04-15 19:14:20.014 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00001701(String)
  1767. 2026-04-15 19:14:20.036 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  1768. 2026-04-15 19:14:20.036 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  1769. 2026-04-15 19:14:20.036 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00001901(String)
  1770. 2026-04-15 19:14:20.058 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  1771. 2026-04-15 19:14:20.058 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  1772. 2026-04-15 19:14:20.058 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00001901(String)
  1773. 2026-04-15 19:14:20.081 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  1774. 2026-04-15 19:14:20.081 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  1775. 2026-04-15 19:14:20.081 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00002001(String)
  1776. 2026-04-15 19:14:20.106 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  1777. 2026-04-15 19:14:20.106 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  1778. 2026-04-15 19:14:20.107 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00002001(String)
  1779. 2026-04-15 19:14:20.128 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  1780. 2026-04-15 19:14:20.129 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  1781. 2026-04-15 19:14:20.129 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00002101(String)
  1782. 2026-04-15 19:14:20.151 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  1783. 2026-04-15 19:14:20.151 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  1784. 2026-04-15 19:14:20.151 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00002101(String)
  1785. 2026-04-15 19:14:20.173 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  1786. 2026-04-15 19:14:20.174 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  1787. 2026-04-15 19:14:20.174 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00002301(String)
  1788. 2026-04-15 19:14:20.195 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  1789. 2026-04-15 19:14:20.196 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  1790. 2026-04-15 19:14:20.197 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00002301(String)
  1791. 2026-04-15 19:14:20.218 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  1792. 2026-04-15 19:14:20.219 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  1793. 2026-04-15 19:14:20.219 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00002401(String)
  1794. 2026-04-15 19:14:20.241 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  1795. 2026-04-15 19:14:20.242 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  1796. 2026-04-15 19:14:20.242 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00002401(String)
  1797. 2026-04-15 19:14:20.266 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  1798. 2026-04-15 19:14:20.267 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  1799. 2026-04-15 19:14:20.267 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00002501(String)
  1800. 2026-04-15 19:14:20.293 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  1801. 2026-04-15 19:14:20.294 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  1802. 2026-04-15 19:14:20.294 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00002501(String)
  1803. 2026-04-15 19:14:20.317 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  1804. 2026-04-15 19:14:20.317 [XNIO-1 task-2] INFO c.t.feesapi.common.LogRecordAspect - =================【getPage2】请求结束==================
  1805. 2026-04-15 19:14:45.689 [XNIO-1 task-3] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/api/yhgl/yhkhjbxx/page2/getPage2】请求开始==================
  1806. 2026-04-15 19:14:45.696 [XNIO-1 task-3] DEBUG c.t.f.y.m.Y.getPage2_mpCount - ==> Preparing: SELECT COUNT(*) AS total FROM yh_khjbxx a WHERE 1 = 1 AND a.ssgs = ? AND (a.khbm LIKE 'D000451%' OR a.yhxm LIKE '%D000451%' OR LOWER(a.pyjm) LIKE LOWER('%D000451%')) AND a.ZHBZ = '1' AND a.dxh = ? AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?)
  1807. 2026-04-15 19:14:45.696 [XNIO-1 task-3] DEBUG c.t.f.y.m.Y.getPage2_mpCount - ==> Parameters: 1(String), 1(Integer), 10753(String)
  1808. 2026-04-15 19:14:45.759 [XNIO-1 task-3] DEBUG c.t.f.y.m.Y.getPage2_mpCount - <== Total: 1
  1809. 2026-04-15 19:14:45.763 [XNIO-1 task-3] DEBUG c.t.f.y.m.YhKhjbxxMapper.getPage2 - ==> Preparing: SELECT * FROM ( SELECT TMP.*, ROWNUM ROW_ID FROM ( SELECT a.yhbh, a.ykhbh, a.yhxm, a.yhdz, a.lxdh, a.ssgs, a.sscbpq, a.sscbb, a.xb, a.sj, a.zzdh, a.gzdw, a.bgdh, a.dzyx, a.zjlb, a.zjhm, a.sqrq, a.jdrq, a.yhzt, a.rks, a.hzgx, a.zsjb, a.tsbz, a.tsrq, a.htqd, a.htqdrq, a.htbh, a.bz, a.bz1, a.bz_gcbh, a.bz_pcxlh, a.czrybm, a.czryxm, a.czsj, a.psfz, a.pht, a.pgszz, a.pyyzz, a.pyxzj, a.xydj, a.zw, a.jdrybm, a.jdryxm, a.jdpcxlh, a.sfqz, a.cbryxm, a.xh, a.ssregion, a.xgrybm, a.jtzqljl, a.fplx, (CASE WHEN a.fplx = '1' THEN '普票' WHEN a.fplx = '2' THEN '专票' ELSE '' END) fplxmc, a.fp_name, a.fp_nsrsbh, a.fp_dz, a.fp_lxdh, a.fp_bankname, a.fp_bankcode, a.fp_bz, a.fffs, h.name AS fffsmc, a.khlb, a.pyjm, a.yljl, g.mc AS ssgsmc, e.cbpqmc AS sscbpqmc, f.cbbmc AS sscbbmc, d.name AS sblbmc, b.sbqs, b.sbbh, b.sblb, b.sbsccj, b.sbxh, b.sbkj, b.sblc, b.jddj, b.cbpl, b.bjwz, b.sbccrq, c.name || (SELECT '|' || name FROM bm_sj WHERE code = b.sjbm1) || (SELECT '|' || name FROM bm_sj WHERE code = b.sjbm2) sjmc, k.scds, k.bcds, k.cbxh, nvl(j.yfje, 0) yfje, nvl(j.kjje, 0) kjje, nvl(j.syje, 0) syje, nvl(j.nbsyje, 0) nbsyje, a.khbm, a.ysdz, a.wybz FROM yh_khjbxx a LEFT JOIN yh_cbkxx b ON a.yhbh = b.yhbh AND b.cbkh = '1' LEFT JOIN bm_sj c ON b.sjbm = c.code LEFT JOIN bm_sblb d ON b.sblb = d.code LEFT JOIN bm_cbpq e ON a.sscbpq = e.cbpqbm LEFT JOIN bm_cbb f ON a.sscbb = f.cbbbm LEFT JOIN bm_gs g ON a.ssgs = g.bm LEFT JOIN bm_fffs h ON a.fffs = h.code LEFT JOIN yy_cblr k ON a.yhbh = k.yhbh AND b.cbkh = k.cbkh LEFT JOIN yy_zjzh j ON a.yhbh = j.yhbh WHERE 1 = 1 AND a.ssgs = ? AND (a.khbm LIKE 'D000451%' OR a.yhxm LIKE '%D000451%' OR LOWER(a.pyjm) LIKE LOWER('%D000451%')) AND a.ZHBZ = '1' AND a.dxh = ? AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?) ORDER BY a.yhbh ASC, a.yhbh ASC ) TMP WHERE ROWNUM <=?) WHERE ROW_ID > ?
  1810. 2026-04-15 19:14:45.764 [XNIO-1 task-3] DEBUG c.t.f.y.m.YhKhjbxxMapper.getPage2 - ==> Parameters: 1(String), 1(Integer), 10753(String), 20(Long), 0(Long)
  1811. 2026-04-15 19:14:45.934 [XNIO-1 task-3] DEBUG c.t.f.y.m.YhKhjbxxMapper.getPage2 - <== Total: 1
  1812. 2026-04-15 19:14:45.935 [XNIO-1 task-3] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  1813. 2026-04-15 19:14:45.935 [XNIO-1 task-3] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00045101(String)
  1814. 2026-04-15 19:14:45.957 [XNIO-1 task-3] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  1815. 2026-04-15 19:14:45.957 [XNIO-1 task-3] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  1816. 2026-04-15 19:14:45.957 [XNIO-1 task-3] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00045101(String)
  1817. 2026-04-15 19:14:45.979 [XNIO-1 task-3] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  1818. 2026-04-15 19:14:45.980 [XNIO-1 task-3] INFO c.t.feesapi.common.LogRecordAspect - =================【getPage2】请求结束==================
  1819. 2026-04-15 19:16:31.933 [XNIO-1 task-4] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/api/yhgl/yhkhjbxx/page2/getPage2】请求开始==================
  1820. 2026-04-15 19:16:31.965 [XNIO-1 task-4] DEBUG c.t.f.y.m.Y.getPage2_mpCount - ==> Preparing: SELECT COUNT(*) AS total FROM yh_khjbxx a WHERE 1 = 1 AND a.ssgs = ? AND (a.khbm LIKE 'D000451%' OR a.yhxm LIKE '%D000451%' OR LOWER(a.pyjm) LIKE LOWER('%D000451%')) AND a.ZHBZ = '1' AND a.dxh = ? AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?)
  1821. 2026-04-15 19:16:31.965 [XNIO-1 task-4] DEBUG c.t.f.y.m.Y.getPage2_mpCount - ==> Parameters: 1(String), 1(Integer), 10753(String)
  1822. 2026-04-15 19:16:32.027 [XNIO-1 task-4] DEBUG c.t.f.y.m.Y.getPage2_mpCount - <== Total: 1
  1823. 2026-04-15 19:16:32.031 [XNIO-1 task-4] DEBUG c.t.f.y.m.YhKhjbxxMapper.getPage2 - ==> Preparing: SELECT * FROM ( SELECT TMP.*, ROWNUM ROW_ID FROM ( SELECT a.yhbh, a.ykhbh, a.yhxm, a.yhdz, a.lxdh, a.ssgs, a.sscbpq, a.sscbb, a.xb, a.sj, a.zzdh, a.gzdw, a.bgdh, a.dzyx, a.zjlb, a.zjhm, a.sqrq, a.jdrq, a.yhzt, a.rks, a.hzgx, a.zsjb, a.tsbz, a.tsrq, a.htqd, a.htqdrq, a.htbh, a.bz, a.bz1, a.bz_gcbh, a.bz_pcxlh, a.czrybm, a.czryxm, a.czsj, a.psfz, a.pht, a.pgszz, a.pyyzz, a.pyxzj, a.xydj, a.zw, a.jdrybm, a.jdryxm, a.jdpcxlh, a.sfqz, a.cbryxm, a.xh, a.ssregion, a.xgrybm, a.jtzqljl, a.fplx, (CASE WHEN a.fplx = '1' THEN '普票' WHEN a.fplx = '2' THEN '专票' ELSE '' END) fplxmc, a.fp_name, a.fp_nsrsbh, a.fp_dz, a.fp_lxdh, a.fp_bankname, a.fp_bankcode, a.fp_bz, a.fffs, h.name AS fffsmc, a.khlb, a.pyjm, a.yljl, g.mc AS ssgsmc, e.cbpqmc AS sscbpqmc, f.cbbmc AS sscbbmc, d.name AS sblbmc, b.sbqs, b.sbbh, b.sblb, b.sbsccj, b.sbxh, b.sbkj, b.sblc, b.jddj, b.cbpl, b.bjwz, b.sbccrq, c.name || (SELECT '|' || name FROM bm_sj WHERE code = b.sjbm1) || (SELECT '|' || name FROM bm_sj WHERE code = b.sjbm2) sjmc, k.scds, k.bcds, k.cbxh, nvl(j.yfje, 0) yfje, nvl(j.kjje, 0) kjje, nvl(j.syje, 0) syje, nvl(j.nbsyje, 0) nbsyje, a.khbm, a.ysdz, a.wybz FROM yh_khjbxx a LEFT JOIN yh_cbkxx b ON a.yhbh = b.yhbh AND b.cbkh = '1' LEFT JOIN bm_sj c ON b.sjbm = c.code LEFT JOIN bm_sblb d ON b.sblb = d.code LEFT JOIN bm_cbpq e ON a.sscbpq = e.cbpqbm LEFT JOIN bm_cbb f ON a.sscbb = f.cbbbm LEFT JOIN bm_gs g ON a.ssgs = g.bm LEFT JOIN bm_fffs h ON a.fffs = h.code LEFT JOIN yy_cblr k ON a.yhbh = k.yhbh AND b.cbkh = k.cbkh LEFT JOIN yy_zjzh j ON a.yhbh = j.yhbh WHERE 1 = 1 AND a.ssgs = ? AND (a.khbm LIKE 'D000451%' OR a.yhxm LIKE '%D000451%' OR LOWER(a.pyjm) LIKE LOWER('%D000451%')) AND a.ZHBZ = '1' AND a.dxh = ? AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?) ORDER BY a.yhbh ASC, a.yhbh ASC ) TMP WHERE ROWNUM <=?) WHERE ROW_ID > ?
  1824. 2026-04-15 19:16:32.032 [XNIO-1 task-4] DEBUG c.t.f.y.m.YhKhjbxxMapper.getPage2 - ==> Parameters: 1(String), 1(Integer), 10753(String), 20(Long), 0(Long)
  1825. 2026-04-15 19:16:32.098 [XNIO-1 task-4] DEBUG c.t.f.y.m.YhKhjbxxMapper.getPage2 - <== Total: 1
  1826. 2026-04-15 19:16:32.099 [XNIO-1 task-4] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  1827. 2026-04-15 19:16:32.099 [XNIO-1 task-4] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00045101(String)
  1828. 2026-04-15 19:16:32.120 [XNIO-1 task-4] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  1829. 2026-04-15 19:16:32.120 [XNIO-1 task-4] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  1830. 2026-04-15 19:16:32.120 [XNIO-1 task-4] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00045101(String)
  1831. 2026-04-15 19:16:32.142 [XNIO-1 task-4] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  1832. 2026-04-15 19:16:32.142 [XNIO-1 task-4] INFO c.t.feesapi.common.LogRecordAspect - =================【getPage2】请求结束==================
  1833. 2026-04-15 19:16:58.639 [XNIO-1 task-5] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/api/yhgl/yhkhjbxx/page2/getPage2】请求开始==================
  1834. 2026-04-15 19:16:58.645 [XNIO-1 task-5] DEBUG c.t.f.y.m.Y.getPage2_mpCount - ==> Preparing: SELECT COUNT(*) AS total FROM yh_khjbxx a WHERE 1 = 1 AND a.ssgs = ? AND (a.khbm LIKE 'D000451%' OR a.yhxm LIKE '%D000451%' OR LOWER(a.pyjm) LIKE LOWER('%D000451%')) AND a.ZHBZ = '1' AND a.dxh = ? AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?)
  1835. 2026-04-15 19:16:58.645 [XNIO-1 task-5] DEBUG c.t.f.y.m.Y.getPage2_mpCount - ==> Parameters: 1(String), 1(Integer), (String)
  1836. 2026-04-15 19:16:58.708 [XNIO-1 task-5] DEBUG c.t.f.y.m.Y.getPage2_mpCount - <== Total: 1
  1837. 2026-04-15 19:16:58.708 [XNIO-1 task-5] INFO c.t.feesapi.common.LogRecordAspect - =================【getPage2】请求结束==================
  1838. 2026-04-15 19:18:38.766 [SpringContextShutdownHook] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'taskScheduler'
  1839. 2026-04-15 19:18:38.774 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registering from Nacos Server now...
  1840. 2026-04-15 19:18:38.777 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registration finished.
  1841. 2026-04-15 19:18:38.780 [SpringContextShutdownHook] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'taskScheduler'
  1842. 2026-04-15 19:18:54.625 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.0.20.Final
  1843. 2026-04-15 19:18:54.977 [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
  1844. 2026-04-15 19:18:55.667 [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]
  1845. 2026-04-15 19:18:55.681 [main] WARN c.a.c.n.c.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[collect-fees-api-gs.yaml] & group[DEFAULT_GROUP]
  1846. 2026-04-15 19:18:55.681 [main] INFO o.s.c.b.c.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-collect-fees-api-gs.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-collect-fees-api.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-collect-fees-api,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'}]
  1847. 2026-04-15 19:18:55.687 [main] INFO com.tofly.feesapi.FeesApiApplication - The following profiles are active: gs
  1848. 2026-04-15 19:18:57.588 [main] WARN o.s.boot.actuate.endpoint.EndpointId - Endpoint ID 'nacos-config' contains invalid characters, please migrate to a valid format.
  1849. 2026-04-15 19:18:57.593 [main] WARN o.s.boot.actuate.endpoint.EndpointId - Endpoint ID 'nacos-discovery' contains invalid characters, please migrate to a valid format.
  1850. 2026-04-15 19:18:57.830 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode!
  1851. 2026-04-15 19:18:57.832 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  1852. 2026-04-15 19:18:58.075 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 181ms. Found 0 Redis repository interfaces.
  1853. 2026-04-15 19:18:58.142 [main] WARN o.s.boot.actuate.endpoint.EndpointId - Endpoint ID 'service-registry' contains invalid characters, please migrate to a valid format.
  1854. 2026-04-15 19:18:58.215 [main] DEBUG org.apache.ibatis.logging.LogFactory - Logging initialized using 'class org.apache.ibatis.logging.slf4j.Slf4jImpl' adapter.
  1855. 2026-04-15 19:18:58.350 [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!
  1856. 2026-04-15 19:18:58.350 [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!
  1857. 2026-04-15 19:18:58.350 [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!
  1858. 2026-04-15 19:18:58.350 [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!
  1859. 2026-04-15 19:18:58.350 [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!
  1860. 2026-04-15 19:18:58.350 [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!
  1861. 2026-04-15 19:18:58.350 [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!
  1862. 2026-04-15 19:18:58.350 [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!
  1863. 2026-04-15 19:18:58.350 [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!
  1864. 2026-04-15 19:18:58.350 [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!
  1865. 2026-04-15 19:18:58.350 [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!
  1866. 2026-04-15 19:18:58.350 [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!
  1867. 2026-04-15 19:18:58.350 [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!
  1868. 2026-04-15 19:18:58.350 [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!
  1869. 2026-04-15 19:18:58.350 [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!
  1870. 2026-04-15 19:18:58.350 [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!
  1871. 2026-04-15 19:18:58.350 [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!
  1872. 2026-04-15 19:18:58.350 [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!
  1873. 2026-04-15 19:18:58.350 [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!
  1874. 2026-04-15 19:18:58.351 [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!
  1875. 2026-04-15 19:18:58.351 [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!
  1876. 2026-04-15 19:18:58.351 [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!
  1877. 2026-04-15 19:18:58.351 [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!
  1878. 2026-04-15 19:18:58.351 [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!
  1879. 2026-04-15 19:18:58.351 [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!
  1880. 2026-04-15 19:18:58.351 [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!
  1881. 2026-04-15 19:18:58.351 [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!
  1882. 2026-04-15 19:18:58.351 [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!
  1883. 2026-04-15 19:18:58.351 [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!
  1884. 2026-04-15 19:18:58.351 [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!
  1885. 2026-04-15 19:18:58.351 [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!
  1886. 2026-04-15 19:18:58.352 [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!
  1887. 2026-04-15 19:18:58.352 [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!
  1888. 2026-04-15 19:18:58.352 [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!
  1889. 2026-04-15 19:18:58.352 [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!
  1890. 2026-04-15 19:18:58.352 [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!
  1891. 2026-04-15 19:18:58.352 [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!
  1892. 2026-04-15 19:18:58.352 [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!
  1893. 2026-04-15 19:18:58.352 [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!
  1894. 2026-04-15 19:18:58.352 [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!
  1895. 2026-04-15 19:18:58.352 [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!
  1896. 2026-04-15 19:18:58.352 [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!
  1897. 2026-04-15 19:18:58.352 [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!
  1898. 2026-04-15 19:18:58.353 [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!
  1899. 2026-04-15 19:18:58.353 [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!
  1900. 2026-04-15 19:18:58.353 [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!
  1901. 2026-04-15 19:18:58.353 [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!
  1902. 2026-04-15 19:18:58.353 [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!
  1903. 2026-04-15 19:18:58.353 [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!
  1904. 2026-04-15 19:18:58.353 [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!
  1905. 2026-04-15 19:18:58.353 [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!
  1906. 2026-04-15 19:18:58.353 [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!
  1907. 2026-04-15 19:18:58.353 [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!
  1908. 2026-04-15 19:18:58.353 [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!
  1909. 2026-04-15 19:18:58.353 [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!
  1910. 2026-04-15 19:18:58.353 [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!
  1911. 2026-04-15 19:18:58.353 [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!
  1912. 2026-04-15 19:18:58.353 [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!
  1913. 2026-04-15 19:18:58.353 [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!
  1914. 2026-04-15 19:18:58.353 [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!
  1915. 2026-04-15 19:18:58.353 [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!
  1916. 2026-04-15 19:18:58.353 [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!
  1917. 2026-04-15 19:18:58.353 [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!
  1918. 2026-04-15 19:18:58.353 [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!
  1919. 2026-04-15 19:18:58.353 [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!
  1920. 2026-04-15 19:18:58.353 [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!
  1921. 2026-04-15 19:18:58.353 [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!
  1922. 2026-04-15 19:18:58.353 [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!
  1923. 2026-04-15 19:18:58.353 [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!
  1924. 2026-04-15 19:18:58.353 [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!
  1925. 2026-04-15 19:18:58.353 [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!
  1926. 2026-04-15 19:18:58.353 [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!
  1927. 2026-04-15 19:18:58.353 [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!
  1928. 2026-04-15 19:18:58.353 [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!
  1929. 2026-04-15 19:18:58.353 [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!
  1930. 2026-04-15 19:18:58.353 [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!
  1931. 2026-04-15 19:18:58.353 [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!
  1932. 2026-04-15 19:18:58.353 [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!
  1933. 2026-04-15 19:18:58.353 [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!
  1934. 2026-04-15 19:18:58.353 [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!
  1935. 2026-04-15 19:18:58.353 [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!
  1936. 2026-04-15 19:18:58.353 [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!
  1937. 2026-04-15 19:18:58.353 [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!
  1938. 2026-04-15 19:18:58.353 [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!
  1939. 2026-04-15 19:18:58.354 [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!
  1940. 2026-04-15 19:18:58.354 [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!
  1941. 2026-04-15 19:18:58.354 [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!
  1942. 2026-04-15 19:18:58.354 [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!
  1943. 2026-04-15 19:18:58.354 [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!
  1944. 2026-04-15 19:18:58.354 [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!
  1945. 2026-04-15 19:18:58.354 [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!
  1946. 2026-04-15 19:18:58.354 [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!
  1947. 2026-04-15 19:18:58.354 [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!
  1948. 2026-04-15 19:18:58.354 [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!
  1949. 2026-04-15 19:18:58.354 [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!
  1950. 2026-04-15 19:18:58.354 [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!
  1951. 2026-04-15 19:18:58.354 [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!
  1952. 2026-04-15 19:18:58.354 [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!
  1953. 2026-04-15 19:18:58.354 [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!
  1954. 2026-04-15 19:18:58.354 [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!
  1955. 2026-04-15 19:18:58.354 [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!
  1956. 2026-04-15 19:18:58.354 [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!
  1957. 2026-04-15 19:18:58.354 [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!
  1958. 2026-04-15 19:18:58.354 [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!
  1959. 2026-04-15 19:18:58.354 [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!
  1960. 2026-04-15 19:18:58.354 [main] WARN o.m.s.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.tofly.feesapi.**.mapper]' package. Please check your configuration.
  1961. 2026-04-15 19:18:58.428 [main] INFO o.s.cloud.context.scope.GenericScope - BeanFactory id=b96e5894-f128-35d3-aafc-41fccadba59b
  1962. 2026-04-15 19:18:58.473 [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)
  1963. 2026-04-15 19:18:58.683 [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)
  1964. 2026-04-15 19:18:58.691 [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$$9953a159] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  1965. 2026-04-15 19:18:58.706 [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)
  1966. 2026-04-15 19:18:58.731 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@2b0454d2' 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)
  1967. 2026-04-15 19:18:58.739 [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)
  1968. 2026-04-15 19:18:59.550 [main] WARN io.undertow.websockets.jsr - UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
  1969. 2026-04-15 19:18:59.621 [main] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  1970. 2026-04-15 19:18:59.622 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3914 ms
  1971. 2026-04-15 19:19:03.695 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1,master} inited
  1972. 2026-04-15 19:19:10.403 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-2,udb} inited
  1973. 2026-04-15 19:19:16.566 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-3,flowDB} inited
  1974. 2026-04-15 19:19:16.566 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [udb] success
  1975. 2026-04-15 19:19:16.566 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [flowDB] success
  1976. 2026-04-15 19:19:16.566 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
  1977. 2026-04-15 19:19:16.566 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [3] datasource,primary datasource named [master]
  1978. 2026-04-15 19:19:17.703 [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]
  1979. 2026-04-15 19:19:18.023 [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]
  1980. 2026-04-15 19:19:18.788 [main] WARN c.b.m.core.metadata.TableInfoHelper - Can not find table primary key in Class: "com.tofly.feesapi.wxgl.wechatpay.entity.PaySelect".
  1981. 2026-04-15 19:19:18.788 [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.
  1982. 2026-04-15 19:19:18.800 [main] WARN c.b.m.core.metadata.TableInfoHelper - Can not find table primary key in Class: "com.tofly.feesapi.xtgl.entity.SysGdcsb".
  1983. 2026-04-15 19:19:18.800 [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.
  1984. 2026-04-15 19:19:22.825 [main] INFO org.redisson.Version - Redisson 3.23.2
  1985. 2026-04-15 19:19:23.575 [redisson-netty-2-4] INFO o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 127.0.0.1/127.0.0.1:6379
  1986. 2026-04-15 19:19:23.616 [redisson-netty-2-19] INFO o.r.c.pool.MasterConnectionPool - 24 connections initialized for 127.0.0.1/127.0.0.1:6379
  1987. 2026-04-15 19:19:28.852 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 19 endpoint(s) beneath base path '/actuator'
  1988. 2026-04-15 19:19:28.951 [main] INFO s.d.s.w.WebMvcPropertySourcedRequestMappingHandlerMapping - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  1989. 2026-04-15 19:19:29.115 [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]
  1990. 2026-04-15 19:19:29.123 [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]
  1991. 2026-04-15 19:19:29.393 [main] INFO o.s.s.c.ThreadPoolTaskScheduler - Initializing ExecutorService 'taskScheduler'
  1992. 2026-04-15 19:19:29.576 [main] INFO o.s.b.a.s.s.UserDetailsServiceAutoConfiguration -
  1993. Using generated security password: 63975bcc-7d70-4377-976a-541c7de6dfdd
  1994. 2026-04-15 19:19:29.684 [main] INFO o.s.s.web.DefaultSecurityFilterChain - Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@5b12157b, org.springframework.security.web.context.SecurityContextPersistenceFilter@45ec9b22, org.springframework.security.web.header.HeaderWriterFilter@11101f62, org.springframework.security.web.authentication.logout.LogoutFilter@3ffa3cdb, org.springframework.security.oauth2.provider.authentication.OAuth2AuthenticationProcessingFilter@cea6297, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@7537f638, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@b632594, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@73760b13, org.springframework.security.web.session.SessionManagementFilter@328446e1, org.springframework.security.web.access.ExceptionTranslationFilter@3644d305, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@595713f3]
  1995. 2026-04-15 19:19:30.204 [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.
  1996. 2026-04-15 19:19:30.323 [main] INFO s.d.s.w.p.DocumentationPluginsBootstrapper - Documentation plugins bootstrapped
  1997. 2026-04-15 19:19:30.326 [main] INFO s.d.s.w.p.DocumentationPluginsBootstrapper - Found 1 custom documentation plugin(s)
  1998. 2026-04-15 19:19:30.438 [main] INFO s.d.s.w.s.ApiListingReferenceScanner - Scanning for api listing references
  1999. 2026-04-15 19:19:30.773 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_1
  2000. 2026-04-15 19:19:30.776 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_1
  2001. 2026-04-15 19:19:30.777 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_1
  2002. 2026-04-15 19:19:30.778 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_1
  2003. 2026-04-15 19:19:30.781 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_1
  2004. 2026-04-15 19:19:30.782 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_1
  2005. 2026-04-15 19:19:30.800 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: addCustomerUsingPOST_1
  2006. 2026-04-15 19:19:30.800 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: deleteCustomerUsingPOST_1
  2007. 2026-04-15 19:19:30.801 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getBindCustomerUsingGET_1
  2008. 2026-04-15 19:19:30.802 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: selectCustomerUsingGET_1
  2009. 2026-04-15 19:19:30.803 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getBindCustomerAndQfUsingGET_1
  2010. 2026-04-15 19:19:30.804 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerBasicInFoUsingGET_1
  2011. 2026-04-15 19:19:30.804 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerChargeInFoUsingGET_1
  2012. 2026-04-15 19:19:30.805 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerInFoUsingGET_1
  2013. 2026-04-15 19:19:30.806 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerQfInFoUsingGET_1
  2014. 2026-04-15 19:19:30.807 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerReadMeterInFoUsingGET_1
  2015. 2026-04-15 19:19:30.816 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_2
  2016. 2026-04-15 19:19:30.835 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_2
  2017. 2026-04-15 19:19:30.836 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_2
  2018. 2026-04-15 19:19:30.837 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_2
  2019. 2026-04-15 19:19:30.841 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_2
  2020. 2026-04-15 19:19:30.842 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_2
  2021. 2026-04-15 19:19:30.855 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_3
  2022. 2026-04-15 19:19:30.856 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_3
  2023. 2026-04-15 19:19:30.857 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_3
  2024. 2026-04-15 19:19:30.859 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_3
  2025. 2026-04-15 19:19:30.860 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_3
  2026. 2026-04-15 19:19:30.866 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_3
  2027. 2026-04-15 19:19:30.871 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_4
  2028. 2026-04-15 19:19:30.872 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_4
  2029. 2026-04-15 19:19:30.873 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_4
  2030. 2026-04-15 19:19:30.874 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_4
  2031. 2026-04-15 19:19:30.875 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_4
  2032. 2026-04-15 19:19:30.876 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_5
  2033. 2026-04-15 19:19:30.877 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_5
  2034. 2026-04-15 19:19:30.878 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_5
  2035. 2026-04-15 19:19:30.881 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_5
  2036. 2026-04-15 19:19:30.881 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_5
  2037. 2026-04-15 19:19:30.886 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_4
  2038. 2026-04-15 19:19:30.890 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_6
  2039. 2026-04-15 19:19:30.896 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_5
  2040. 2026-04-15 19:19:30.896 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_6
  2041. 2026-04-15 19:19:30.897 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_6
  2042. 2026-04-15 19:19:30.899 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_6
  2043. 2026-04-15 19:19:30.900 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_6
  2044. 2026-04-15 19:19:30.902 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_1
  2045. 2026-04-15 19:19:30.907 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_7
  2046. 2026-04-15 19:19:30.907 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_7
  2047. 2026-04-15 19:19:30.908 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_7
  2048. 2026-04-15 19:19:30.911 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_7
  2049. 2026-04-15 19:19:30.912 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_7
  2050. 2026-04-15 19:19:30.914 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_8
  2051. 2026-04-15 19:19:30.915 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getFffsListUsingGET_1
  2052. 2026-04-15 19:19:30.916 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_8
  2053. 2026-04-15 19:19:30.916 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_9
  2054. 2026-04-15 19:19:30.919 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_8
  2055. 2026-04-15 19:19:30.920 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_8
  2056. 2026-04-15 19:19:30.924 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_2
  2057. 2026-04-15 19:19:30.928 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_9
  2058. 2026-04-15 19:19:30.929 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_10
  2059. 2026-04-15 19:19:30.929 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_11
  2060. 2026-04-15 19:19:30.931 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_9
  2061. 2026-04-15 19:19:30.932 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_9
  2062. 2026-04-15 19:19:30.934 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_10
  2063. 2026-04-15 19:19:30.936 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_12
  2064. 2026-04-15 19:19:30.936 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_13
  2065. 2026-04-15 19:19:30.939 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_10
  2066. 2026-04-15 19:19:30.940 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_10
  2067. 2026-04-15 19:19:30.942 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_11
  2068. 2026-04-15 19:19:30.943 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_14
  2069. 2026-04-15 19:19:30.944 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_15
  2070. 2026-04-15 19:19:30.946 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_11
  2071. 2026-04-15 19:19:30.947 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_11
  2072. 2026-04-15 19:19:30.951 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_12
  2073. 2026-04-15 19:19:30.952 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_16
  2074. 2026-04-15 19:19:30.952 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_8
  2075. 2026-04-15 19:19:30.954 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_12
  2076. 2026-04-15 19:19:30.954 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_12
  2077. 2026-04-15 19:19:30.959 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_13
  2078. 2026-04-15 19:19:30.960 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_17
  2079. 2026-04-15 19:19:30.960 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_9
  2080. 2026-04-15 19:19:30.962 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_13
  2081. 2026-04-15 19:19:30.962 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_13
  2082. 2026-04-15 19:19:30.965 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_14
  2083. 2026-04-15 19:19:30.966 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_18
  2084. 2026-04-15 19:19:30.967 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_19
  2085. 2026-04-15 19:19:30.970 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_14
  2086. 2026-04-15 19:19:30.971 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_14
  2087. 2026-04-15 19:19:30.977 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_15
  2088. 2026-04-15 19:19:30.986 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_6
  2089. 2026-04-15 19:19:31.005 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_15
  2090. 2026-04-15 19:19:31.009 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_3
  2091. 2026-04-15 19:19:31.014 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_16
  2092. 2026-04-15 19:19:31.014 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_20
  2093. 2026-04-15 19:19:31.015 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_10
  2094. 2026-04-15 19:19:31.017 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_16
  2095. 2026-04-15 19:19:31.018 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_15
  2096. 2026-04-15 19:19:31.021 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_17
  2097. 2026-04-15 19:19:31.027 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_7
  2098. 2026-04-15 19:19:31.028 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_21
  2099. 2026-04-15 19:19:31.029 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_11
  2100. 2026-04-15 19:19:31.031 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_17
  2101. 2026-04-15 19:19:31.032 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_16
  2102. 2026-04-15 19:19:31.045 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_8
  2103. 2026-04-15 19:19:31.046 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveBatchUsingPOST_1
  2104. 2026-04-15 19:19:31.150 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_18
  2105. 2026-04-15 19:19:31.154 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_22
  2106. 2026-04-15 19:19:31.154 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_12
  2107. 2026-04-15 19:19:31.156 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_18
  2108. 2026-04-15 19:19:31.157 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_17
  2109. 2026-04-15 19:19:31.159 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_19
  2110. 2026-04-15 19:19:31.160 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_23
  2111. 2026-04-15 19:19:31.162 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_19
  2112. 2026-04-15 19:19:31.163 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_18
  2113. 2026-04-15 19:19:31.169 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_20
  2114. 2026-04-15 19:19:31.171 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_24
  2115. 2026-04-15 19:19:31.171 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_13
  2116. 2026-04-15 19:19:31.174 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_20
  2117. 2026-04-15 19:19:31.191 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: Xh_WordToPdfUsingPOST_1
  2118. 2026-04-15 19:19:31.194 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_21
  2119. 2026-04-15 19:19:31.198 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_25
  2120. 2026-04-15 19:19:31.199 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_14
  2121. 2026-04-15 19:19:31.202 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_21
  2122. 2026-04-15 19:19:31.204 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_26
  2123. 2026-04-15 19:19:31.205 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_15
  2124. 2026-04-15 19:19:31.209 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_22
  2125. 2026-04-15 19:19:31.210 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_19
  2126. 2026-04-15 19:19:31.224 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_22
  2127. 2026-04-15 19:19:31.305 [main] WARN s.d.s.w.r.p.ParameterTypeReader - @ModelAttribute annotated parameters should have already been expanded via the ExpandedParameterBuilderPlugin
  2128. 2026-04-15 19:19:31.305 [main] WARN s.d.s.w.r.p.ParameterTypeReader - @ModelAttribute annotated parameters should have already been expanded via the ExpandedParameterBuilderPlugin
  2129. 2026-04-15 19:19:31.311 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportYsqdUsingGET_1
  2130. 2026-04-15 19:19:31.355 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_23
  2131. 2026-04-15 19:19:31.356 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_27
  2132. 2026-04-15 19:19:31.357 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_16
  2133. 2026-04-15 19:19:31.375 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_24
  2134. 2026-04-15 19:19:31.376 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_28
  2135. 2026-04-15 19:19:31.376 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_17
  2136. 2026-04-15 19:19:31.378 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_23
  2137. 2026-04-15 19:19:31.380 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_20
  2138. 2026-04-15 19:19:31.389 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_25
  2139. 2026-04-15 19:19:31.393 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_29
  2140. 2026-04-15 19:19:31.394 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_18
  2141. 2026-04-15 19:19:31.397 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_24
  2142. 2026-04-15 19:19:31.398 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_21
  2143. 2026-04-15 19:19:31.399 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_26
  2144. 2026-04-15 19:19:31.403 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_30
  2145. 2026-04-15 19:19:31.404 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_19
  2146. 2026-04-15 19:19:31.406 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_25
  2147. 2026-04-15 19:19:31.407 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_22
  2148. 2026-04-15 19:19:31.418 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_27
  2149. 2026-04-15 19:19:31.422 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_31
  2150. 2026-04-15 19:19:31.423 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_20
  2151. 2026-04-15 19:19:31.427 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_26
  2152. 2026-04-15 19:19:31.429 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_23
  2153. 2026-04-15 19:19:31.437 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxBtsqPageUsingGET_1
  2154. 2026-04-15 19:19:31.440 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_28
  2155. 2026-04-15 19:19:31.445 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_32
  2156. 2026-04-15 19:19:31.446 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_21
  2157. 2026-04-15 19:19:31.449 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_27
  2158. 2026-04-15 19:19:31.450 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_24
  2159. 2026-04-15 19:19:31.453 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxBzsqPageUsingGET_1
  2160. 2026-04-15 19:19:31.459 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_29
  2161. 2026-04-15 19:19:31.464 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_33
  2162. 2026-04-15 19:19:31.465 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_22
  2163. 2026-04-15 19:19:31.468 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_28
  2164. 2026-04-15 19:19:31.469 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_25
  2165. 2026-04-15 19:19:31.474 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxDbsqPageUsingGET_1
  2166. 2026-04-15 19:19:31.476 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPOST_1
  2167. 2026-04-15 19:19:31.478 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_30
  2168. 2026-04-15 19:19:31.482 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_34
  2169. 2026-04-15 19:19:31.483 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_23
  2170. 2026-04-15 19:19:31.484 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_29
  2171. 2026-04-15 19:19:31.485 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_26
  2172. 2026-04-15 19:19:31.486 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_31
  2173. 2026-04-15 19:19:31.488 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_35
  2174. 2026-04-15 19:19:31.489 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_24
  2175. 2026-04-15 19:19:31.493 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_30
  2176. 2026-04-15 19:19:31.494 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_27
  2177. 2026-04-15 19:19:31.497 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_32
  2178. 2026-04-15 19:19:31.498 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_36
  2179. 2026-04-15 19:19:31.499 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_25
  2180. 2026-04-15 19:19:31.502 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_31
  2181. 2026-04-15 19:19:31.504 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_28
  2182. 2026-04-15 19:19:31.513 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_33
  2183. 2026-04-15 19:19:31.515 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_37
  2184. 2026-04-15 19:19:31.516 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_38
  2185. 2026-04-15 19:19:31.518 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_32
  2186. 2026-04-15 19:19:31.519 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_29
  2187. 2026-04-15 19:19:31.521 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_34
  2188. 2026-04-15 19:19:31.525 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_39
  2189. 2026-04-15 19:19:31.526 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_26
  2190. 2026-04-15 19:19:31.529 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_33
  2191. 2026-04-15 19:19:31.530 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_30
  2192. 2026-04-15 19:19:31.536 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxHfsqPageUsingGET_1
  2193. 2026-04-15 19:19:31.537 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_35
  2194. 2026-04-15 19:19:31.541 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_40
  2195. 2026-04-15 19:19:31.542 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_27
  2196. 2026-04-15 19:19:31.545 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_34
  2197. 2026-04-15 19:19:31.546 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_31
  2198. 2026-04-15 19:19:31.553 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxLwsqPageUsingGET_1
  2199. 2026-04-15 19:19:31.555 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_36
  2200. 2026-04-15 19:19:31.558 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_41
  2201. 2026-04-15 19:19:31.559 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_28
  2202. 2026-04-15 19:19:31.562 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_35
  2203. 2026-04-15 19:19:31.563 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_32
  2204. 2026-04-15 19:19:31.567 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxLxdhsqPageUsingGET_1
  2205. 2026-04-15 19:19:31.569 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_37
  2206. 2026-04-15 19:19:31.574 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_42
  2207. 2026-04-15 19:19:31.575 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_29
  2208. 2026-04-15 19:19:31.579 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_36
  2209. 2026-04-15 19:19:31.580 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_33
  2210. 2026-04-15 19:19:31.589 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_38
  2211. 2026-04-15 19:19:31.594 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_43
  2212. 2026-04-15 19:19:31.595 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_30
  2213. 2026-04-15 19:19:31.599 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_37
  2214. 2026-04-15 19:19:31.600 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_34
  2215. 2026-04-15 19:19:31.607 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxDbsqPageUsingGET_2
  2216. 2026-04-15 19:19:31.615 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_1
  2217. 2026-04-15 19:19:31.619 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_39
  2218. 2026-04-15 19:19:31.622 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_44
  2219. 2026-04-15 19:19:31.623 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_31
  2220. 2026-04-15 19:19:31.628 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_38
  2221. 2026-04-15 19:19:31.635 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_35
  2222. 2026-04-15 19:19:31.637 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_40
  2223. 2026-04-15 19:19:31.639 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_45
  2224. 2026-04-15 19:19:31.640 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_32
  2225. 2026-04-15 19:19:31.644 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_39
  2226. 2026-04-15 19:19:31.645 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_36
  2227. 2026-04-15 19:19:31.647 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_41
  2228. 2026-04-15 19:19:31.650 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_46
  2229. 2026-04-15 19:19:31.651 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_33
  2230. 2026-04-15 19:19:31.656 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_40
  2231. 2026-04-15 19:19:31.658 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_37
  2232. 2026-04-15 19:19:31.660 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_42
  2233. 2026-04-15 19:19:31.662 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_47
  2234. 2026-04-15 19:19:31.663 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_48
  2235. 2026-04-15 19:19:31.666 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_41
  2236. 2026-04-15 19:19:31.667 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_38
  2237. 2026-04-15 19:19:31.669 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_43
  2238. 2026-04-15 19:19:31.673 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_49
  2239. 2026-04-15 19:19:31.674 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_50
  2240. 2026-04-15 19:19:31.677 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_42
  2241. 2026-04-15 19:19:31.678 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_39
  2242. 2026-04-15 19:19:31.680 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_44
  2243. 2026-04-15 19:19:31.685 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_51
  2244. 2026-04-15 19:19:31.686 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_34
  2245. 2026-04-15 19:19:31.688 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_43
  2246. 2026-04-15 19:19:31.689 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_40
  2247. 2026-04-15 19:19:31.694 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxWzjbsqPageUsingGET_1
  2248. 2026-04-15 19:19:31.696 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_45
  2249. 2026-04-15 19:19:31.702 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_52
  2250. 2026-04-15 19:19:31.702 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_35
  2251. 2026-04-15 19:19:31.705 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_44
  2252. 2026-04-15 19:19:31.706 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_41
  2253. 2026-04-15 19:19:31.712 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxXbsqPageUsingGET_1
  2254. 2026-04-15 19:19:31.715 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_46
  2255. 2026-04-15 19:19:31.719 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_53
  2256. 2026-04-15 19:19:31.720 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_36
  2257. 2026-04-15 19:19:31.723 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_45
  2258. 2026-04-15 19:19:31.724 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_42
  2259. 2026-04-15 19:19:31.729 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxXhsqPageUsingGET_1
  2260. 2026-04-15 19:19:31.730 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPOST_2
  2261. 2026-04-15 19:19:31.731 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_47
  2262. 2026-04-15 19:19:31.734 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_54
  2263. 2026-04-15 19:19:31.735 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_37
  2264. 2026-04-15 19:19:31.738 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_46
  2265. 2026-04-15 19:19:31.739 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_43
  2266. 2026-04-15 19:19:31.740 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_48
  2267. 2026-04-15 19:19:31.744 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_55
  2268. 2026-04-15 19:19:31.746 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_38
  2269. 2026-04-15 19:19:31.747 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_47
  2270. 2026-04-15 19:19:31.749 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_44
  2271. 2026-04-15 19:19:31.755 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_9
  2272. 2026-04-15 19:19:31.757 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_56
  2273. 2026-04-15 19:19:31.758 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_39
  2274. 2026-04-15 19:19:31.760 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_48
  2275. 2026-04-15 19:19:31.761 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_57
  2276. 2026-04-15 19:19:31.762 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_40
  2277. 2026-04-15 19:19:31.764 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_49
  2278. 2026-04-15 19:19:31.769 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_10
  2279. 2026-04-15 19:19:31.771 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_49
  2280. 2026-04-15 19:19:31.775 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_58
  2281. 2026-04-15 19:19:31.777 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_41
  2282. 2026-04-15 19:19:31.780 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_50
  2283. 2026-04-15 19:19:31.783 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_45
  2284. 2026-04-15 19:19:31.784 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_2
  2285. 2026-04-15 19:19:31.799 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_51
  2286. 2026-04-15 19:19:31.806 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_50
  2287. 2026-04-15 19:19:31.814 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_11
  2288. 2026-04-15 19:19:31.824 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_1
  2289. 2026-04-15 19:19:31.835 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_51
  2290. 2026-04-15 19:19:31.836 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_42
  2291. 2026-04-15 19:19:31.856 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_52
  2292. 2026-04-15 19:19:31.861 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_59
  2293. 2026-04-15 19:19:31.862 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_43
  2294. 2026-04-15 19:19:31.864 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_52
  2295. 2026-04-15 19:19:31.865 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_46
  2296. 2026-04-15 19:19:31.867 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_53
  2297. 2026-04-15 19:19:31.870 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_60
  2298. 2026-04-15 19:19:31.871 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_44
  2299. 2026-04-15 19:19:31.876 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_53
  2300. 2026-04-15 19:19:31.881 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_47
  2301. 2026-04-15 19:19:31.883 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_3
  2302. 2026-04-15 19:19:31.885 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_61
  2303. 2026-04-15 19:19:31.885 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_45
  2304. 2026-04-15 19:19:31.888 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_54
  2305. 2026-04-15 19:19:31.894 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_12
  2306. 2026-04-15 19:19:31.897 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_62
  2307. 2026-04-15 19:19:31.898 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_46
  2308. 2026-04-15 19:19:31.900 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_55
  2309. 2026-04-15 19:19:31.905 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_13
  2310. 2026-04-15 19:19:31.907 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_54
  2311. 2026-04-15 19:19:31.913 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_63
  2312. 2026-04-15 19:19:31.915 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_47
  2313. 2026-04-15 19:19:31.919 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_56
  2314. 2026-04-15 19:19:31.924 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_48
  2315. 2026-04-15 19:19:31.925 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_4
  2316. 2026-04-15 19:19:31.941 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getDaCustomerPageUsingGET_1
  2317. 2026-04-15 19:19:31.965 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_1
  2318. 2026-04-15 19:19:31.974 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_14
  2319. 2026-04-15 19:19:31.991 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_55
  2320. 2026-04-15 19:19:32.027 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: delByIdUsingDELETE_1
  2321. 2026-04-15 19:19:32.029 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: delByIdsUsingDELETE_1
  2322. 2026-04-15 19:19:32.031 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: disableUsingPUT_1
  2323. 2026-04-15 19:19:32.032 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: enableUsingPUT_1
  2324. 2026-04-15 19:19:32.034 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: importExcelUsingPOST_1
  2325. 2026-04-15 19:19:32.037 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_2
  2326. 2026-04-15 19:19:32.042 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_3
  2327. 2026-04-15 19:19:32.058 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_5
  2328. 2026-04-15 19:19:32.060 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_6
  2329. 2026-04-15 19:19:32.062 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_7
  2330. 2026-04-15 19:19:32.066 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_56
  2331. 2026-04-15 19:19:32.074 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_48
  2332. 2026-04-15 19:19:32.094 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: addUsingPOST_1
  2333. 2026-04-15 19:19:32.101 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_57
  2334. 2026-04-15 19:19:32.108 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_64
  2335. 2026-04-15 19:19:32.109 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_49
  2336. 2026-04-15 19:19:32.111 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_57
  2337. 2026-04-15 19:19:32.114 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: save_gdUsingPOST_1
  2338. 2026-04-15 19:19:32.121 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_49
  2339. 2026-04-15 19:19:32.132 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_58
  2340. 2026-04-15 19:19:32.136 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_65
  2341. 2026-04-15 19:19:32.137 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_50
  2342. 2026-04-15 19:19:32.140 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_58
  2343. 2026-04-15 19:19:32.142 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_50
  2344. 2026-04-15 19:19:32.145 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_59
  2345. 2026-04-15 19:19:32.148 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_66
  2346. 2026-04-15 19:19:32.149 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_51
  2347. 2026-04-15 19:19:32.152 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_59
  2348. 2026-04-15 19:19:32.155 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: save_gdUsingPOST_2
  2349. 2026-04-15 19:19:32.158 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_51
  2350. 2026-04-15 19:19:32.159 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_8
  2351. 2026-04-15 19:19:32.165 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_9
  2352. 2026-04-15 19:19:32.175 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_60
  2353. 2026-04-15 19:19:32.209 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_2
  2354. 2026-04-15 19:19:32.212 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_61
  2355. 2026-04-15 19:19:32.215 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_15
  2356. 2026-04-15 19:19:32.241 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_4
  2357. 2026-04-15 19:19:32.247 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_10
  2358. 2026-04-15 19:19:32.253 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_62
  2359. 2026-04-15 19:19:32.260 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_67
  2360. 2026-04-15 19:19:32.262 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_52
  2361. 2026-04-15 19:19:32.269 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_60
  2362. 2026-04-15 19:19:32.271 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_52
  2363. 2026-04-15 19:19:32.316 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_53
  2364. 2026-04-15 19:19:32.396 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_16
  2365. 2026-04-15 19:19:32.442 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getListUsingGET_1
  2366. 2026-04-15 19:19:32.487 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_63
  2367. 2026-04-15 19:19:32.525 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: statUsingGET_1
  2368. 2026-04-15 19:19:32.559 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_11
  2369. 2026-04-15 19:19:32.563 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_64
  2370. 2026-04-15 19:19:32.574 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_68
  2371. 2026-04-15 19:19:32.575 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_53
  2372. 2026-04-15 19:19:32.608 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_61
  2373. 2026-04-15 19:19:32.610 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_54
  2374. 2026-04-15 19:19:32.613 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_65
  2375. 2026-04-15 19:19:32.618 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_62
  2376. 2026-04-15 19:19:32.621 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_55
  2377. 2026-04-15 19:19:32.630 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_12
  2378. 2026-04-15 19:19:32.665 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_63
  2379. 2026-04-15 19:19:32.699 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_17
  2380. 2026-04-15 19:19:32.720 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: monthlyStatUsingGET_1
  2381. 2026-04-15 19:19:32.722 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: monthlyStatSummaryUsingGET_1
  2382. 2026-04-15 19:19:32.727 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getListUsingGET_2
  2383. 2026-04-15 19:19:32.794 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_66
  2384. 2026-04-15 19:19:32.821 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageListUsingGET_1
  2385. 2026-04-15 19:19:32.824 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: statUsingGET_2
  2386. 2026-04-15 19:19:32.858 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_13
  2387. 2026-04-15 19:19:32.860 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_14
  2388. 2026-04-15 19:19:32.885 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_64
  2389. 2026-04-15 19:19:32.892 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_67
  2390. 2026-04-15 19:19:32.932 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getYyWyjtzPageUsingGET_1
  2391. 2026-04-15 19:19:32.933 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_15
  2392. 2026-04-15 19:19:32.937 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_5
  2393. 2026-04-15 19:19:32.944 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_18
  2394. 2026-04-15 19:19:32.945 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_16
  2395. 2026-04-15 19:19:32.956 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_19
  2396. 2026-04-15 19:19:32.957 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_17
  2397. 2026-04-15 19:19:33.001 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_20
  2398. 2026-04-15 19:19:33.002 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_18
  2399. 2026-04-15 19:19:33.004 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_68
  2400. 2026-04-15 19:19:33.011 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_69
  2401. 2026-04-15 19:19:33.013 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_54
  2402. 2026-04-15 19:19:33.019 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_65
  2403. 2026-04-15 19:19:33.021 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_56
  2404. 2026-04-15 19:19:33.024 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_69
  2405. 2026-04-15 19:19:33.025 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_70
  2406. 2026-04-15 19:19:33.027 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_55
  2407. 2026-04-15 19:19:33.033 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_66
  2408. 2026-04-15 19:19:33.035 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_57
  2409. 2026-04-15 19:19:33.037 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_21
  2410. 2026-04-15 19:19:33.040 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_3
  2411. 2026-04-15 19:19:33.045 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_67
  2412. 2026-04-15 19:19:33.054 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_22
  2413. 2026-04-15 19:19:33.086 [main] INFO io.undertow - starting server: Undertow - 2.0.31.Final
  2414. 2026-04-15 19:19:33.092 [main] INFO org.xnio - XNIO version 3.3.8.Final
  2415. 2026-04-15 19:19:33.099 [main] INFO org.xnio.nio - XNIO NIO Implementation Version 3.3.8.Final
  2416. 2026-04-15 19:19:33.146 [main] INFO o.s.b.w.e.u.UndertowServletWebServer - Undertow started on port(s) 10506 (http) with context path ''
  2417. 2026-04-15 19:19:33.188 [main] INFO c.a.c.n.r.NacosServiceRegistry - nacos registry, DEFAULT_GROUP collect-fees-api 192.168.200.104:10506 register finished
  2418. 2026-04-15 19:19:33.484 [main] INFO com.tofly.feesapi.FeesApiApplication - Started FeesApiApplication in 39.515 seconds (JVM running for 40.761)
  2419. 2026-04-15 19:19:34.152 [RMI TCP Connection(11)-192.168.200.104] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  2420. 2026-04-15 19:19:34.152 [RMI TCP Connection(11)-192.168.200.104] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  2421. 2026-04-15 19:19:34.388 [RMI TCP Connection(11)-192.168.200.104] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 235 ms
  2422. 2026-04-15 19:19:45.034 [XNIO-1 task-1] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/api/yhgl/yhkhjbxx/page2/getPage2】请求开始==================
  2423. 2026-04-15 19:19:45.160 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.getPage2_mpCount - ==> Preparing: SELECT COUNT(*) AS total FROM yh_khjbxx a WHERE 1 = 1 AND a.ssgs = ? AND (a.khbm LIKE 'D000451%' OR a.yhxm LIKE '%D000451%' OR LOWER(a.pyjm) LIKE LOWER('%D000451%')) AND a.ZHBZ = '1' AND a.dxh = ?
  2424. 2026-04-15 19:19:45.188 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.getPage2_mpCount - ==> Parameters: 1(String), 1(Integer)
  2425. 2026-04-15 19:19:45.259 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.getPage2_mpCount - <== Total: 1
  2426. 2026-04-15 19:19:45.288 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.getPage2 - ==> Preparing: SELECT * FROM ( SELECT TMP.*, ROWNUM ROW_ID FROM ( SELECT a.yhbh, a.ykhbh, a.yhxm, a.yhdz, a.lxdh, a.ssgs, a.sscbpq, a.sscbb, a.xb, a.sj, a.zzdh, a.gzdw, a.bgdh, a.dzyx, a.zjlb, a.zjhm, a.sqrq, a.jdrq, a.yhzt, a.rks, a.hzgx, a.zsjb, a.tsbz, a.tsrq, a.htqd, a.htqdrq, a.htbh, a.bz, a.bz1, a.bz_gcbh, a.bz_pcxlh, a.czrybm, a.czryxm, a.czsj, a.psfz, a.pht, a.pgszz, a.pyyzz, a.pyxzj, a.xydj, a.zw, a.jdrybm, a.jdryxm, a.jdpcxlh, a.sfqz, a.cbryxm, a.xh, a.ssregion, a.xgrybm, a.jtzqljl, a.fplx, (CASE WHEN a.fplx = '1' THEN '普票' WHEN a.fplx = '2' THEN '专票' ELSE '' END) fplxmc, a.fp_name, a.fp_nsrsbh, a.fp_dz, a.fp_lxdh, a.fp_bankname, a.fp_bankcode, a.fp_bz, a.fffs, h.name AS fffsmc, a.khlb, a.pyjm, a.yljl, g.mc AS ssgsmc, e.cbpqmc AS sscbpqmc, f.cbbmc AS sscbbmc, d.name AS sblbmc, b.sbqs, b.sbbh, b.sblb, b.sbsccj, b.sbxh, b.sbkj, b.sblc, b.jddj, b.cbpl, b.bjwz, b.sbccrq, c.name || (SELECT '|' || name FROM bm_sj WHERE code = b.sjbm1) || (SELECT '|' || name FROM bm_sj WHERE code = b.sjbm2) sjmc, k.scds, k.bcds, k.cbxh, nvl(j.yfje, 0) yfje, nvl(j.kjje, 0) kjje, nvl(j.syje, 0) syje, nvl(j.nbsyje, 0) nbsyje, a.khbm, a.ysdz, a.wybz FROM yh_khjbxx a LEFT JOIN yh_cbkxx b ON a.yhbh = b.yhbh AND b.cbkh = '1' LEFT JOIN bm_sj c ON b.sjbm = c.code LEFT JOIN bm_sblb d ON b.sblb = d.code LEFT JOIN bm_cbpq e ON a.sscbpq = e.cbpqbm LEFT JOIN bm_cbb f ON a.sscbb = f.cbbbm LEFT JOIN bm_gs g ON a.ssgs = g.bm LEFT JOIN bm_fffs h ON a.fffs = h.code LEFT JOIN yy_cblr k ON a.yhbh = k.yhbh AND b.cbkh = k.cbkh LEFT JOIN yy_zjzh j ON a.yhbh = j.yhbh WHERE 1 = 1 AND a.ssgs = ? AND (a.khbm LIKE 'D000451%' OR a.yhxm LIKE '%D000451%' OR LOWER(a.pyjm) LIKE LOWER('%D000451%')) AND a.ZHBZ = '1' AND a.dxh = ? ORDER BY a.yhbh ASC, a.yhbh ASC ) TMP WHERE ROWNUM <=?) WHERE ROW_ID > ?
  2427. 2026-04-15 19:19:45.289 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.getPage2 - ==> Parameters: 1(String), 1(Integer), 20(Long), 0(Long)
  2428. 2026-04-15 19:19:45.456 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.getPage2 - <== Total: 1
  2429. 2026-04-15 19:19:45.457 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
  2430. 2026-04-15 19:19:45.457 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00045101(String)
  2431. 2026-04-15 19:19:45.474 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
  2432. 2026-04-15 19:19:45.475 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
  2433. 2026-04-15 19:19:45.475 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00045101(String)
  2434. 2026-04-15 19:19:45.493 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
  2435. 2026-04-15 19:19:45.494 [XNIO-1 task-1] INFO c.t.feesapi.common.LogRecordAspect - =================【getPage2】请求结束==================
  2436. 2026-04-15 19:20:13.138 [SpringContextShutdownHook] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'taskScheduler'
  2437. 2026-04-15 19:20:13.183 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registering from Nacos Server now...
  2438. 2026-04-15 19:20:13.271 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registration finished.
  2439. 2026-04-15 19:20:13.273 [SpringContextShutdownHook] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'taskScheduler'