collect-fees-api.2026-05-08.0.log 320 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055
  1. 2026-05-08 14:37:53.246 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.0.20.Final
  2. 2026-05-08 14:37:53.930 [background-preinit] WARN o.s.h.c.j.Jackson2ObjectMapperBuilder - For Jackson Kotlin classes support please add "com.fasterxml.jackson.module:jackson-module-kotlin" to the classpath
  3. 2026-05-08 14:37:55.623 [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-05-08 14:37:55.641 [main] WARN c.a.c.n.c.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[collect-fees-api-bd.yaml] & group[DEFAULT_GROUP]
  5. 2026-05-08 14:37:55.641 [main] INFO o.s.c.b.c.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-collect-fees-api-bd.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-collect-fees-api.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-collect-fees-api,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-yx_config_ftp.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-public_config_redis.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-public_config_oracle.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-public_config_public.yaml,DEFAULT_GROUP'}]
  6. 2026-05-08 14:37:55.646 [main] INFO com.tofly.feesapi.FeesApiApplication - The following profiles are active: bd
  7. 2026-05-08 14:37:57.992 [main] WARN o.s.boot.actuate.endpoint.EndpointId - Endpoint ID 'nacos-config' contains invalid characters, please migrate to a valid format.
  8. 2026-05-08 14:37:57.996 [main] WARN o.s.boot.actuate.endpoint.EndpointId - Endpoint ID 'nacos-discovery' contains invalid characters, please migrate to a valid format.
  9. 2026-05-08 14:37:58.250 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode!
  10. 2026-05-08 14:37:58.254 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  11. 2026-05-08 14:37:58.677 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 339ms. Found 0 Redis repository interfaces.
  12. 2026-05-08 14:37:58.790 [main] WARN o.s.boot.actuate.endpoint.EndpointId - Endpoint ID 'service-registry' contains invalid characters, please migrate to a valid format.
  13. 2026-05-08 14:37:58.924 [main] DEBUG org.apache.ibatis.logging.LogFactory - Logging initialized using 'class org.apache.ibatis.logging.slf4j.Slf4jImpl' adapter.
  14. 2026-05-08 14:37:59.108 [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-05-08 14:37:59.108 [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-05-08 14:37:59.108 [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-05-08 14:37:59.108 [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-05-08 14:37:59.108 [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-05-08 14:37:59.108 [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-05-08 14:37:59.108 [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-05-08 14:37:59.108 [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-05-08 14:37:59.108 [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-05-08 14:37:59.108 [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-05-08 14:37:59.108 [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-05-08 14:37:59.108 [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-05-08 14:37:59.108 [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-05-08 14:37:59.108 [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-05-08 14:37:59.108 [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-05-08 14:37:59.108 [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-05-08 14:37:59.108 [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-05-08 14:37:59.108 [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-05-08 14:37:59.108 [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-05-08 14:37:59.108 [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-05-08 14:37:59.108 [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-05-08 14:37:59.108 [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-05-08 14:37:59.108 [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-05-08 14:37:59.109 [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-05-08 14:37:59.109 [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-05-08 14:37:59.109 [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-05-08 14:37:59.109 [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-05-08 14:37:59.109 [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-05-08 14:37:59.109 [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-05-08 14:37:59.109 [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-05-08 14:37:59.109 [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-05-08 14:37:59.109 [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-05-08 14:37:59.109 [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-05-08 14:37:59.109 [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-05-08 14:37:59.109 [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-05-08 14:37:59.109 [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-05-08 14:37:59.109 [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-05-08 14:37:59.109 [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-05-08 14:37:59.109 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiKprpzMapper' and 'com.tofly.feesapi.dzfp.mapper.EiKprpzMapper' mapperInterface. Bean already defined with the same name!
  53. 2026-05-08 14:37:59.109 [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!
  54. 2026-05-08 14:37:59.109 [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!
  55. 2026-05-08 14:37:59.109 [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!
  56. 2026-05-08 14:37:59.109 [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!
  57. 2026-05-08 14:37:59.109 [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!
  58. 2026-05-08 14:37:59.109 [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!
  59. 2026-05-08 14:37:59.109 [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!
  60. 2026-05-08 14:37:59.109 [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!
  61. 2026-05-08 14:37:59.109 [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!
  62. 2026-05-08 14:37:59.109 [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!
  63. 2026-05-08 14:37:59.109 [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!
  64. 2026-05-08 14:37:59.109 [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!
  65. 2026-05-08 14:37:59.110 [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!
  66. 2026-05-08 14:37:59.110 [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!
  67. 2026-05-08 14:37:59.110 [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!
  68. 2026-05-08 14:37:59.110 [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!
  69. 2026-05-08 14:37:59.110 [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!
  70. 2026-05-08 14:37:59.110 [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!
  71. 2026-05-08 14:37:59.110 [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!
  72. 2026-05-08 14:37:59.110 [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!
  73. 2026-05-08 14:37:59.110 [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!
  74. 2026-05-08 14:37:59.110 [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!
  75. 2026-05-08 14:37:59.110 [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!
  76. 2026-05-08 14:37:59.110 [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!
  77. 2026-05-08 14:37:59.110 [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!
  78. 2026-05-08 14:37:59.110 [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!
  79. 2026-05-08 14:37:59.110 [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!
  80. 2026-05-08 14:37:59.110 [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!
  81. 2026-05-08 14:37:59.110 [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!
  82. 2026-05-08 14:37:59.110 [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!
  83. 2026-05-08 14:37:59.110 [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!
  84. 2026-05-08 14:37:59.110 [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!
  85. 2026-05-08 14:37:59.110 [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!
  86. 2026-05-08 14:37:59.110 [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!
  87. 2026-05-08 14:37:59.110 [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!
  88. 2026-05-08 14:37:59.111 [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!
  89. 2026-05-08 14:37:59.111 [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!
  90. 2026-05-08 14:37:59.111 [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!
  91. 2026-05-08 14:37:59.111 [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!
  92. 2026-05-08 14:37:59.111 [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!
  93. 2026-05-08 14:37:59.111 [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!
  94. 2026-05-08 14:37:59.111 [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!
  95. 2026-05-08 14:37:59.111 [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!
  96. 2026-05-08 14:37:59.111 [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!
  97. 2026-05-08 14:37:59.111 [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!
  98. 2026-05-08 14:37:59.111 [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!
  99. 2026-05-08 14:37:59.111 [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!
  100. 2026-05-08 14:37:59.111 [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!
  101. 2026-05-08 14:37:59.111 [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!
  102. 2026-05-08 14:37:59.111 [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!
  103. 2026-05-08 14:37:59.111 [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!
  104. 2026-05-08 14:37:59.111 [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!
  105. 2026-05-08 14:37:59.111 [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!
  106. 2026-05-08 14:37:59.111 [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!
  107. 2026-05-08 14:37:59.111 [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!
  108. 2026-05-08 14:37:59.111 [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!
  109. 2026-05-08 14:37:59.111 [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!
  110. 2026-05-08 14:37:59.111 [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!
  111. 2026-05-08 14:37:59.112 [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!
  112. 2026-05-08 14:37:59.112 [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!
  113. 2026-05-08 14:37:59.112 [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!
  114. 2026-05-08 14:37:59.112 [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!
  115. 2026-05-08 14:37:59.112 [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!
  116. 2026-05-08 14:37:59.112 [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!
  117. 2026-05-08 14:37:59.112 [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!
  118. 2026-05-08 14:37:59.112 [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!
  119. 2026-05-08 14:37:59.112 [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!
  120. 2026-05-08 14:37:59.112 [main] WARN o.m.s.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.tofly.feesapi.**.mapper]' package. Please check your configuration.
  121. 2026-05-08 14:37:59.239 [main] INFO o.s.cloud.context.scope.GenericScope - BeanFactory id=6ba9fcc8-98cb-35e6-8547-52fc325bd065
  122. 2026-05-08 14:37:59.309 [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)
  123. 2026-05-08 14:37:59.590 [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)
  124. 2026-05-08 14:37:59.604 [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$$fe2bee58] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  125. 2026-05-08 14:37:59.632 [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)
  126. 2026-05-08 14:37:59.680 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@2bba35ef' 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)
  127. 2026-05-08 14:37:59.702 [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)
  128. 2026-05-08 14:38:00.110 [main] WARN io.undertow.websockets.jsr - UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
  129. 2026-05-08 14:38:00.148 [main] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  130. 2026-05-08 14:38:00.149 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 4482 ms
  131. 2026-05-08 14:38:10.288 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1,master} inited
  132. 2026-05-08 14:38:11.203 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-2,udb} inited
  133. 2026-05-08 14:38:12.069 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-3,flowDB} inited
  134. 2026-05-08 14:38:12.070 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [udb] success
  135. 2026-05-08 14:38:12.070 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [flowDB] success
  136. 2026-05-08 14:38:12.070 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
  137. 2026-05-08 14:38:12.070 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [3] datasource,primary datasource named [master]
  138. 2026-05-08 14:38:14.571 [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]
  139. 2026-05-08 14:38:15.195 [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]
  140. 2026-05-08 14:38:16.786 [main] WARN c.b.m.core.metadata.TableInfoHelper - Can not find table primary key in Class: "com.tofly.feesapi.wxgl.wechatpay.entity.PaySelect".
  141. 2026-05-08 14:38:16.786 [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.
  142. 2026-05-08 14:38:16.814 [main] WARN c.b.m.core.metadata.TableInfoHelper - Can not find table primary key in Class: "com.tofly.feesapi.xtgl.entity.SysGdcsb".
  143. 2026-05-08 14:38:16.814 [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.
  144. 2026-05-08 14:38:22.141 [main] INFO org.redisson.Version - Redisson 3.23.2
  145. 2026-05-08 14:38:23.354 [redisson-netty-2-4] INFO o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 127.0.0.1/127.0.0.1:6379
  146. 2026-05-08 14:38:23.427 [redisson-netty-2-19] INFO o.r.c.pool.MasterConnectionPool - 24 connections initialized for 127.0.0.1/127.0.0.1:6379
  147. 2026-05-08 14:38:31.653 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
  148. 2026-05-08 14:38:31.870 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 19 endpoint(s) beneath base path '/actuator'
  149. 2026-05-08 14:38:32.016 [main] INFO s.d.s.w.WebMvcPropertySourcedRequestMappingHandlerMapping - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  150. 2026-05-08 14:38:32.233 [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]
  151. 2026-05-08 14:38:32.243 [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]
  152. 2026-05-08 14:38:32.559 [main] INFO o.s.s.c.ThreadPoolTaskScheduler - Initializing ExecutorService 'taskScheduler'
  153. 2026-05-08 14:38:32.797 [main] INFO o.s.b.a.s.s.UserDetailsServiceAutoConfiguration -
  154. Using generated security password: 92ef8d16-dadf-4cd2-a4fd-04fa7bddb062
  155. 2026-05-08 14:38:32.939 [main] INFO o.s.s.web.DefaultSecurityFilterChain - Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@1994665d, org.springframework.security.web.context.SecurityContextPersistenceFilter@43cc7bb7, org.springframework.security.web.header.HeaderWriterFilter@3b8ec458, org.springframework.security.web.authentication.logout.LogoutFilter@5331a22c, org.springframework.security.oauth2.provider.authentication.OAuth2AuthenticationProcessingFilter@181cafd, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@605610e5, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@61427cd3, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@4497fcd9, org.springframework.security.web.session.SessionManagementFilter@68628510, org.springframework.security.web.access.ExceptionTranslationFilter@690b6292, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@4788c0a1]
  156. 2026-05-08 14:38:34.428 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
  157. 2026-05-08 14:38:34.542 [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.
  158. 2026-05-08 14:38:34.687 [main] INFO s.d.s.w.p.DocumentationPluginsBootstrapper - Documentation plugins bootstrapped
  159. 2026-05-08 14:38:34.693 [main] INFO s.d.s.w.p.DocumentationPluginsBootstrapper - Found 1 custom documentation plugin(s)
  160. 2026-05-08 14:38:34.831 [main] INFO s.d.s.w.s.ApiListingReferenceScanner - Scanning for api listing references
  161. 2026-05-08 14:38:35.229 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_1
  162. 2026-05-08 14:38:35.235 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_1
  163. 2026-05-08 14:38:35.235 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_1
  164. 2026-05-08 14:38:35.235 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_1
  165. 2026-05-08 14:38:35.244 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_1
  166. 2026-05-08 14:38:35.246 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_1
  167. 2026-05-08 14:38:35.266 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: addCustomerUsingPOST_1
  168. 2026-05-08 14:38:35.266 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: deleteCustomerUsingPOST_1
  169. 2026-05-08 14:38:35.266 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getBindCustomerUsingGET_1
  170. 2026-05-08 14:38:35.266 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: selectCustomerUsingGET_1
  171. 2026-05-08 14:38:35.266 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getBindCustomerAndQfUsingGET_1
  172. 2026-05-08 14:38:35.274 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerBasicInFoUsingGET_1
  173. 2026-05-08 14:38:35.274 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerChargeInFoUsingGET_1
  174. 2026-05-08 14:38:35.276 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerInFoUsingGET_1
  175. 2026-05-08 14:38:35.277 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerQfInFoUsingGET_1
  176. 2026-05-08 14:38:35.277 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerReadMeterInFoUsingGET_1
  177. 2026-05-08 14:38:35.290 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_2
  178. 2026-05-08 14:38:35.316 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_2
  179. 2026-05-08 14:38:35.316 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_2
  180. 2026-05-08 14:38:35.316 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_2
  181. 2026-05-08 14:38:35.325 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_2
  182. 2026-05-08 14:38:35.326 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_2
  183. 2026-05-08 14:38:35.344 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_3
  184. 2026-05-08 14:38:35.345 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_3
  185. 2026-05-08 14:38:35.347 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_3
  186. 2026-05-08 14:38:35.348 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_3
  187. 2026-05-08 14:38:35.348 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_3
  188. 2026-05-08 14:38:35.358 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_3
  189. 2026-05-08 14:38:35.367 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_4
  190. 2026-05-08 14:38:35.367 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_4
  191. 2026-05-08 14:38:35.367 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_4
  192. 2026-05-08 14:38:35.367 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_4
  193. 2026-05-08 14:38:35.373 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_4
  194. 2026-05-08 14:38:35.375 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_5
  195. 2026-05-08 14:38:35.376 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_5
  196. 2026-05-08 14:38:35.376 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_5
  197. 2026-05-08 14:38:35.377 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_5
  198. 2026-05-08 14:38:35.377 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_5
  199. 2026-05-08 14:38:35.389 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_4
  200. 2026-05-08 14:38:35.390 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_6
  201. 2026-05-08 14:38:35.398 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_5
  202. 2026-05-08 14:38:35.405 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_6
  203. 2026-05-08 14:38:35.406 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_6
  204. 2026-05-08 14:38:35.409 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_6
  205. 2026-05-08 14:38:35.409 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_6
  206. 2026-05-08 14:38:35.409 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_1
  207. 2026-05-08 14:38:35.421 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_7
  208. 2026-05-08 14:38:35.421 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_7
  209. 2026-05-08 14:38:35.421 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_7
  210. 2026-05-08 14:38:35.424 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_7
  211. 2026-05-08 14:38:35.427 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_7
  212. 2026-05-08 14:38:35.428 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_8
  213. 2026-05-08 14:38:35.428 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getFffsListUsingGET_1
  214. 2026-05-08 14:38:35.428 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_8
  215. 2026-05-08 14:38:35.428 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_9
  216. 2026-05-08 14:38:35.438 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_8
  217. 2026-05-08 14:38:35.439 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_8
  218. 2026-05-08 14:38:35.439 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_2
  219. 2026-05-08 14:38:35.449 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_9
  220. 2026-05-08 14:38:35.453 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_10
  221. 2026-05-08 14:38:35.454 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_11
  222. 2026-05-08 14:38:35.456 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_9
  223. 2026-05-08 14:38:35.456 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_9
  224. 2026-05-08 14:38:35.459 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_10
  225. 2026-05-08 14:38:35.459 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_12
  226. 2026-05-08 14:38:35.459 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_13
  227. 2026-05-08 14:38:35.468 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_10
  228. 2026-05-08 14:38:35.469 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_10
  229. 2026-05-08 14:38:35.470 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_11
  230. 2026-05-08 14:38:35.470 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_14
  231. 2026-05-08 14:38:35.470 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_15
  232. 2026-05-08 14:38:35.480 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_11
  233. 2026-05-08 14:38:35.482 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_11
  234. 2026-05-08 14:38:35.489 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_12
  235. 2026-05-08 14:38:35.491 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_16
  236. 2026-05-08 14:38:35.491 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_8
  237. 2026-05-08 14:38:35.491 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_12
  238. 2026-05-08 14:38:35.491 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_12
  239. 2026-05-08 14:38:35.500 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_13
  240. 2026-05-08 14:38:35.500 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_17
  241. 2026-05-08 14:38:35.504 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_9
  242. 2026-05-08 14:38:35.507 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_13
  243. 2026-05-08 14:38:35.510 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_13
  244. 2026-05-08 14:38:35.510 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_14
  245. 2026-05-08 14:38:35.515 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_18
  246. 2026-05-08 14:38:35.519 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_19
  247. 2026-05-08 14:38:35.523 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_14
  248. 2026-05-08 14:38:35.523 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_14
  249. 2026-05-08 14:38:35.531 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_15
  250. 2026-05-08 14:38:35.550 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_6
  251. 2026-05-08 14:38:35.572 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_15
  252. 2026-05-08 14:38:35.584 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_3
  253. 2026-05-08 14:38:35.592 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_16
  254. 2026-05-08 14:38:35.592 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_20
  255. 2026-05-08 14:38:35.592 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_10
  256. 2026-05-08 14:38:35.592 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_16
  257. 2026-05-08 14:38:35.592 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_15
  258. 2026-05-08 14:38:35.602 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_17
  259. 2026-05-08 14:38:35.611 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_7
  260. 2026-05-08 14:38:35.612 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_21
  261. 2026-05-08 14:38:35.612 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_11
  262. 2026-05-08 14:38:35.616 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_17
  263. 2026-05-08 14:38:35.616 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_16
  264. 2026-05-08 14:38:35.633 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_8
  265. 2026-05-08 14:38:35.637 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveBatchUsingPOST_1
  266. 2026-05-08 14:38:35.791 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_18
  267. 2026-05-08 14:38:35.797 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_22
  268. 2026-05-08 14:38:35.797 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_12
  269. 2026-05-08 14:38:35.797 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_18
  270. 2026-05-08 14:38:35.804 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_17
  271. 2026-05-08 14:38:35.805 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_19
  272. 2026-05-08 14:38:35.808 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_23
  273. 2026-05-08 14:38:35.808 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_13
  274. 2026-05-08 14:38:35.808 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_19
  275. 2026-05-08 14:38:35.816 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_18
  276. 2026-05-08 14:38:35.817 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_20
  277. 2026-05-08 14:38:35.820 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_24
  278. 2026-05-08 14:38:35.822 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_20
  279. 2026-05-08 14:38:35.822 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_19
  280. 2026-05-08 14:38:35.829 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_21
  281. 2026-05-08 14:38:35.829 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_25
  282. 2026-05-08 14:38:35.837 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_14
  283. 2026-05-08 14:38:35.838 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_21
  284. 2026-05-08 14:38:35.867 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: Xh_WordToPdfUsingPOST_1
  285. 2026-05-08 14:38:35.871 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_22
  286. 2026-05-08 14:38:35.879 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_26
  287. 2026-05-08 14:38:35.879 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_15
  288. 2026-05-08 14:38:35.879 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_22
  289. 2026-05-08 14:38:35.888 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_27
  290. 2026-05-08 14:38:35.889 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_16
  291. 2026-05-08 14:38:35.889 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_23
  292. 2026-05-08 14:38:35.889 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_20
  293. 2026-05-08 14:38:35.910 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_23
  294. 2026-05-08 14:38:36.023 [main] WARN s.d.s.w.r.p.ParameterTypeReader - @ModelAttribute annotated parameters should have already been expanded via the ExpandedParameterBuilderPlugin
  295. 2026-05-08 14:38:36.023 [main] WARN s.d.s.w.r.p.ParameterTypeReader - @ModelAttribute annotated parameters should have already been expanded via the ExpandedParameterBuilderPlugin
  296. 2026-05-08 14:38:36.034 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportYsqdUsingGET_1
  297. 2026-05-08 14:38:36.105 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_24
  298. 2026-05-08 14:38:36.105 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_28
  299. 2026-05-08 14:38:36.105 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_17
  300. 2026-05-08 14:38:36.133 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_25
  301. 2026-05-08 14:38:36.133 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_29
  302. 2026-05-08 14:38:36.136 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_18
  303. 2026-05-08 14:38:36.138 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_24
  304. 2026-05-08 14:38:36.140 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_21
  305. 2026-05-08 14:38:36.152 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_26
  306. 2026-05-08 14:38:36.159 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_30
  307. 2026-05-08 14:38:36.160 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_19
  308. 2026-05-08 14:38:36.163 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_25
  309. 2026-05-08 14:38:36.164 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_22
  310. 2026-05-08 14:38:36.166 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_27
  311. 2026-05-08 14:38:36.171 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_31
  312. 2026-05-08 14:38:36.172 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_20
  313. 2026-05-08 14:38:36.174 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_26
  314. 2026-05-08 14:38:36.174 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_23
  315. 2026-05-08 14:38:36.187 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_28
  316. 2026-05-08 14:38:36.195 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_32
  317. 2026-05-08 14:38:36.196 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_21
  318. 2026-05-08 14:38:36.197 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_27
  319. 2026-05-08 14:38:36.203 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_24
  320. 2026-05-08 14:38:36.209 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxBtsqPageUsingGET_1
  321. 2026-05-08 14:38:36.215 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_29
  322. 2026-05-08 14:38:36.225 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_33
  323. 2026-05-08 14:38:36.225 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_22
  324. 2026-05-08 14:38:36.230 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_28
  325. 2026-05-08 14:38:36.234 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_25
  326. 2026-05-08 14:38:36.238 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxBzsqPageUsingGET_1
  327. 2026-05-08 14:38:36.250 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_30
  328. 2026-05-08 14:38:36.259 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_34
  329. 2026-05-08 14:38:36.259 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_23
  330. 2026-05-08 14:38:36.265 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_29
  331. 2026-05-08 14:38:36.268 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_26
  332. 2026-05-08 14:38:36.277 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxDbsqPageUsingGET_1
  333. 2026-05-08 14:38:36.279 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPOST_1
  334. 2026-05-08 14:38:36.282 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_31
  335. 2026-05-08 14:38:36.287 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_35
  336. 2026-05-08 14:38:36.290 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_24
  337. 2026-05-08 14:38:36.291 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_30
  338. 2026-05-08 14:38:36.291 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_27
  339. 2026-05-08 14:38:36.291 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_32
  340. 2026-05-08 14:38:36.299 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_36
  341. 2026-05-08 14:38:36.300 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_25
  342. 2026-05-08 14:38:36.305 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_31
  343. 2026-05-08 14:38:36.308 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_28
  344. 2026-05-08 14:38:36.310 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_33
  345. 2026-05-08 14:38:36.312 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_37
  346. 2026-05-08 14:38:36.314 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_26
  347. 2026-05-08 14:38:36.318 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_32
  348. 2026-05-08 14:38:36.320 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_29
  349. 2026-05-08 14:38:36.331 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_34
  350. 2026-05-08 14:38:36.338 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_38
  351. 2026-05-08 14:38:36.340 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_39
  352. 2026-05-08 14:38:36.344 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_33
  353. 2026-05-08 14:38:36.345 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_30
  354. 2026-05-08 14:38:36.348 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_35
  355. 2026-05-08 14:38:36.351 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_40
  356. 2026-05-08 14:38:36.351 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_27
  357. 2026-05-08 14:38:36.362 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_34
  358. 2026-05-08 14:38:36.362 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_31
  359. 2026-05-08 14:38:36.376 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxHfsqPageUsingGET_1
  360. 2026-05-08 14:38:36.380 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_36
  361. 2026-05-08 14:38:36.386 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_41
  362. 2026-05-08 14:38:36.388 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_28
  363. 2026-05-08 14:38:36.391 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_35
  364. 2026-05-08 14:38:36.393 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_32
  365. 2026-05-08 14:38:36.404 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxLwsqPageUsingGET_1
  366. 2026-05-08 14:38:36.406 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_37
  367. 2026-05-08 14:38:36.413 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_42
  368. 2026-05-08 14:38:36.415 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_29
  369. 2026-05-08 14:38:36.419 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_36
  370. 2026-05-08 14:38:36.421 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_33
  371. 2026-05-08 14:38:36.429 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxLxdhsqPageUsingGET_1
  372. 2026-05-08 14:38:36.432 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_38
  373. 2026-05-08 14:38:36.439 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_43
  374. 2026-05-08 14:38:36.440 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_30
  375. 2026-05-08 14:38:36.447 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_37
  376. 2026-05-08 14:38:36.449 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_34
  377. 2026-05-08 14:38:36.463 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_39
  378. 2026-05-08 14:38:36.469 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_44
  379. 2026-05-08 14:38:36.472 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_31
  380. 2026-05-08 14:38:36.477 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_38
  381. 2026-05-08 14:38:36.479 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_35
  382. 2026-05-08 14:38:36.488 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxDbsqPageUsingGET_2
  383. 2026-05-08 14:38:36.499 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_1
  384. 2026-05-08 14:38:36.502 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_40
  385. 2026-05-08 14:38:36.506 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_45
  386. 2026-05-08 14:38:36.508 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_32
  387. 2026-05-08 14:38:36.513 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_39
  388. 2026-05-08 14:38:36.524 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_36
  389. 2026-05-08 14:38:36.526 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_41
  390. 2026-05-08 14:38:36.530 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_46
  391. 2026-05-08 14:38:36.531 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_33
  392. 2026-05-08 14:38:36.535 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_40
  393. 2026-05-08 14:38:36.538 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_37
  394. 2026-05-08 14:38:36.541 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_42
  395. 2026-05-08 14:38:36.546 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_47
  396. 2026-05-08 14:38:36.547 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_34
  397. 2026-05-08 14:38:36.551 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_41
  398. 2026-05-08 14:38:36.553 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_38
  399. 2026-05-08 14:38:36.556 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_43
  400. 2026-05-08 14:38:36.559 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_48
  401. 2026-05-08 14:38:36.561 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_49
  402. 2026-05-08 14:38:36.565 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_42
  403. 2026-05-08 14:38:36.567 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_39
  404. 2026-05-08 14:38:36.569 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_44
  405. 2026-05-08 14:38:36.573 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_50
  406. 2026-05-08 14:38:36.575 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_51
  407. 2026-05-08 14:38:36.578 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_43
  408. 2026-05-08 14:38:36.579 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_40
  409. 2026-05-08 14:38:36.582 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_45
  410. 2026-05-08 14:38:36.589 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_52
  411. 2026-05-08 14:38:36.590 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_35
  412. 2026-05-08 14:38:36.593 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_44
  413. 2026-05-08 14:38:36.595 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_41
  414. 2026-05-08 14:38:36.603 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxWzjbsqPageUsingGET_1
  415. 2026-05-08 14:38:36.606 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_46
  416. 2026-05-08 14:38:36.611 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_53
  417. 2026-05-08 14:38:36.611 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_36
  418. 2026-05-08 14:38:36.618 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_45
  419. 2026-05-08 14:38:36.619 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_42
  420. 2026-05-08 14:38:36.628 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxXbsqPageUsingGET_1
  421. 2026-05-08 14:38:36.631 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_47
  422. 2026-05-08 14:38:36.638 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_54
  423. 2026-05-08 14:38:36.639 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_37
  424. 2026-05-08 14:38:36.642 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_46
  425. 2026-05-08 14:38:36.642 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_43
  426. 2026-05-08 14:38:36.655 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxXhsqPageUsingGET_1
  427. 2026-05-08 14:38:36.657 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPOST_2
  428. 2026-05-08 14:38:36.660 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_48
  429. 2026-05-08 14:38:36.660 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_55
  430. 2026-05-08 14:38:36.660 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_38
  431. 2026-05-08 14:38:36.669 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_47
  432. 2026-05-08 14:38:36.671 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_44
  433. 2026-05-08 14:38:36.673 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_49
  434. 2026-05-08 14:38:36.680 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_56
  435. 2026-05-08 14:38:36.680 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_39
  436. 2026-05-08 14:38:36.680 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_48
  437. 2026-05-08 14:38:36.680 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_45
  438. 2026-05-08 14:38:36.691 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_9
  439. 2026-05-08 14:38:36.691 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_57
  440. 2026-05-08 14:38:36.698 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_40
  441. 2026-05-08 14:38:36.700 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_49
  442. 2026-05-08 14:38:36.704 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_58
  443. 2026-05-08 14:38:36.706 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_41
  444. 2026-05-08 14:38:36.710 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_50
  445. 2026-05-08 14:38:36.711 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_10
  446. 2026-05-08 14:38:36.711 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_50
  447. 2026-05-08 14:38:36.726 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_59
  448. 2026-05-08 14:38:36.728 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_42
  449. 2026-05-08 14:38:36.731 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_51
  450. 2026-05-08 14:38:36.737 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_46
  451. 2026-05-08 14:38:36.738 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_2
  452. 2026-05-08 14:38:36.764 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_52
  453. 2026-05-08 14:38:36.777 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_51
  454. 2026-05-08 14:38:36.790 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_11
  455. 2026-05-08 14:38:36.804 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_1
  456. 2026-05-08 14:38:36.818 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_52
  457. 2026-05-08 14:38:36.819 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_43
  458. 2026-05-08 14:38:36.845 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_53
  459. 2026-05-08 14:38:36.853 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_60
  460. 2026-05-08 14:38:36.854 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_44
  461. 2026-05-08 14:38:36.857 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_53
  462. 2026-05-08 14:38:36.859 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_47
  463. 2026-05-08 14:38:36.862 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_54
  464. 2026-05-08 14:38:36.866 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_61
  465. 2026-05-08 14:38:36.868 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_45
  466. 2026-05-08 14:38:36.874 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_54
  467. 2026-05-08 14:38:36.883 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_48
  468. 2026-05-08 14:38:36.885 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_3
  469. 2026-05-08 14:38:36.888 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_62
  470. 2026-05-08 14:38:36.890 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_46
  471. 2026-05-08 14:38:36.892 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_55
  472. 2026-05-08 14:38:36.901 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_12
  473. 2026-05-08 14:38:36.909 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_63
  474. 2026-05-08 14:38:36.909 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_47
  475. 2026-05-08 14:38:36.912 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_56
  476. 2026-05-08 14:38:36.923 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_13
  477. 2026-05-08 14:38:36.926 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_55
  478. 2026-05-08 14:38:36.932 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_64
  479. 2026-05-08 14:38:36.933 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_48
  480. 2026-05-08 14:38:36.939 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_57
  481. 2026-05-08 14:38:36.943 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_49
  482. 2026-05-08 14:38:36.949 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_4
  483. 2026-05-08 14:38:36.973 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getDaCustomerPageUsingGET_1
  484. 2026-05-08 14:38:37.012 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_1
  485. 2026-05-08 14:38:37.024 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_14
  486. 2026-05-08 14:38:37.058 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_56
  487. 2026-05-08 14:38:37.107 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: delByIdUsingDELETE_1
  488. 2026-05-08 14:38:37.108 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: delByIdsUsingDELETE_1
  489. 2026-05-08 14:38:37.110 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: disableUsingPUT_1
  490. 2026-05-08 14:38:37.112 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: enableUsingPUT_1
  491. 2026-05-08 14:38:37.114 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: importExcelUsingPOST_1
  492. 2026-05-08 14:38:37.117 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_2
  493. 2026-05-08 14:38:37.125 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_3
  494. 2026-05-08 14:38:37.146 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_5
  495. 2026-05-08 14:38:37.148 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_6
  496. 2026-05-08 14:38:37.150 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_7
  497. 2026-05-08 14:38:37.153 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_57
  498. 2026-05-08 14:38:37.165 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_49
  499. 2026-05-08 14:38:37.194 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: addUsingPOST_1
  500. 2026-05-08 14:38:37.201 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_58
  501. 2026-05-08 14:38:37.210 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_65
  502. 2026-05-08 14:38:37.212 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_50
  503. 2026-05-08 14:38:37.217 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_58
  504. 2026-05-08 14:38:37.223 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: save_gdUsingPOST_1
  505. 2026-05-08 14:38:37.235 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_50
  506. 2026-05-08 14:38:37.252 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_59
  507. 2026-05-08 14:38:37.259 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_66
  508. 2026-05-08 14:38:37.261 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_51
  509. 2026-05-08 14:38:37.264 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_59
  510. 2026-05-08 14:38:37.266 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_51
  511. 2026-05-08 14:38:37.269 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_60
  512. 2026-05-08 14:38:37.274 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_67
  513. 2026-05-08 14:38:37.276 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_52
  514. 2026-05-08 14:38:37.282 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_60
  515. 2026-05-08 14:38:37.284 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: save_gdUsingPOST_2
  516. 2026-05-08 14:38:37.290 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_52
  517. 2026-05-08 14:38:37.292 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_8
  518. 2026-05-08 14:38:37.301 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_9
  519. 2026-05-08 14:38:37.317 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_61
  520. 2026-05-08 14:38:37.384 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_2
  521. 2026-05-08 14:38:37.393 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_62
  522. 2026-05-08 14:38:37.397 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_15
  523. 2026-05-08 14:38:37.446 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_4
  524. 2026-05-08 14:38:37.456 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_10
  525. 2026-05-08 14:38:37.466 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_63
  526. 2026-05-08 14:38:37.477 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_68
  527. 2026-05-08 14:38:37.477 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_53
  528. 2026-05-08 14:38:37.497 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_61
  529. 2026-05-08 14:38:37.503 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_53
  530. 2026-05-08 14:38:37.578 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_54
  531. 2026-05-08 14:38:37.701 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_16
  532. 2026-05-08 14:38:37.790 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getListUsingGET_1
  533. 2026-05-08 14:38:37.844 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_64
  534. 2026-05-08 14:38:37.895 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: statUsingGET_1
  535. 2026-05-08 14:38:37.937 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_11
  536. 2026-05-08 14:38:37.941 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_65
  537. 2026-05-08 14:38:37.956 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_69
  538. 2026-05-08 14:38:37.957 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_54
  539. 2026-05-08 14:38:38.000 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_62
  540. 2026-05-08 14:38:38.005 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_55
  541. 2026-05-08 14:38:38.009 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_66
  542. 2026-05-08 14:38:38.017 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_63
  543. 2026-05-08 14:38:38.020 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_56
  544. 2026-05-08 14:38:38.033 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_12
  545. 2026-05-08 14:38:38.071 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_64
  546. 2026-05-08 14:38:38.112 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_17
  547. 2026-05-08 14:38:38.135 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: monthlyStatUsingGET_1
  548. 2026-05-08 14:38:38.143 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: monthlyStatSummaryUsingGET_1
  549. 2026-05-08 14:38:38.144 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getListUsingGET_2
  550. 2026-05-08 14:38:38.234 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_67
  551. 2026-05-08 14:38:38.273 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageListUsingGET_1
  552. 2026-05-08 14:38:38.276 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: statUsingGET_2
  553. 2026-05-08 14:38:38.325 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_13
  554. 2026-05-08 14:38:38.328 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_14
  555. 2026-05-08 14:38:38.378 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_65
  556. 2026-05-08 14:38:38.391 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_68
  557. 2026-05-08 14:38:38.458 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getYyWyjtzPageUsingGET_1
  558. 2026-05-08 14:38:38.458 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_15
  559. 2026-05-08 14:38:38.458 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_5
  560. 2026-05-08 14:38:38.477 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_18
  561. 2026-05-08 14:38:38.477 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_16
  562. 2026-05-08 14:38:38.500 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_19
  563. 2026-05-08 14:38:38.500 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_17
  564. 2026-05-08 14:38:38.569 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_20
  565. 2026-05-08 14:38:38.569 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_18
  566. 2026-05-08 14:38:38.579 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_69
  567. 2026-05-08 14:38:38.590 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_70
  568. 2026-05-08 14:38:38.590 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_55
  569. 2026-05-08 14:38:38.600 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_66
  570. 2026-05-08 14:38:38.600 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_57
  571. 2026-05-08 14:38:38.610 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_70
  572. 2026-05-08 14:38:38.614 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_71
  573. 2026-05-08 14:38:38.614 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_56
  574. 2026-05-08 14:38:38.630 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_67
  575. 2026-05-08 14:38:38.635 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_58
  576. 2026-05-08 14:38:38.640 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_21
  577. 2026-05-08 14:38:38.640 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_3
  578. 2026-05-08 14:38:38.650 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_68
  579. 2026-05-08 14:38:38.661 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_22
  580. 2026-05-08 14:38:38.722 [main] INFO io.undertow - starting server: Undertow - 2.0.31.Final
  581. 2026-05-08 14:38:38.735 [main] INFO org.xnio - XNIO version 3.3.8.Final
  582. 2026-05-08 14:38:38.742 [main] INFO org.xnio.nio - XNIO NIO Implementation Version 3.3.8.Final
  583. 2026-05-08 14:38:38.816 [main] INFO o.s.b.w.e.u.UndertowServletWebServer - Undertow started on port(s) 10506 (http) with context path ''
  584. 2026-05-08 14:38:38.874 [main] INFO c.a.c.n.r.NacosServiceRegistry - nacos registry, DEFAULT_GROUP collect-fees-api 172.19.0.10:10506 register finished
  585. 2026-05-08 14:38:40.196 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
  586. 2026-05-08 14:38:40.197 [main] INFO com.tofly.feesapi.FeesApiApplication - Started FeesApiApplication in 49.042 seconds (JVM running for 51.058)
  587. 2026-05-08 14:38:40.748 [RMI TCP Connection(5)-192.168.1.105] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  588. 2026-05-08 14:38:40.749 [RMI TCP Connection(5)-192.168.1.105] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  589. 2026-05-08 14:38:40.762 [RMI TCP Connection(5)-192.168.1.105] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 13 ms
  590. 2026-05-08 15:07:27.388 [XNIO-1 task-5] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/api/sfgl/yyqfmx/getpagelist/getPageList】请求开始==================
  591. 2026-05-08 15:07:27.736 [XNIO-1 task-5] DEBUG c.t.f.s.m.Y.getPageList_mpCount - ==> Preparing: SELECT COUNT(*) AS total FROM yy_qfmx a WHERE 1 = 1 AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?)
  592. 2026-05-08 15:07:27.790 [XNIO-1 task-5] DEBUG c.t.f.s.m.Y.getPageList_mpCount - ==> Parameters: 10753(String)
  593. 2026-05-08 15:07:28.079 [XNIO-1 task-5] DEBUG c.t.f.s.m.Y.getPageList_mpCount - <== Total: 1
  594. 2026-05-08 15:07:28.087 [XNIO-1 task-5] DEBUG c.t.f.s.m.YyQfmxMapper.getPageList - ==> Preparing: SELECT * FROM ( SELECT TMP.*, ROWNUM ROW_ID FROM ( SELECT a.*, b.yhdz, b.lxdh, (nvl(a.ysje, 0) + nvl(a.znj, 0)) yszje, c.gdbz, d.name as ysxzmc, d.sjmc from yy_qfmx a left join yh_khjbxx b on a.yhbh = b.yhbh left join yy_qfmx_gd c on a.gdlsbh=c.gdlsbh left join ( select sj.code, sj.name as sjmc, yslx.name,yslx.code as ysxzbm from bm_sj sj left join bm_yslx yslx on sj.yslx=yslx.code ) d on a.sjbm = d.code WHERE 1=1 AND a.sscbb in (select cbbbm from yh_sjqx where user_id=?) ) TMP WHERE ROWNUM <=?) WHERE ROW_ID > ?
  595. 2026-05-08 15:07:28.090 [XNIO-1 task-5] DEBUG c.t.f.s.m.YyQfmxMapper.getPageList - ==> Parameters: 10753(String), 20(Long), 0(Long)
  596. 2026-05-08 15:07:29.018 [XNIO-1 task-5] DEBUG c.t.f.s.m.YyQfmxMapper.getPageList - <== Total: 20
  597. 2026-05-08 15:07:29.022 [XNIO-1 task-5] DEBUG c.t.f.s.m.YyQfmxMapper.getPageCount - ==> Preparing: SELECT sum(case when a.fylx='1' or a.fylx='2' then nvl(yssl,0) else 0 end) zyssl, sum(nvl(yssf,0)) zyssf, sum(nvl(yswsf,0)) zyswsf, sum(nvl(ysljf,0)) zysljf, sum(nvl(ysszyf,0)) zysszyf, sum( nvl(ysecjyf, 0) ) zysecjyf, sum( nvl(ysfjf, 0) ) zysfjf, sum( nvl(ysqt, 0) ) zysqt, sum(nvl(ysje,0)) zysje, sum(nvl(znj,0)) zznj, sum(nvl(ysje,0)+nvl(znj,0)) zyszje from yy_qfmx a left join yh_khjbxx b on a.yhbh = b.yhbh left join yy_qfmx_gd c on a.gdlsbh=c.gdlsbh left join ( select sj.code, sj.name as sjmc, yslx.name,yslx.code as ysxzbm from bm_sj sj left join bm_yslx yslx on sj.yslx=yslx.code ) d on a.sjbm = d.code WHERE 1=1 AND a.sscbb in (select cbbbm from yh_sjqx where user_id=?)
  598. 2026-05-08 15:07:29.022 [XNIO-1 task-5] DEBUG c.t.f.s.m.YyQfmxMapper.getPageCount - ==> Parameters: 10753(String)
  599. 2026-05-08 15:07:34.475 [XNIO-1 task-5] DEBUG c.t.f.s.m.YyQfmxMapper.getPageCount - <== Total: 1
  600. 2026-05-08 15:07:34.489 [XNIO-1 task-5] INFO c.t.feesapi.common.LogRecordAspect - =================【getPageList】请求结束==================
  601. 2026-05-08 15:20:21.287 [XNIO-1 task-6] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/api/sfgl/yyqfmx/getpagelist/getPageList】请求开始==================
  602. 2026-05-08 15:20:21.374 [XNIO-1 task-6] DEBUG c.t.f.s.m.Y.getPageList_mpCount - ==> Preparing: SELECT COUNT(*) AS total FROM yy_qfmx a WHERE 1 = 1 AND a.chbz IN (?, ?, ?) AND a.ssgs = ? AND a.jsrq >= ? + 0 AND a.jsrq <= ? + 0 AND a.khbm > ' ' AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?)
  603. 2026-05-08 15:20:21.605 [XNIO-1 task-6] DEBUG c.t.f.s.m.Y.getPageList_mpCount - ==> Parameters: 0(String), 1(String), 2(String), 1(String), 2026-04-01T00:00(LocalDateTime), 2026-05-31T23:59:59(LocalDateTime), 10753(String)
  604. 2026-05-08 15:20:21.710 [XNIO-1 task-6] DEBUG c.t.f.s.m.Y.getPageList_mpCount - <== Total: 1
  605. 2026-05-08 15:20:21.761 [XNIO-1 task-6] DEBUG c.t.f.s.m.YyQfmxMapper.getPageList - ==> Preparing: SELECT * FROM ( SELECT TMP.*, ROWNUM ROW_ID FROM ( SELECT a.*, b.yhdz, b.lxdh, (nvl(a.ysje, 0) + nvl(a.znj, 0)) yszje, c.gdbz, d.name AS ysxzmc, d.sjmc FROM yy_qfmx a LEFT JOIN yh_khjbxx b ON a.yhbh = b.yhbh LEFT JOIN yy_qfmx_gd c ON a.gdlsbh = c.gdlsbh LEFT JOIN (SELECT sj.code, sj.name AS sjmc, yslx.name, yslx.code AS ysxzbm FROM bm_sj sj LEFT JOIN bm_yslx yslx ON sj.yslx = yslx.code) d ON a.sjbm = d.code WHERE 1 = 1 AND a.chbz IN (?, ?, ?) AND a.ssgs = ? AND a.jsrq >= ? + 0 AND a.jsrq <= ? + 0 AND a.khbm > ' ' AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?) ORDER BY ysyf ASC ) TMP WHERE ROWNUM <=?) WHERE ROW_ID > ?
  606. 2026-05-08 15:20:21.761 [XNIO-1 task-6] DEBUG c.t.f.s.m.YyQfmxMapper.getPageList - ==> Parameters: 0(String), 1(String), 2(String), 1(String), 2026-04-01T00:00(LocalDateTime), 2026-05-31T23:59:59(LocalDateTime), 10753(String), 20(Long), 0(Long)
  607. 2026-05-08 15:20:22.041 [XNIO-1 task-6] DEBUG c.t.f.s.m.YyQfmxMapper.getPageList - <== Total: 20
  608. 2026-05-08 15:20:22.043 [XNIO-1 task-6] DEBUG c.t.f.s.m.YyQfmxMapper.getPageCount - ==> Preparing: SELECT sum(case when a.fylx='1' or a.fylx='2' then nvl(yssl,0) else 0 end) zyssl, sum(nvl(yssf,0)) zyssf, sum(nvl(yswsf,0)) zyswsf, sum(nvl(ysljf,0)) zysljf, sum(nvl(ysszyf,0)) zysszyf, sum( nvl(ysecjyf, 0) ) zysecjyf, sum( nvl(ysfjf, 0) ) zysfjf, sum( nvl(ysqt, 0) ) zysqt, sum(nvl(ysje,0)) zysje, sum(nvl(znj,0)) zznj, sum(nvl(ysje,0)+nvl(znj,0)) zyszje from yy_qfmx a left join yh_khjbxx b on a.yhbh = b.yhbh left join yy_qfmx_gd c on a.gdlsbh=c.gdlsbh left join ( select sj.code, sj.name as sjmc, yslx.name,yslx.code as ysxzbm from bm_sj sj left join bm_yslx yslx on sj.yslx=yslx.code ) d on a.sjbm = d.code WHERE 1=1 AND a.chbz in ( ? , ? , ? ) AND a.ssgs=? and a.jsrq >=?+0 and a.jsrq <= ?+0 AND a.khbm >' ' AND a.sscbb in (select cbbbm from yh_sjqx where user_id=?)
  609. 2026-05-08 15:20:22.044 [XNIO-1 task-6] DEBUG c.t.f.s.m.YyQfmxMapper.getPageCount - ==> Parameters: 0(String), 1(String), 2(String), 1(String), 2026-04-01T00:00(LocalDateTime), 2026-05-31T23:59:59(LocalDateTime), 10753(String)
  610. 2026-05-08 15:20:22.161 [XNIO-1 task-6] DEBUG c.t.f.s.m.YyQfmxMapper.getPageCount - <== Total: 1
  611. 2026-05-08 15:20:22.162 [XNIO-1 task-6] INFO c.t.feesapi.common.LogRecordAspect - =================【getPageList】请求结束==================
  612. 2026-05-08 15:23:50.370 [XNIO-1 task-7] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/api/sfgl/yyqfmx/getpagelist/getPageList】请求开始==================
  613. 2026-05-08 15:23:50.448 [XNIO-1 task-7] DEBUG c.t.f.s.m.Y.getPageListByKhbm_mpCount - ==> Preparing: SELECT COUNT(*) FROM (SELECT khbm, max(yhxm) yhxm, max(yhdz) yhdz, sum(CASE WHEN fylx IN ('1', '2') THEN yssl ELSE 0 END) yssl, sum(yswsf) yswsf, sum(yssf) yssf, sum(ysecjyf) ysecjyf, sum(ysqt) ysqt, sum(ysfjf) ysfjf, sum(ysszyf) ysszyf, sum(ysje) ysje FROM (SELECT a.*, b.yhdz, b.lxdh, (nvl(a.ysje, 0) + nvl(a.znj, 0)) yszje, c.gdbz, d.name AS ysxzmc, d.sjmc FROM yy_qfmx a LEFT JOIN yh_khjbxx b ON a.yhbh = b.yhbh LEFT JOIN yy_qfmx_gd c ON a.gdlsbh = c.gdlsbh LEFT JOIN (SELECT sj.code, sj.name AS sjmc, yslx.name, yslx.code AS ysxzbm FROM bm_sj sj LEFT JOIN bm_yslx yslx ON sj.yslx = yslx.code) d ON a.sjbm = d.code WHERE 1 = 1 AND a.chbz IN (?, ?, ?) AND a.ssgs = ? AND a.jsrq >= ? + 0 AND a.jsrq <= ? + 0 AND a.khbm > ' ' AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?)) GROUP BY khbm ORDER BY khbm) TOTAL
  614. 2026-05-08 15:23:50.450 [XNIO-1 task-7] DEBUG c.t.f.s.m.Y.getPageListByKhbm_mpCount - ==> Parameters: 0(String), 1(String), 2(String), 1(String), 2026-04-01T00:00(LocalDateTime), 2026-05-31T23:59:59(LocalDateTime), 10753(String)
  615. 2026-05-08 15:23:50.578 [XNIO-1 task-7] DEBUG c.t.f.s.m.Y.getPageListByKhbm_mpCount - <== Total: 1
  616. 2026-05-08 15:23:50.587 [XNIO-1 task-7] DEBUG c.t.f.s.m.Y.getPageListByKhbm - ==> Preparing: SELECT * FROM ( SELECT TMP.*, ROWNUM ROW_ID FROM ( SELECT khbm, max(yhxm) yhxm, max(yhdz) yhdz, sum(CASE WHEN fylx IN ('1', '2') THEN yssl ELSE 0 END) yssl, sum(yswsf) yswsf, sum(yssf) yssf, sum(ysecjyf) ysecjyf, sum(ysqt) ysqt, sum(ysfjf) ysfjf, sum(ysszyf) ysszyf, sum(ysje) ysje FROM (SELECT a.*, b.yhdz, b.lxdh, (nvl(a.ysje, 0) + nvl(a.znj, 0)) yszje, c.gdbz, d.name AS ysxzmc, d.sjmc FROM yy_qfmx a LEFT JOIN yh_khjbxx b ON a.yhbh = b.yhbh LEFT JOIN yy_qfmx_gd c ON a.gdlsbh = c.gdlsbh LEFT JOIN (SELECT sj.code, sj.name AS sjmc, yslx.name, yslx.code AS ysxzbm FROM bm_sj sj LEFT JOIN bm_yslx yslx ON sj.yslx = yslx.code) d ON a.sjbm = d.code WHERE 1 = 1 AND a.chbz IN (?, ?, ?) AND a.ssgs = ? AND a.jsrq >= ? + 0 AND a.jsrq <= ? + 0 AND a.khbm > ' ' AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?)) GROUP BY khbm ORDER BY khbm, ysyf ASC ) TMP WHERE ROWNUM <=?) WHERE ROW_ID > ?
  617. 2026-05-08 15:23:50.588 [XNIO-1 task-7] DEBUG c.t.f.s.m.Y.getPageListByKhbm - ==> Parameters: 0(String), 1(String), 2(String), 1(String), 2026-04-01T00:00(LocalDateTime), 2026-05-31T23:59:59(LocalDateTime), 10753(String), 20(Long), 0(Long)
  618. 2026-05-08 15:23:50.860 [XNIO-1 task-7] INFO c.t.feesapi.common.LogRecordAspect - =================【getPageList】请求结束==================
  619. 2026-05-08 15:23:50.893 [XNIO-1 task-7] ERROR c.t.f.c.e.FeesErrorResponseHandler - **未知错误**
  620. org.springframework.jdbc.BadSqlGrammarException:
  621. ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: ORA-00979: 不是 GROUP BY 表达式
  622. ### The error may exist in file [D:\work\tf\山东莱阳水司\莱阳智慧水务JAVA营销\20260403\lywebmis\collect_fees_ly_api\fees-ly-api\target\classes\mapper\sfgl\YyQfmxMapper.xml]
  623. ### The error may involve defaultParameterMap
  624. ### The error occurred while setting parameters
  625. ### SQL: SELECT * FROM ( SELECT TMP.*, ROWNUM ROW_ID FROM ( SELECT khbm, max(yhxm) yhxm, max(yhdz) yhdz, sum(CASE WHEN fylx IN ('1', '2') THEN yssl ELSE 0 END) yssl, sum(yswsf) yswsf, sum(yssf) yssf, sum(ysecjyf) ysecjyf, sum(ysqt) ysqt, sum(ysfjf) ysfjf, sum(ysszyf) ysszyf, sum(ysje) ysje FROM (SELECT a.*, b.yhdz, b.lxdh, (nvl(a.ysje, 0) + nvl(a.znj, 0)) yszje, c.gdbz, d.name AS ysxzmc, d.sjmc FROM yy_qfmx a LEFT JOIN yh_khjbxx b ON a.yhbh = b.yhbh LEFT JOIN yy_qfmx_gd c ON a.gdlsbh = c.gdlsbh LEFT JOIN (SELECT sj.code, sj.name AS sjmc, yslx.name, yslx.code AS ysxzbm FROM bm_sj sj LEFT JOIN bm_yslx yslx ON sj.yslx = yslx.code) d ON a.sjbm = d.code WHERE 1 = 1 AND a.chbz IN (?, ?, ?) AND a.ssgs = ? AND a.jsrq >= ? + 0 AND a.jsrq <= ? + 0 AND a.khbm > ' ' AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?)) GROUP BY khbm ORDER BY khbm, ysyf ASC ) TMP WHERE ROWNUM <=?) WHERE ROW_ID > ?
  626. ### Cause: java.sql.SQLSyntaxErrorException: ORA-00979: 不是 GROUP BY 表达式
  627. ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: ORA-00979: 不是 GROUP BY 表达式
  628. at org.springframework.jdbc.support.SQLExceptionSubclassTranslator.doTranslate(SQLExceptionSubclassTranslator.java:93)
  629. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:72)
  630. at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:81)
  631. at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91)
  632. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)
  633. at com.sun.proxy.$Proxy172.selectList(Unknown Source)
  634. at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224)
  635. at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForIPage(MybatisMapperMethod.java:121)
  636. at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:85)
  637. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148)
  638. at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)
  639. at com.sun.proxy.$Proxy203.getPageListByKhbm(Unknown Source)
  640. at com.tofly.feesapi.sfgl.service.impl.YyQfmxServiceImpl.getPageList(YyQfmxServiceImpl.java:779)
  641. at com.tofly.feesapi.sfgl.service.impl.YyQfmxServiceImpl$$FastClassBySpringCGLIB$$b2860d92.invoke(<generated>)
  642. at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
  643. at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:687)
  644. at com.tofly.feesapi.sfgl.service.impl.YyQfmxServiceImpl$$EnhancerBySpringCGLIB$$bdac3f52.getPageList(<generated>)
  645. at com.tofly.feesapi.sfgl.controller.YyQfmxController.getPageList(YyQfmxController.java:251)
  646. at com.tofly.feesapi.sfgl.controller.YyQfmxController$$FastClassBySpringCGLIB$$3fe5c8dc.invoke(<generated>)
  647. at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
  648. at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:771)
  649. at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
  650. at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:749)
  651. at org.springframework.aop.aspectj.AspectJAfterAdvice.invoke(AspectJAfterAdvice.java:47)
  652. at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
  653. at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:749)
  654. at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56)
  655. at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
  656. at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:749)
  657. at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:95)
  658. at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
  659. at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:749)
  660. at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:691)
  661. at com.tofly.feesapi.sfgl.controller.YyQfmxController$$EnhancerBySpringCGLIB$$45f0fde4.getPageList(<generated>)
  662. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  663. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  664. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  665. at java.lang.reflect.Method.invoke(Method.java:498)
  666. at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190)
  667. at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138)
  668. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:105)
  669. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:878)
  670. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:792)
  671. at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
  672. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1040)
  673. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943)
  674. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)
  675. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)
  676. at javax.servlet.http.HttpServlet.service(HttpServlet.java:497)
  677. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)
  678. at javax.servlet.http.HttpServlet.service(HttpServlet.java:584)
  679. at io.undertow.servlet.handlers.ServletHandler.handleRequest(ServletHandler.java:74)
  680. at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:129)
  681. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:320)
  682. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:126)
  683. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:90)
  684. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
  685. at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:118)
  686. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
  687. at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137)
  688. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
  689. at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111)
  690. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
  691. at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:158)
  692. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
  693. at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)
  694. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
  695. at org.springframework.security.oauth2.provider.authentication.OAuth2AuthenticationProcessingFilter.doFilter(OAuth2AuthenticationProcessingFilter.java:176)
  696. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
  697. at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
  698. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
  699. at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:92)
  700. at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:77)
  701. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
  702. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
  703. at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
  704. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
  705. at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
  706. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
  707. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
  708. at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:215)
  709. at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:178)
  710. at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:358)
  711. at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:271)
  712. at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
  713. at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
  714. at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
  715. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
  716. at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
  717. at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
  718. at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
  719. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
  720. at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
  721. at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
  722. at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:109)
  723. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
  724. at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
  725. at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
  726. at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
  727. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
  728. at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
  729. at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
  730. at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:84)
  731. at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:62)
  732. at io.undertow.servlet.handlers.ServletChain$1.handleRequest(ServletChain.java:68)
  733. at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36)
  734. at io.undertow.servlet.handlers.RedirectDirHandler.handleRequest(RedirectDirHandler.java:68)
  735. at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:132)
  736. at io.undertow.servlet.handlers.security.ServletAuthenticationCallHandler.handleRequest(ServletAuthenticationCallHandler.java:57)
  737. at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
  738. at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:46)
  739. at io.undertow.servlet.handlers.security.ServletConfidentialityConstraintHandler.handleRequest(ServletConfidentialityConstraintHandler.java:64)
  740. at io.undertow.security.handlers.AuthenticationMechanismsHandler.handleRequest(AuthenticationMechanismsHandler.java:60)
  741. at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:77)
  742. at io.undertow.security.handlers.AbstractSecurityContextAssociationHandler.handleRequest(AbstractSecurityContextAssociationHandler.java:43)
  743. at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
  744. at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
  745. at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:269)
  746. at io.undertow.servlet.handlers.ServletInitialHandler.access$100(ServletInitialHandler.java:78)
  747. at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:133)
  748. at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:130)
  749. at io.undertow.servlet.core.ServletRequestContextThreadSetupAction$1.call(ServletRequestContextThreadSetupAction.java:48)
  750. at io.undertow.servlet.core.ContextClassLoaderSetupAction$1.call(ContextClassLoaderSetupAction.java:43)
  751. at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:249)
  752. at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:78)
  753. at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:99)
  754. at io.undertow.server.Connectors.executeRootHandler(Connectors.java:376)
  755. at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:830)
  756. at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
  757. at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
  758. at java.lang.Thread.run(Thread.java:748)
  759. Caused by: java.sql.SQLSyntaxErrorException: ORA-00979: 不是 GROUP BY 表达式
  760. at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:629)
  761. at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:563)
  762. at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:1150)
  763. at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:770)
  764. at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:298)
  765. at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:497)
  766. at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:151)
  767. at oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:936)
  768. at oracle.jdbc.driver.OracleStatement.prepareDefineBufferAndExecute(OracleStatement.java:1171)
  769. at oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1100)
  770. at oracle.jdbc.driver.OracleStatement.executeSQLSelect(OracleStatement.java:1425)
  771. at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1308)
  772. at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3745)
  773. at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3940)
  774. at oracle.jdbc.driver.OraclePreparedStatementWrapper.execute(OraclePreparedStatementWrapper.java:1009)
  775. at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3462)
  776. at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434)
  777. at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3460)
  778. at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:158)
  779. at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483)
  780. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  781. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  782. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  783. at java.lang.reflect.Method.invoke(Method.java:498)
  784. at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
  785. at com.sun.proxy.$Proxy476.execute(Unknown Source)
  786. at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64)
  787. at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
  788. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  789. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  790. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  791. at java.lang.reflect.Method.invoke(Method.java:498)
  792. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64)
  793. at com.sun.proxy.$Proxy474.query(Unknown Source)
  794. at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
  795. at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325)
  796. at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
  797. at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
  798. at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81)
  799. at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62)
  800. at com.sun.proxy.$Proxy473.query(Unknown Source)
  801. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151)
  802. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145)
  803. at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140)
  804. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  805. at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
  806. at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  807. at java.lang.reflect.Method.invoke(Method.java:498)
  808. at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427)
  809. ... 126 common frames omitted
  810. Caused by: oracle.jdbc.OracleDatabaseException: ORA-00979: 不是 GROUP BY 表达式
  811. at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:636)
  812. ... 174 common frames omitted
  813. 2026-05-08 15:43:28.774 [SpringContextShutdownHook] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'taskScheduler'
  814. 2026-05-08 15:43:28.901 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registering from Nacos Server now...
  815. 2026-05-08 15:43:28.965 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registration finished.
  816. 2026-05-08 15:43:28.986 [SpringContextShutdownHook] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'taskScheduler'
  817. 2026-05-08 15:44:19.634 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.0.20.Final
  818. 2026-05-08 15:44:20.100 [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
  819. 2026-05-08 15:44:21.691 [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]
  820. 2026-05-08 15:44:21.702 [main] WARN c.a.c.n.c.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[collect-fees-api-bd.yaml] & group[DEFAULT_GROUP]
  821. 2026-05-08 15:44:21.703 [main] INFO o.s.c.b.c.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-collect-fees-api-bd.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-collect-fees-api.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-collect-fees-api,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-yx_config_ftp.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-public_config_redis.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-public_config_oracle.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-public_config_public.yaml,DEFAULT_GROUP'}]
  822. 2026-05-08 15:44:21.708 [main] INFO com.tofly.feesapi.FeesApiApplication - The following profiles are active: bd
  823. 2026-05-08 15:44:23.868 [main] WARN o.s.boot.actuate.endpoint.EndpointId - Endpoint ID 'nacos-config' contains invalid characters, please migrate to a valid format.
  824. 2026-05-08 15:44:23.872 [main] WARN o.s.boot.actuate.endpoint.EndpointId - Endpoint ID 'nacos-discovery' contains invalid characters, please migrate to a valid format.
  825. 2026-05-08 15:44:24.160 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode!
  826. 2026-05-08 15:44:24.162 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  827. 2026-05-08 15:44:24.531 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 304ms. Found 0 Redis repository interfaces.
  828. 2026-05-08 15:44:24.654 [main] WARN o.s.boot.actuate.endpoint.EndpointId - Endpoint ID 'service-registry' contains invalid characters, please migrate to a valid format.
  829. 2026-05-08 15:44:24.782 [main] DEBUG org.apache.ibatis.logging.LogFactory - Logging initialized using 'class org.apache.ibatis.logging.slf4j.Slf4jImpl' adapter.
  830. 2026-05-08 15:44:25.002 [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!
  831. 2026-05-08 15:44:25.002 [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!
  832. 2026-05-08 15:44:25.002 [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!
  833. 2026-05-08 15:44:25.002 [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!
  834. 2026-05-08 15:44:25.002 [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!
  835. 2026-05-08 15:44:25.003 [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!
  836. 2026-05-08 15:44:25.003 [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!
  837. 2026-05-08 15:44:25.003 [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!
  838. 2026-05-08 15:44:25.003 [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!
  839. 2026-05-08 15:44:25.003 [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!
  840. 2026-05-08 15:44:25.003 [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!
  841. 2026-05-08 15:44:25.003 [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!
  842. 2026-05-08 15:44:25.003 [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!
  843. 2026-05-08 15:44:25.003 [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!
  844. 2026-05-08 15:44:25.003 [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!
  845. 2026-05-08 15:44:25.003 [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!
  846. 2026-05-08 15:44:25.003 [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!
  847. 2026-05-08 15:44:25.003 [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!
  848. 2026-05-08 15:44:25.003 [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!
  849. 2026-05-08 15:44:25.003 [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!
  850. 2026-05-08 15:44:25.004 [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!
  851. 2026-05-08 15:44:25.004 [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!
  852. 2026-05-08 15:44:25.004 [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!
  853. 2026-05-08 15:44:25.004 [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!
  854. 2026-05-08 15:44:25.004 [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!
  855. 2026-05-08 15:44:25.004 [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!
  856. 2026-05-08 15:44:25.004 [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!
  857. 2026-05-08 15:44:25.004 [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!
  858. 2026-05-08 15:44:25.004 [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!
  859. 2026-05-08 15:44:25.004 [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!
  860. 2026-05-08 15:44:25.004 [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!
  861. 2026-05-08 15:44:25.004 [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!
  862. 2026-05-08 15:44:25.004 [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!
  863. 2026-05-08 15:44:25.004 [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!
  864. 2026-05-08 15:44:25.004 [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!
  865. 2026-05-08 15:44:25.004 [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!
  866. 2026-05-08 15:44:25.004 [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!
  867. 2026-05-08 15:44:25.004 [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!
  868. 2026-05-08 15:44:25.004 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiKprpzMapper' and 'com.tofly.feesapi.dzfp.mapper.EiKprpzMapper' mapperInterface. Bean already defined with the same name!
  869. 2026-05-08 15:44:25.004 [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!
  870. 2026-05-08 15:44:25.004 [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!
  871. 2026-05-08 15:44:25.004 [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!
  872. 2026-05-08 15:44:25.004 [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!
  873. 2026-05-08 15:44:25.004 [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!
  874. 2026-05-08 15:44:25.004 [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!
  875. 2026-05-08 15:44:25.004 [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!
  876. 2026-05-08 15:44:25.004 [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!
  877. 2026-05-08 15:44:25.004 [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!
  878. 2026-05-08 15:44:25.004 [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!
  879. 2026-05-08 15:44:25.004 [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!
  880. 2026-05-08 15:44:25.004 [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!
  881. 2026-05-08 15:44:25.005 [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!
  882. 2026-05-08 15:44:25.005 [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!
  883. 2026-05-08 15:44:25.005 [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!
  884. 2026-05-08 15:44:25.005 [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!
  885. 2026-05-08 15:44:25.005 [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!
  886. 2026-05-08 15:44:25.005 [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!
  887. 2026-05-08 15:44:25.005 [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!
  888. 2026-05-08 15:44:25.005 [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!
  889. 2026-05-08 15:44:25.005 [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!
  890. 2026-05-08 15:44:25.005 [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!
  891. 2026-05-08 15:44:25.005 [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!
  892. 2026-05-08 15:44:25.005 [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!
  893. 2026-05-08 15:44:25.005 [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!
  894. 2026-05-08 15:44:25.005 [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!
  895. 2026-05-08 15:44:25.005 [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!
  896. 2026-05-08 15:44:25.005 [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!
  897. 2026-05-08 15:44:25.006 [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!
  898. 2026-05-08 15:44:25.006 [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!
  899. 2026-05-08 15:44:25.006 [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!
  900. 2026-05-08 15:44:25.006 [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!
  901. 2026-05-08 15:44:25.006 [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!
  902. 2026-05-08 15:44:25.006 [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!
  903. 2026-05-08 15:44:25.006 [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!
  904. 2026-05-08 15:44:25.006 [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!
  905. 2026-05-08 15:44:25.006 [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!
  906. 2026-05-08 15:44:25.006 [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!
  907. 2026-05-08 15:44:25.006 [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!
  908. 2026-05-08 15:44:25.006 [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!
  909. 2026-05-08 15:44:25.006 [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!
  910. 2026-05-08 15:44:25.006 [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!
  911. 2026-05-08 15:44:25.006 [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!
  912. 2026-05-08 15:44:25.006 [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!
  913. 2026-05-08 15:44:25.006 [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!
  914. 2026-05-08 15:44:25.006 [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!
  915. 2026-05-08 15:44:25.006 [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!
  916. 2026-05-08 15:44:25.006 [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!
  917. 2026-05-08 15:44:25.006 [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!
  918. 2026-05-08 15:44:25.006 [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!
  919. 2026-05-08 15:44:25.006 [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!
  920. 2026-05-08 15:44:25.006 [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!
  921. 2026-05-08 15:44:25.006 [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!
  922. 2026-05-08 15:44:25.006 [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!
  923. 2026-05-08 15:44:25.006 [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!
  924. 2026-05-08 15:44:25.006 [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!
  925. 2026-05-08 15:44:25.006 [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!
  926. 2026-05-08 15:44:25.006 [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!
  927. 2026-05-08 15:44:25.007 [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!
  928. 2026-05-08 15:44:25.007 [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!
  929. 2026-05-08 15:44:25.007 [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!
  930. 2026-05-08 15:44:25.007 [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!
  931. 2026-05-08 15:44:25.007 [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!
  932. 2026-05-08 15:44:25.007 [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!
  933. 2026-05-08 15:44:25.007 [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!
  934. 2026-05-08 15:44:25.007 [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!
  935. 2026-05-08 15:44:25.007 [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!
  936. 2026-05-08 15:44:25.007 [main] WARN o.m.s.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.tofly.feesapi.**.mapper]' package. Please check your configuration.
  937. 2026-05-08 15:44:25.147 [main] INFO o.s.cloud.context.scope.GenericScope - BeanFactory id=6ba9fcc8-98cb-35e6-8547-52fc325bd065
  938. 2026-05-08 15:44:25.222 [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)
  939. 2026-05-08 15:44:25.586 [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)
  940. 2026-05-08 15:44:25.600 [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$$3d8e4dba] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  941. 2026-05-08 15:44:25.622 [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)
  942. 2026-05-08 15:44:25.661 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@626c569b' 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)
  943. 2026-05-08 15:44:25.669 [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)
  944. 2026-05-08 15:44:26.031 [main] WARN io.undertow.websockets.jsr - UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
  945. 2026-05-08 15:44:26.064 [main] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  946. 2026-05-08 15:44:26.064 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 4338 ms
  947. 2026-05-08 15:44:32.923 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1,master} inited
  948. 2026-05-08 15:44:33.618 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-2,udb} inited
  949. 2026-05-08 15:44:34.391 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-3,flowDB} inited
  950. 2026-05-08 15:44:34.392 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [udb] success
  951. 2026-05-08 15:44:34.392 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [flowDB] success
  952. 2026-05-08 15:44:34.392 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
  953. 2026-05-08 15:44:34.392 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [3] datasource,primary datasource named [master]
  954. 2026-05-08 15:44:35.997 [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]
  955. 2026-05-08 15:44:36.570 [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]
  956. 2026-05-08 15:44:37.619 [main] WARN c.b.m.core.metadata.TableInfoHelper - Can not find table primary key in Class: "com.tofly.feesapi.wxgl.wechatpay.entity.PaySelect".
  957. 2026-05-08 15:44:37.619 [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.
  958. 2026-05-08 15:44:37.635 [main] WARN c.b.m.core.metadata.TableInfoHelper - Can not find table primary key in Class: "com.tofly.feesapi.xtgl.entity.SysGdcsb".
  959. 2026-05-08 15:44:37.635 [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.
  960. 2026-05-08 15:44:41.862 [main] INFO org.redisson.Version - Redisson 3.23.2
  961. 2026-05-08 15:44:42.965 [redisson-netty-2-4] INFO o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 127.0.0.1/127.0.0.1:6379
  962. 2026-05-08 15:44:43.021 [redisson-netty-2-19] INFO o.r.c.pool.MasterConnectionPool - 24 connections initialized for 127.0.0.1/127.0.0.1:6379
  963. 2026-05-08 15:44:58.833 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
  964. 2026-05-08 15:45:10.950 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 19 endpoint(s) beneath base path '/actuator'
  965. 2026-05-08 15:45:12.810 [main] INFO s.d.s.w.WebMvcPropertySourcedRequestMappingHandlerMapping - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  966. 2026-05-08 15:45:15.162 [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]
  967. 2026-05-08 15:45:15.239 [main] INFO c.n.c.sources.URLConfigurationSource - URLs to be used as dynamic configuration source: [file:/D:/work/tf/%e5%b1%b1%e4%b8%9c%e8%8e%b1%e9%98%b3%e6%b0%b4%e5%8f%b8/%e8%8e%b1%e9%98%b3%e6%99%ba%e6%85%a7%e6%b0%b4%e5%8a%a1JAVA%e8%90%a5%e9%94%80/20260403/lywebmis/collect_fees_ly_api/fees-ly-api/target/classes/config.properties]
  968. 2026-05-08 15:45:17.766 [main] INFO o.s.s.c.ThreadPoolTaskScheduler - Initializing ExecutorService 'taskScheduler'
  969. 2026-05-08 15:45:21.706 [main] INFO o.s.b.a.s.s.UserDetailsServiceAutoConfiguration -
  970. Using generated security password: 58d7cbf4-1fe5-4cbd-be29-602d782777c6
  971. 2026-05-08 15:45:22.228 [main] INFO o.s.s.web.DefaultSecurityFilterChain - Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@77ec911, org.springframework.security.web.context.SecurityContextPersistenceFilter@68f4c6e7, org.springframework.security.web.header.HeaderWriterFilter@13ea9afc, org.springframework.security.web.authentication.logout.LogoutFilter@5b12157b, org.springframework.security.oauth2.provider.authentication.OAuth2AuthenticationProcessingFilter@4fad5e7, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@806a687, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@9d573a6, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@55d3c0dd, org.springframework.security.web.session.SessionManagementFilter@7ff48cdc, org.springframework.security.web.access.ExceptionTranslationFilter@54353bb1, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@419fc1d6]
  972. 2026-05-08 15:45:24.639 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
  973. 2026-05-08 15:45:24.875 [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.
  974. 2026-05-08 15:45:25.152 [main] INFO s.d.s.w.p.DocumentationPluginsBootstrapper - Documentation plugins bootstrapped
  975. 2026-05-08 15:45:25.159 [main] INFO s.d.s.w.p.DocumentationPluginsBootstrapper - Found 1 custom documentation plugin(s)
  976. 2026-05-08 15:45:25.434 [main] INFO s.d.s.w.s.ApiListingReferenceScanner - Scanning for api listing references
  977. 2026-05-08 15:45:26.188 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_1
  978. 2026-05-08 15:45:26.196 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_1
  979. 2026-05-08 15:45:26.198 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_1
  980. 2026-05-08 15:45:26.200 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_1
  981. 2026-05-08 15:45:26.210 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_1
  982. 2026-05-08 15:45:26.212 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_1
  983. 2026-05-08 15:45:26.249 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: addCustomerUsingPOST_1
  984. 2026-05-08 15:45:26.251 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: deleteCustomerUsingPOST_1
  985. 2026-05-08 15:45:26.253 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getBindCustomerUsingGET_1
  986. 2026-05-08 15:45:26.255 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: selectCustomerUsingGET_1
  987. 2026-05-08 15:45:26.258 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getBindCustomerAndQfUsingGET_1
  988. 2026-05-08 15:45:26.259 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerBasicInFoUsingGET_1
  989. 2026-05-08 15:45:26.261 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerChargeInFoUsingGET_1
  990. 2026-05-08 15:45:26.263 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerInFoUsingGET_1
  991. 2026-05-08 15:45:26.265 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerQfInFoUsingGET_1
  992. 2026-05-08 15:45:26.266 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerReadMeterInFoUsingGET_1
  993. 2026-05-08 15:45:26.286 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_2
  994. 2026-05-08 15:45:26.335 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_2
  995. 2026-05-08 15:45:26.340 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_2
  996. 2026-05-08 15:45:26.341 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_2
  997. 2026-05-08 15:45:26.351 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_2
  998. 2026-05-08 15:45:26.353 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_2
  999. 2026-05-08 15:45:26.386 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_3
  1000. 2026-05-08 15:45:26.389 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_3
  1001. 2026-05-08 15:45:26.392 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_3
  1002. 2026-05-08 15:45:26.397 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_3
  1003. 2026-05-08 15:45:26.399 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_3
  1004. 2026-05-08 15:45:26.415 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_3
  1005. 2026-05-08 15:45:26.429 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_4
  1006. 2026-05-08 15:45:26.430 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_4
  1007. 2026-05-08 15:45:26.432 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_4
  1008. 2026-05-08 15:45:26.436 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_4
  1009. 2026-05-08 15:45:26.438 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_4
  1010. 2026-05-08 15:45:26.441 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_5
  1011. 2026-05-08 15:45:26.443 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_5
  1012. 2026-05-08 15:45:26.445 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_5
  1013. 2026-05-08 15:45:26.452 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_5
  1014. 2026-05-08 15:45:26.455 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_5
  1015. 2026-05-08 15:45:26.468 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_4
  1016. 2026-05-08 15:45:26.477 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_6
  1017. 2026-05-08 15:45:26.492 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_5
  1018. 2026-05-08 15:45:26.494 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_6
  1019. 2026-05-08 15:45:26.496 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_6
  1020. 2026-05-08 15:45:26.502 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_6
  1021. 2026-05-08 15:45:26.504 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_6
  1022. 2026-05-08 15:45:26.509 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_1
  1023. 2026-05-08 15:45:26.521 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_7
  1024. 2026-05-08 15:45:26.522 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_7
  1025. 2026-05-08 15:45:26.524 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_7
  1026. 2026-05-08 15:45:26.530 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_7
  1027. 2026-05-08 15:45:26.532 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_7
  1028. 2026-05-08 15:45:26.539 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_8
  1029. 2026-05-08 15:45:26.540 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getFffsListUsingGET_1
  1030. 2026-05-08 15:45:26.542 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_8
  1031. 2026-05-08 15:45:26.544 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_9
  1032. 2026-05-08 15:45:26.549 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_8
  1033. 2026-05-08 15:45:26.551 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_8
  1034. 2026-05-08 15:45:26.561 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_2
  1035. 2026-05-08 15:45:26.569 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_9
  1036. 2026-05-08 15:45:26.571 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_10
  1037. 2026-05-08 15:45:26.574 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_11
  1038. 2026-05-08 15:45:26.578 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_9
  1039. 2026-05-08 15:45:26.580 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_9
  1040. 2026-05-08 15:45:26.586 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_10
  1041. 2026-05-08 15:45:26.589 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_12
  1042. 2026-05-08 15:45:26.590 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_13
  1043. 2026-05-08 15:45:26.595 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_10
  1044. 2026-05-08 15:45:26.598 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_10
  1045. 2026-05-08 15:45:26.607 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_11
  1046. 2026-05-08 15:45:26.610 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_14
  1047. 2026-05-08 15:45:26.612 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_15
  1048. 2026-05-08 15:45:26.619 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_11
  1049. 2026-05-08 15:45:26.621 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_11
  1050. 2026-05-08 15:45:26.630 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_12
  1051. 2026-05-08 15:45:26.632 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_16
  1052. 2026-05-08 15:45:26.635 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_8
  1053. 2026-05-08 15:45:26.639 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_12
  1054. 2026-05-08 15:45:26.641 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_12
  1055. 2026-05-08 15:45:26.652 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_13
  1056. 2026-05-08 15:45:26.655 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_17
  1057. 2026-05-08 15:45:26.657 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_9
  1058. 2026-05-08 15:45:26.661 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_13
  1059. 2026-05-08 15:45:26.662 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_13
  1060. 2026-05-08 15:45:26.668 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_14
  1061. 2026-05-08 15:45:26.671 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_18
  1062. 2026-05-08 15:45:26.674 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_19
  1063. 2026-05-08 15:45:26.681 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_14
  1064. 2026-05-08 15:45:26.683 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_14
  1065. 2026-05-08 15:45:26.694 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_15
  1066. 2026-05-08 15:45:26.715 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_6
  1067. 2026-05-08 15:45:26.752 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_15
  1068. 2026-05-08 15:45:26.762 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_3
  1069. 2026-05-08 15:45:26.772 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_16
  1070. 2026-05-08 15:45:26.773 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_20
  1071. 2026-05-08 15:45:26.775 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_10
  1072. 2026-05-08 15:45:26.778 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_16
  1073. 2026-05-08 15:45:26.779 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_15
  1074. 2026-05-08 15:45:26.787 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_17
  1075. 2026-05-08 15:45:26.801 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_7
  1076. 2026-05-08 15:45:26.803 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_21
  1077. 2026-05-08 15:45:26.805 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_11
  1078. 2026-05-08 15:45:26.810 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_17
  1079. 2026-05-08 15:45:26.812 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_16
  1080. 2026-05-08 15:45:26.845 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_8
  1081. 2026-05-08 15:45:26.848 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveBatchUsingPOST_1
  1082. 2026-05-08 15:45:27.066 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_18
  1083. 2026-05-08 15:45:27.076 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_22
  1084. 2026-05-08 15:45:27.078 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_12
  1085. 2026-05-08 15:45:27.081 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_18
  1086. 2026-05-08 15:45:27.083 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_17
  1087. 2026-05-08 15:45:27.086 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_19
  1088. 2026-05-08 15:45:27.096 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_23
  1089. 2026-05-08 15:45:27.097 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_13
  1090. 2026-05-08 15:45:27.102 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_19
  1091. 2026-05-08 15:45:27.105 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_18
  1092. 2026-05-08 15:45:27.108 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_20
  1093. 2026-05-08 15:45:27.111 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_24
  1094. 2026-05-08 15:45:27.116 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_20
  1095. 2026-05-08 15:45:27.118 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_19
  1096. 2026-05-08 15:45:27.131 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_21
  1097. 2026-05-08 15:45:27.135 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_25
  1098. 2026-05-08 15:45:27.136 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_14
  1099. 2026-05-08 15:45:27.141 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_21
  1100. 2026-05-08 15:45:27.182 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: Xh_WordToPdfUsingPOST_1
  1101. 2026-05-08 15:45:27.189 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_22
  1102. 2026-05-08 15:45:27.198 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_26
  1103. 2026-05-08 15:45:27.199 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_15
  1104. 2026-05-08 15:45:27.207 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_22
  1105. 2026-05-08 15:45:27.210 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_27
  1106. 2026-05-08 15:45:27.211 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_16
  1107. 2026-05-08 15:45:27.218 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_23
  1108. 2026-05-08 15:45:27.221 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_20
  1109. 2026-05-08 15:45:27.253 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_23
  1110. 2026-05-08 15:45:27.440 [main] WARN s.d.s.w.r.p.ParameterTypeReader - @ModelAttribute annotated parameters should have already been expanded via the ExpandedParameterBuilderPlugin
  1111. 2026-05-08 15:45:27.440 [main] WARN s.d.s.w.r.p.ParameterTypeReader - @ModelAttribute annotated parameters should have already been expanded via the ExpandedParameterBuilderPlugin
  1112. 2026-05-08 15:45:27.454 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportYsqdUsingGET_1
  1113. 2026-05-08 15:45:27.556 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_24
  1114. 2026-05-08 15:45:27.559 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_28
  1115. 2026-05-08 15:45:27.561 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_17
  1116. 2026-05-08 15:45:27.598 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_25
  1117. 2026-05-08 15:45:27.600 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_29
  1118. 2026-05-08 15:45:27.602 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_18
  1119. 2026-05-08 15:45:27.605 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_24
  1120. 2026-05-08 15:45:27.607 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_21
  1121. 2026-05-08 15:45:27.626 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_26
  1122. 2026-05-08 15:45:27.641 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_30
  1123. 2026-05-08 15:45:27.643 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_19
  1124. 2026-05-08 15:45:27.650 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_25
  1125. 2026-05-08 15:45:27.652 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_22
  1126. 2026-05-08 15:45:27.655 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_27
  1127. 2026-05-08 15:45:27.664 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_31
  1128. 2026-05-08 15:45:27.665 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_20
  1129. 2026-05-08 15:45:27.669 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_26
  1130. 2026-05-08 15:45:27.671 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_23
  1131. 2026-05-08 15:45:27.691 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_28
  1132. 2026-05-08 15:45:27.701 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_32
  1133. 2026-05-08 15:45:27.703 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_21
  1134. 2026-05-08 15:45:27.710 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_27
  1135. 2026-05-08 15:45:27.714 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_24
  1136. 2026-05-08 15:45:27.730 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxBtsqPageUsingGET_1
  1137. 2026-05-08 15:45:27.734 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_29
  1138. 2026-05-08 15:45:27.743 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_33
  1139. 2026-05-08 15:45:27.745 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_22
  1140. 2026-05-08 15:45:27.752 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_28
  1141. 2026-05-08 15:45:27.754 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_25
  1142. 2026-05-08 15:45:27.759 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxBzsqPageUsingGET_1
  1143. 2026-05-08 15:45:27.772 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_30
  1144. 2026-05-08 15:45:27.780 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_34
  1145. 2026-05-08 15:45:27.782 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_23
  1146. 2026-05-08 15:45:27.789 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_29
  1147. 2026-05-08 15:45:27.791 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_26
  1148. 2026-05-08 15:45:27.803 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxDbsqPageUsingGET_1
  1149. 2026-05-08 15:45:27.806 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPOST_1
  1150. 2026-05-08 15:45:27.811 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_31
  1151. 2026-05-08 15:45:27.820 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_35
  1152. 2026-05-08 15:45:27.822 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_24
  1153. 2026-05-08 15:45:27.825 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_30
  1154. 2026-05-08 15:45:27.827 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_27
  1155. 2026-05-08 15:45:27.830 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_32
  1156. 2026-05-08 15:45:27.835 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_36
  1157. 2026-05-08 15:45:27.837 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_25
  1158. 2026-05-08 15:45:27.844 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_31
  1159. 2026-05-08 15:45:27.847 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_28
  1160. 2026-05-08 15:45:27.851 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_33
  1161. 2026-05-08 15:45:27.853 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_37
  1162. 2026-05-08 15:45:27.856 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_26
  1163. 2026-05-08 15:45:27.865 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_32
  1164. 2026-05-08 15:45:27.867 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_29
  1165. 2026-05-08 15:45:27.886 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_34
  1166. 2026-05-08 15:45:27.891 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_38
  1167. 2026-05-08 15:45:27.894 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_39
  1168. 2026-05-08 15:45:27.899 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_33
  1169. 2026-05-08 15:45:27.901 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_30
  1170. 2026-05-08 15:45:27.904 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_35
  1171. 2026-05-08 15:45:27.915 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_40
  1172. 2026-05-08 15:45:27.917 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_27
  1173. 2026-05-08 15:45:27.922 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_34
  1174. 2026-05-08 15:45:27.925 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_31
  1175. 2026-05-08 15:45:27.937 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxHfsqPageUsingGET_1
  1176. 2026-05-08 15:45:27.942 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_36
  1177. 2026-05-08 15:45:27.952 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_41
  1178. 2026-05-08 15:45:27.954 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_28
  1179. 2026-05-08 15:45:27.962 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_35
  1180. 2026-05-08 15:45:27.966 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_32
  1181. 2026-05-08 15:45:27.981 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxLwsqPageUsingGET_1
  1182. 2026-05-08 15:45:27.986 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_37
  1183. 2026-05-08 15:45:27.995 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_42
  1184. 2026-05-08 15:45:27.997 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_29
  1185. 2026-05-08 15:45:28.003 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_36
  1186. 2026-05-08 15:45:28.006 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_33
  1187. 2026-05-08 15:45:28.019 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxLxdhsqPageUsingGET_1
  1188. 2026-05-08 15:45:28.023 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_38
  1189. 2026-05-08 15:45:28.036 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_43
  1190. 2026-05-08 15:45:28.038 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_30
  1191. 2026-05-08 15:45:28.047 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_37
  1192. 2026-05-08 15:45:28.051 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_34
  1193. 2026-05-08 15:45:28.071 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_39
  1194. 2026-05-08 15:45:28.083 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_44
  1195. 2026-05-08 15:45:28.087 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_31
  1196. 2026-05-08 15:45:28.095 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_38
  1197. 2026-05-08 15:45:28.099 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_35
  1198. 2026-05-08 15:45:28.114 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxDbsqPageUsingGET_2
  1199. 2026-05-08 15:45:28.130 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_1
  1200. 2026-05-08 15:45:28.135 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_40
  1201. 2026-05-08 15:45:28.144 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_45
  1202. 2026-05-08 15:45:28.147 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_32
  1203. 2026-05-08 15:45:28.157 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_39
  1204. 2026-05-08 15:45:28.178 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_36
  1205. 2026-05-08 15:45:28.182 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_41
  1206. 2026-05-08 15:45:28.188 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_46
  1207. 2026-05-08 15:45:28.190 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_33
  1208. 2026-05-08 15:45:28.197 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_40
  1209. 2026-05-08 15:45:28.200 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_37
  1210. 2026-05-08 15:45:28.204 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_42
  1211. 2026-05-08 15:45:28.209 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_47
  1212. 2026-05-08 15:45:28.211 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_34
  1213. 2026-05-08 15:45:28.217 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_41
  1214. 2026-05-08 15:45:28.220 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_38
  1215. 2026-05-08 15:45:28.223 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_43
  1216. 2026-05-08 15:45:28.228 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_48
  1217. 2026-05-08 15:45:28.230 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_49
  1218. 2026-05-08 15:45:28.235 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_42
  1219. 2026-05-08 15:45:28.237 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_39
  1220. 2026-05-08 15:45:28.240 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_44
  1221. 2026-05-08 15:45:28.246 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_50
  1222. 2026-05-08 15:45:28.248 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_51
  1223. 2026-05-08 15:45:28.253 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_43
  1224. 2026-05-08 15:45:28.256 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_40
  1225. 2026-05-08 15:45:28.259 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_45
  1226. 2026-05-08 15:45:28.270 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_52
  1227. 2026-05-08 15:45:28.272 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_35
  1228. 2026-05-08 15:45:28.277 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_44
  1229. 2026-05-08 15:45:28.280 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_41
  1230. 2026-05-08 15:45:28.293 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxWzjbsqPageUsingGET_1
  1231. 2026-05-08 15:45:28.298 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_46
  1232. 2026-05-08 15:45:28.309 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_53
  1233. 2026-05-08 15:45:28.312 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_36
  1234. 2026-05-08 15:45:28.320 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_45
  1235. 2026-05-08 15:45:28.323 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_42
  1236. 2026-05-08 15:45:28.338 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxXbsqPageUsingGET_1
  1237. 2026-05-08 15:45:28.343 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_47
  1238. 2026-05-08 15:45:28.353 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_54
  1239. 2026-05-08 15:45:28.355 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_37
  1240. 2026-05-08 15:45:28.363 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_46
  1241. 2026-05-08 15:45:28.366 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_43
  1242. 2026-05-08 15:45:28.377 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxXhsqPageUsingGET_1
  1243. 2026-05-08 15:45:28.379 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPOST_2
  1244. 2026-05-08 15:45:28.382 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_48
  1245. 2026-05-08 15:45:28.388 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_55
  1246. 2026-05-08 15:45:28.390 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_38
  1247. 2026-05-08 15:45:28.395 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_47
  1248. 2026-05-08 15:45:28.398 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_44
  1249. 2026-05-08 15:45:28.401 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_49
  1250. 2026-05-08 15:45:28.409 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_56
  1251. 2026-05-08 15:45:28.411 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_39
  1252. 2026-05-08 15:45:28.414 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_48
  1253. 2026-05-08 15:45:28.416 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_45
  1254. 2026-05-08 15:45:28.429 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_9
  1255. 2026-05-08 15:45:28.431 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_57
  1256. 2026-05-08 15:45:28.433 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_40
  1257. 2026-05-08 15:45:28.439 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_49
  1258. 2026-05-08 15:45:28.442 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_58
  1259. 2026-05-08 15:45:28.444 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_41
  1260. 2026-05-08 15:45:28.449 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_50
  1261. 2026-05-08 15:45:28.461 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_10
  1262. 2026-05-08 15:45:28.465 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_50
  1263. 2026-05-08 15:45:28.475 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_59
  1264. 2026-05-08 15:45:28.478 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_42
  1265. 2026-05-08 15:45:28.486 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_51
  1266. 2026-05-08 15:45:28.495 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_46
  1267. 2026-05-08 15:45:28.498 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_2
  1268. 2026-05-08 15:45:28.536 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_52
  1269. 2026-05-08 15:45:28.553 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_51
  1270. 2026-05-08 15:45:28.570 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_11
  1271. 2026-05-08 15:45:28.590 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_1
  1272. 2026-05-08 15:45:28.608 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_52
  1273. 2026-05-08 15:45:28.610 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_43
  1274. 2026-05-08 15:45:28.644 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_53
  1275. 2026-05-08 15:45:28.653 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_60
  1276. 2026-05-08 15:45:28.655 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_44
  1277. 2026-05-08 15:45:28.659 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_53
  1278. 2026-05-08 15:45:28.662 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_47
  1279. 2026-05-08 15:45:28.665 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_54
  1280. 2026-05-08 15:45:28.672 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_61
  1281. 2026-05-08 15:45:28.674 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_45
  1282. 2026-05-08 15:45:28.681 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_54
  1283. 2026-05-08 15:45:28.694 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_48
  1284. 2026-05-08 15:45:28.697 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_3
  1285. 2026-05-08 15:45:28.701 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_62
  1286. 2026-05-08 15:45:28.703 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_46
  1287. 2026-05-08 15:45:28.708 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_55
  1288. 2026-05-08 15:45:28.717 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_12
  1289. 2026-05-08 15:45:28.729 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_63
  1290. 2026-05-08 15:45:28.733 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_47
  1291. 2026-05-08 15:45:28.740 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_56
  1292. 2026-05-08 15:45:28.751 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_13
  1293. 2026-05-08 15:45:28.756 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_55
  1294. 2026-05-08 15:45:28.762 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_64
  1295. 2026-05-08 15:45:28.764 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_48
  1296. 2026-05-08 15:45:28.775 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_57
  1297. 2026-05-08 15:45:28.784 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_49
  1298. 2026-05-08 15:45:28.786 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_4
  1299. 2026-05-08 15:45:28.817 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getDaCustomerPageUsingGET_1
  1300. 2026-05-08 15:45:28.868 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_1
  1301. 2026-05-08 15:45:28.889 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_14
  1302. 2026-05-08 15:45:28.929 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_56
  1303. 2026-05-08 15:45:28.998 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: delByIdUsingDELETE_1
  1304. 2026-05-08 15:45:29.000 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: delByIdsUsingDELETE_1
  1305. 2026-05-08 15:45:29.002 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: disableUsingPUT_1
  1306. 2026-05-08 15:45:29.004 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: enableUsingPUT_1
  1307. 2026-05-08 15:45:29.009 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: importExcelUsingPOST_1
  1308. 2026-05-08 15:45:29.013 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_2
  1309. 2026-05-08 15:45:29.022 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_3
  1310. 2026-05-08 15:45:29.051 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_5
  1311. 2026-05-08 15:45:29.054 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_6
  1312. 2026-05-08 15:45:29.057 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_7
  1313. 2026-05-08 15:45:29.062 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_57
  1314. 2026-05-08 15:45:29.077 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_49
  1315. 2026-05-08 15:45:29.112 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: addUsingPOST_1
  1316. 2026-05-08 15:45:29.124 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_58
  1317. 2026-05-08 15:45:29.136 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_65
  1318. 2026-05-08 15:45:29.139 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_50
  1319. 2026-05-08 15:45:29.143 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_58
  1320. 2026-05-08 15:45:29.150 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: save_gdUsingPOST_1
  1321. 2026-05-08 15:45:29.166 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_50
  1322. 2026-05-08 15:45:29.190 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_59
  1323. 2026-05-08 15:45:29.201 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_66
  1324. 2026-05-08 15:45:29.204 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_51
  1325. 2026-05-08 15:45:29.211 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_59
  1326. 2026-05-08 15:45:29.214 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_51
  1327. 2026-05-08 15:45:29.218 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_60
  1328. 2026-05-08 15:45:29.224 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_67
  1329. 2026-05-08 15:45:29.226 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_52
  1330. 2026-05-08 15:45:29.233 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_60
  1331. 2026-05-08 15:45:29.236 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: save_gdUsingPOST_2
  1332. 2026-05-08 15:45:29.243 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_52
  1333. 2026-05-08 15:45:29.245 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_8
  1334. 2026-05-08 15:45:29.260 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_9
  1335. 2026-05-08 15:45:29.281 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_61
  1336. 2026-05-08 15:45:29.368 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_2
  1337. 2026-05-08 15:45:29.376 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_62
  1338. 2026-05-08 15:45:29.384 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_15
  1339. 2026-05-08 15:45:29.447 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_4
  1340. 2026-05-08 15:45:29.459 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_10
  1341. 2026-05-08 15:45:29.473 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_63
  1342. 2026-05-08 15:45:29.486 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_68
  1343. 2026-05-08 15:45:29.491 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_53
  1344. 2026-05-08 15:45:29.509 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_61
  1345. 2026-05-08 15:45:29.513 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_53
  1346. 2026-05-08 15:45:29.620 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_54
  1347. 2026-05-08 15:45:29.786 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_16
  1348. 2026-05-08 15:45:29.902 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getListUsingGET_1
  1349. 2026-05-08 15:45:30.000 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_64
  1350. 2026-05-08 15:45:30.096 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: statUsingGET_1
  1351. 2026-05-08 15:45:30.177 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_11
  1352. 2026-05-08 15:45:30.189 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_65
  1353. 2026-05-08 15:45:30.210 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_69
  1354. 2026-05-08 15:45:30.213 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_54
  1355. 2026-05-08 15:45:30.279 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_62
  1356. 2026-05-08 15:45:30.284 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_55
  1357. 2026-05-08 15:45:30.289 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_66
  1358. 2026-05-08 15:45:30.299 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_63
  1359. 2026-05-08 15:45:30.304 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_56
  1360. 2026-05-08 15:45:30.324 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_12
  1361. 2026-05-08 15:45:30.391 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_64
  1362. 2026-05-08 15:45:30.435 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_17
  1363. 2026-05-08 15:45:30.477 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: monthlyStatUsingGET_1
  1364. 2026-05-08 15:45:30.484 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: monthlyStatSummaryUsingGET_1
  1365. 2026-05-08 15:45:30.498 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getListUsingGET_2
  1366. 2026-05-08 15:45:30.641 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_67
  1367. 2026-05-08 15:45:30.711 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageListUsingGET_1
  1368. 2026-05-08 15:45:30.717 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: statUsingGET_2
  1369. 2026-05-08 15:45:30.808 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_13
  1370. 2026-05-08 15:45:30.813 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_14
  1371. 2026-05-08 15:45:30.886 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_65
  1372. 2026-05-08 15:45:30.907 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_68
  1373. 2026-05-08 15:45:31.009 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getYyWyjtzPageUsingGET_1
  1374. 2026-05-08 15:45:31.012 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_15
  1375. 2026-05-08 15:45:31.019 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_5
  1376. 2026-05-08 15:45:31.049 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_18
  1377. 2026-05-08 15:45:31.052 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_16
  1378. 2026-05-08 15:45:31.077 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_19
  1379. 2026-05-08 15:45:31.080 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_17
  1380. 2026-05-08 15:45:31.182 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_20
  1381. 2026-05-08 15:45:31.186 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_18
  1382. 2026-05-08 15:45:31.194 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_69
  1383. 2026-05-08 15:45:31.210 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_70
  1384. 2026-05-08 15:45:31.215 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_55
  1385. 2026-05-08 15:45:31.230 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_66
  1386. 2026-05-08 15:45:31.237 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_57
  1387. 2026-05-08 15:45:31.245 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_70
  1388. 2026-05-08 15:45:31.249 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_71
  1389. 2026-05-08 15:45:31.254 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_56
  1390. 2026-05-08 15:45:31.273 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_67
  1391. 2026-05-08 15:45:31.281 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_58
  1392. 2026-05-08 15:45:31.290 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_21
  1393. 2026-05-08 15:45:31.296 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_3
  1394. 2026-05-08 15:45:31.311 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_68
  1395. 2026-05-08 15:45:31.334 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_22
  1396. 2026-05-08 15:45:31.407 [main] INFO io.undertow - starting server: Undertow - 2.0.31.Final
  1397. 2026-05-08 15:45:31.424 [main] INFO org.xnio - XNIO version 3.3.8.Final
  1398. 2026-05-08 15:45:31.440 [main] INFO org.xnio.nio - XNIO NIO Implementation Version 3.3.8.Final
  1399. 2026-05-08 15:45:31.531 [main] INFO o.s.b.w.e.u.UndertowServletWebServer - Undertow started on port(s) 10506 (http) with context path ''
  1400. 2026-05-08 15:45:31.658 [main] INFO c.a.c.n.r.NacosServiceRegistry - nacos registry, DEFAULT_GROUP collect-fees-api 172.19.0.10:10506 register finished
  1401. 2026-05-08 15:45:33.319 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
  1402. 2026-05-08 15:45:33.324 [main] INFO com.tofly.feesapi.FeesApiApplication - Started FeesApiApplication in 75.638 seconds (JVM running for 77.826)
  1403. 2026-05-08 15:45:34.409 [RMI TCP Connection(10)-192.168.1.105] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  1404. 2026-05-08 15:45:34.409 [RMI TCP Connection(10)-192.168.1.105] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  1405. 2026-05-08 15:45:34.428 [RMI TCP Connection(10)-192.168.1.105] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 18 ms
  1406. 2026-05-08 15:46:40.226 [XNIO-1 task-1] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/api/sfgl/yyqfmx/getpagelist/getPageList】请求开始==================
  1407. 2026-05-08 15:46:40.437 [XNIO-1 task-1] DEBUG c.t.f.s.m.Y.getPageListByKhbm_mpCount - ==> Preparing: SELECT COUNT(*) FROM (SELECT khbm, max(yhxm) yhxm, max(yhdz) yhdz, sum(CASE WHEN fylx IN ('1', '2') THEN yssl ELSE 0 END) yssl, sum(yswsf) yswsf, sum(yssf) yssf, sum(ysecjyf) ysecjyf, sum(ysqt) ysqt, sum(ysfjf) ysfjf, sum(ysszyf) ysszyf, sum(ysje) ysje FROM (SELECT a.*, b.yhdz, b.lxdh, (nvl(a.ysje, 0) + nvl(a.znj, 0)) yszje, c.gdbz, d.name AS ysxzmc, d.sjmc FROM yy_qfmx a LEFT JOIN yh_khjbxx b ON a.yhbh = b.yhbh LEFT JOIN yy_qfmx_gd c ON a.gdlsbh = c.gdlsbh LEFT JOIN (SELECT sj.code, sj.name AS sjmc, yslx.name, yslx.code AS ysxzbm FROM bm_sj sj LEFT JOIN bm_yslx yslx ON sj.yslx = yslx.code) d ON a.sjbm = d.code WHERE 1 = 1 AND a.chbz IN (?, ?, ?) AND a.ssgs = ? AND a.jsrq >= ? + 0 AND a.jsrq <= ? + 0 AND a.khbm > ' ' AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?)) GROUP BY khbm ORDER BY khbm) TOTAL
  1408. 2026-05-08 15:46:40.545 [XNIO-1 task-1] DEBUG c.t.f.s.m.Y.getPageListByKhbm_mpCount - ==> Parameters: 0(String), 1(String), 2(String), 1(String), 2026-04-01T00:00(LocalDateTime), 2026-05-31T23:59:59(LocalDateTime), 10753(String)
  1409. 2026-05-08 15:46:40.689 [XNIO-1 task-1] DEBUG c.t.f.s.m.Y.getPageListByKhbm_mpCount - <== Total: 1
  1410. 2026-05-08 15:46:40.695 [XNIO-1 task-1] DEBUG c.t.f.s.m.Y.getPageListByKhbm - ==> Preparing: SELECT * FROM ( SELECT TMP.*, ROWNUM ROW_ID FROM ( select khbm,max(yhxm) yhxm,max(yhdz) yhdz, sum(case WHEN fylx in ('1','2') then yssl else 0 end ) yssl ,sum(yswsf) yswsf,sum(yssf) yssf,sum(ysecjyf) ysecjyf,sum(ysqt) ysqt,sum(ysfjf) ysfjf,sum(ysszyf) ysszyf,sum(ysje) ysje from ( SELECT a.*, b.yhdz, b.lxdh, (nvl(a.ysje, 0) + nvl(a.znj, 0)) yszje, c.gdbz, d.name as ysxzmc, d.sjmc from yy_qfmx a left join yh_khjbxx b on a.yhbh = b.yhbh left join yy_qfmx_gd c on a.gdlsbh=c.gdlsbh left join ( select sj.code, sj.name as sjmc, yslx.name,yslx.code as ysxzbm from bm_sj sj left join bm_yslx yslx on sj.yslx=yslx.code ) d on a.sjbm = d.code WHERE 1=1 AND a.chbz in ( ? , ? , ? ) AND a.ssgs=? and a.jsrq >=?+0 and a.jsrq <= ?+0 AND a.khbm >' ' AND a.sscbb in (select cbbbm from yh_sjqx where user_id=?) ) group by khbm order by khbm ) TMP WHERE ROWNUM <=?) WHERE ROW_ID > ?
  1411. 2026-05-08 15:46:40.698 [XNIO-1 task-1] DEBUG c.t.f.s.m.Y.getPageListByKhbm - ==> Parameters: 0(String), 1(String), 2(String), 1(String), 2026-04-01T00:00(LocalDateTime), 2026-05-31T23:59:59(LocalDateTime), 10753(String), 20(Long), 0(Long)
  1412. 2026-05-08 15:46:40.943 [XNIO-1 task-1] DEBUG c.t.f.s.m.Y.getPageListByKhbm - <== Total: 20
  1413. 2026-05-08 15:46:40.946 [XNIO-1 task-1] DEBUG c.t.f.s.m.YyQfmxMapper.getPageCount - ==> Preparing: SELECT sum(case when a.fylx='1' or a.fylx='2' then nvl(yssl,0) else 0 end) zyssl, sum(nvl(yssf,0)) zyssf, sum(nvl(yswsf,0)) zyswsf, sum(nvl(ysljf,0)) zysljf, sum(nvl(ysszyf,0)) zysszyf, sum( nvl(ysecjyf, 0) ) zysecjyf, sum( nvl(ysfjf, 0) ) zysfjf, sum( nvl(ysqt, 0) ) zysqt, sum(nvl(ysje,0)) zysje, sum(nvl(znj,0)) zznj, sum(nvl(ysje,0)+nvl(znj,0)) zyszje from yy_qfmx a left join yh_khjbxx b on a.yhbh = b.yhbh left join yy_qfmx_gd c on a.gdlsbh=c.gdlsbh left join ( select sj.code, sj.name as sjmc, yslx.name,yslx.code as ysxzbm from bm_sj sj left join bm_yslx yslx on sj.yslx=yslx.code ) d on a.sjbm = d.code WHERE 1=1 AND a.chbz in ( ? , ? , ? ) AND a.ssgs=? and a.jsrq >=?+0 and a.jsrq <= ?+0 AND a.khbm >' ' AND a.sscbb in (select cbbbm from yh_sjqx where user_id=?)
  1414. 2026-05-08 15:46:40.946 [XNIO-1 task-1] DEBUG c.t.f.s.m.YyQfmxMapper.getPageCount - ==> Parameters: 0(String), 1(String), 2(String), 1(String), 2026-04-01T00:00(LocalDateTime), 2026-05-31T23:59:59(LocalDateTime), 10753(String)
  1415. 2026-05-08 15:46:41.059 [XNIO-1 task-1] DEBUG c.t.f.s.m.YyQfmxMapper.getPageCount - <== Total: 1
  1416. 2026-05-08 15:46:41.066 [XNIO-1 task-1] INFO c.t.feesapi.common.LogRecordAspect - =================【getPageList】请求结束==================
  1417. 2026-05-08 15:50:25.814 [XNIO-1 task-2] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/api/sfgl/yyqfmx/getpagelist/getPageList】请求开始==================
  1418. 2026-05-08 15:50:25.876 [XNIO-1 task-2] DEBUG c.t.f.s.m.Y.getPageListByKhbm_mpCount - ==> Preparing: SELECT COUNT(*) FROM (SELECT khbm, max(yhxm) yhxm, max(yhdz) yhdz, sum(CASE WHEN fylx IN ('1', '2') THEN yssl ELSE 0 END) yssl, sum(yswsf) yswsf, sum(yssf) yssf, sum(ysecjyf) ysecjyf, sum(ysqt) ysqt, sum(ysfjf) ysfjf, sum(ysszyf) ysszyf, sum(ysje) ysje FROM (SELECT a.*, b.yhdz, b.lxdh, (nvl(a.ysje, 0) + nvl(a.znj, 0)) yszje, c.gdbz, d.name AS ysxzmc, d.sjmc FROM yy_qfmx a LEFT JOIN yh_khjbxx b ON a.yhbh = b.yhbh LEFT JOIN yy_qfmx_gd c ON a.gdlsbh = c.gdlsbh LEFT JOIN (SELECT sj.code, sj.name AS sjmc, yslx.name, yslx.code AS ysxzbm FROM bm_sj sj LEFT JOIN bm_yslx yslx ON sj.yslx = yslx.code) d ON a.sjbm = d.code WHERE 1 = 1 AND a.chbz IN (?, ?, ?) AND a.ssgs = ? AND a.jsrq >= ? + 0 AND a.jsrq <= ? + 0 AND a.khbm > ' ' AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?)) GROUP BY khbm ORDER BY khbm) TOTAL
  1419. 2026-05-08 15:50:25.877 [XNIO-1 task-2] DEBUG c.t.f.s.m.Y.getPageListByKhbm_mpCount - ==> Parameters: 0(String), 1(String), 2(String), 1(String), 2026-04-01T00:00(LocalDateTime), 2026-04-30T23:59:59(LocalDateTime), 10753(String)
  1420. 2026-05-08 15:50:25.977 [XNIO-1 task-2] DEBUG c.t.f.s.m.Y.getPageListByKhbm_mpCount - <== Total: 1
  1421. 2026-05-08 15:50:25.978 [XNIO-1 task-2] DEBUG c.t.f.s.m.Y.getPageListByKhbm - ==> Preparing: SELECT * FROM ( SELECT TMP.*, ROWNUM ROW_ID FROM ( select khbm,max(yhxm) yhxm,max(yhdz) yhdz, sum(case WHEN fylx in ('1','2') then yssl else 0 end ) yssl ,sum(yswsf) yswsf,sum(yssf) yssf,sum(ysecjyf) ysecjyf,sum(ysqt) ysqt,sum(ysfjf) ysfjf,sum(ysszyf) ysszyf,sum(ysje) ysje from ( SELECT a.*, b.yhdz, b.lxdh, (nvl(a.ysje, 0) + nvl(a.znj, 0)) yszje, c.gdbz, d.name as ysxzmc, d.sjmc from yy_qfmx a left join yh_khjbxx b on a.yhbh = b.yhbh left join yy_qfmx_gd c on a.gdlsbh=c.gdlsbh left join ( select sj.code, sj.name as sjmc, yslx.name,yslx.code as ysxzbm from bm_sj sj left join bm_yslx yslx on sj.yslx=yslx.code ) d on a.sjbm = d.code WHERE 1=1 AND a.chbz in ( ? , ? , ? ) AND a.ssgs=? and a.jsrq >=?+0 and a.jsrq <= ?+0 AND a.khbm >' ' AND a.sscbb in (select cbbbm from yh_sjqx where user_id=?) ) group by khbm order by khbm ) TMP WHERE ROWNUM <=?) WHERE ROW_ID > ?
  1422. 2026-05-08 15:50:25.978 [XNIO-1 task-2] DEBUG c.t.f.s.m.Y.getPageListByKhbm - ==> Parameters: 0(String), 1(String), 2(String), 1(String), 2026-04-01T00:00(LocalDateTime), 2026-04-30T23:59:59(LocalDateTime), 10753(String), 20(Long), 0(Long)
  1423. 2026-05-08 15:50:26.168 [XNIO-1 task-2] DEBUG c.t.f.s.m.Y.getPageListByKhbm - <== Total: 20
  1424. 2026-05-08 15:50:26.170 [XNIO-1 task-2] DEBUG c.t.f.s.m.YyQfmxMapper.getPageCount - ==> Preparing: SELECT sum(case when a.fylx='1' or a.fylx='2' then nvl(yssl,0) else 0 end) zyssl, sum(nvl(yssf,0)) zyssf, sum(nvl(yswsf,0)) zyswsf, sum(nvl(ysljf,0)) zysljf, sum(nvl(ysszyf,0)) zysszyf, sum( nvl(ysecjyf, 0) ) zysecjyf, sum( nvl(ysfjf, 0) ) zysfjf, sum( nvl(ysqt, 0) ) zysqt, sum(nvl(ysje,0)) zysje, sum(nvl(znj,0)) zznj, sum(nvl(ysje,0)+nvl(znj,0)) zyszje from yy_qfmx a left join yh_khjbxx b on a.yhbh = b.yhbh left join yy_qfmx_gd c on a.gdlsbh=c.gdlsbh left join ( select sj.code, sj.name as sjmc, yslx.name,yslx.code as ysxzbm from bm_sj sj left join bm_yslx yslx on sj.yslx=yslx.code ) d on a.sjbm = d.code WHERE 1=1 AND a.chbz in ( ? , ? , ? ) AND a.ssgs=? and a.jsrq >=?+0 and a.jsrq <= ?+0 AND a.khbm >' ' AND a.sscbb in (select cbbbm from yh_sjqx where user_id=?)
  1425. 2026-05-08 15:50:26.170 [XNIO-1 task-2] DEBUG c.t.f.s.m.YyQfmxMapper.getPageCount - ==> Parameters: 0(String), 1(String), 2(String), 1(String), 2026-04-01T00:00(LocalDateTime), 2026-04-30T23:59:59(LocalDateTime), 10753(String)
  1426. 2026-05-08 15:50:26.267 [XNIO-1 task-2] DEBUG c.t.f.s.m.YyQfmxMapper.getPageCount - <== Total: 1
  1427. 2026-05-08 15:50:26.268 [XNIO-1 task-2] INFO c.t.feesapi.common.LogRecordAspect - =================【getPageList】请求结束==================
  1428. 2026-05-08 15:51:08.336 [SpringContextShutdownHook] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'taskScheduler'
  1429. 2026-05-08 15:51:08.358 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registering from Nacos Server now...
  1430. 2026-05-08 15:51:08.362 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registration finished.
  1431. 2026-05-08 15:51:08.363 [SpringContextShutdownHook] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'taskScheduler'
  1432. 2026-05-08 15:51:08.445 [SpringContextShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
  1433. 2026-05-08 15:51:08.448 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-2} closing ...
  1434. 2026-05-08 15:51:08.459 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-2} closed
  1435. 2026-05-08 15:51:08.459 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-3} closing ...
  1436. 2026-05-08 15:51:08.504 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-3} closed
  1437. 2026-05-08 15:51:08.505 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closing ...
  1438. 2026-05-08 15:51:08.564 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closed
  1439. 2026-05-08 15:51:08.565 [SpringContextShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
  1440. 2026-05-08 15:51:08.565 [SpringContextShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  1441. 2026-05-08 15:51:08.565 [SpringContextShutdownHook] INFO io.undertow - stopping server: Undertow - 2.0.31.Final
  1442. 2026-05-08 18:47:40.955 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.0.20.Final
  1443. 2026-05-08 18:47:41.459 [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
  1444. 2026-05-08 18:47:43.242 [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]
  1445. 2026-05-08 18:47:43.254 [main] WARN c.a.c.n.c.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[collect-fees-api-bd.yaml] & group[DEFAULT_GROUP]
  1446. 2026-05-08 18:47:43.254 [main] INFO o.s.c.b.c.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-collect-fees-api-bd.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-collect-fees-api.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-collect-fees-api,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-yx_config_ftp.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-public_config_redis.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-public_config_oracle.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-public_config_public.yaml,DEFAULT_GROUP'}]
  1447. 2026-05-08 18:47:43.259 [main] INFO com.tofly.feesapi.FeesApiApplication - The following profiles are active: bd
  1448. 2026-05-08 18:47:46.392 [main] WARN o.s.boot.actuate.endpoint.EndpointId - Endpoint ID 'nacos-config' contains invalid characters, please migrate to a valid format.
  1449. 2026-05-08 18:47:46.399 [main] WARN o.s.boot.actuate.endpoint.EndpointId - Endpoint ID 'nacos-discovery' contains invalid characters, please migrate to a valid format.
  1450. 2026-05-08 18:47:46.786 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode!
  1451. 2026-05-08 18:47:46.790 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
  1452. 2026-05-08 18:47:47.311 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 419ms. Found 0 Redis repository interfaces.
  1453. 2026-05-08 18:47:47.413 [main] WARN o.s.boot.actuate.endpoint.EndpointId - Endpoint ID 'service-registry' contains invalid characters, please migrate to a valid format.
  1454. 2026-05-08 18:47:47.542 [main] DEBUG org.apache.ibatis.logging.LogFactory - Logging initialized using 'class org.apache.ibatis.logging.slf4j.Slf4jImpl' adapter.
  1455. 2026-05-08 18:47:47.821 [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!
  1456. 2026-05-08 18:47:47.821 [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!
  1457. 2026-05-08 18:47:47.821 [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!
  1458. 2026-05-08 18:47:47.821 [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!
  1459. 2026-05-08 18:47:47.822 [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!
  1460. 2026-05-08 18:47:47.822 [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!
  1461. 2026-05-08 18:47:47.822 [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!
  1462. 2026-05-08 18:47:47.822 [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!
  1463. 2026-05-08 18:47:47.822 [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!
  1464. 2026-05-08 18:47:47.822 [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!
  1465. 2026-05-08 18:47:47.822 [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!
  1466. 2026-05-08 18:47:47.822 [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!
  1467. 2026-05-08 18:47:47.822 [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!
  1468. 2026-05-08 18:47:47.822 [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!
  1469. 2026-05-08 18:47:47.822 [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!
  1470. 2026-05-08 18:47:47.822 [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!
  1471. 2026-05-08 18:47:47.822 [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!
  1472. 2026-05-08 18:47:47.822 [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!
  1473. 2026-05-08 18:47:47.822 [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!
  1474. 2026-05-08 18:47:47.822 [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!
  1475. 2026-05-08 18:47:47.822 [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!
  1476. 2026-05-08 18:47:47.822 [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!
  1477. 2026-05-08 18:47:47.822 [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!
  1478. 2026-05-08 18:47:47.822 [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!
  1479. 2026-05-08 18:47:47.822 [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!
  1480. 2026-05-08 18:47:47.822 [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!
  1481. 2026-05-08 18:47:47.822 [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!
  1482. 2026-05-08 18:47:47.822 [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!
  1483. 2026-05-08 18:47:47.822 [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!
  1484. 2026-05-08 18:47:47.822 [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!
  1485. 2026-05-08 18:47:47.822 [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!
  1486. 2026-05-08 18:47:47.823 [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!
  1487. 2026-05-08 18:47:47.823 [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!
  1488. 2026-05-08 18:47:47.823 [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!
  1489. 2026-05-08 18:47:47.823 [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!
  1490. 2026-05-08 18:47:47.823 [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!
  1491. 2026-05-08 18:47:47.823 [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!
  1492. 2026-05-08 18:47:47.824 [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!
  1493. 2026-05-08 18:47:47.824 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiKprpzMapper' and 'com.tofly.feesapi.dzfp.mapper.EiKprpzMapper' mapperInterface. Bean already defined with the same name!
  1494. 2026-05-08 18:47:47.824 [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!
  1495. 2026-05-08 18:47:47.824 [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!
  1496. 2026-05-08 18:47:47.824 [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!
  1497. 2026-05-08 18:47:47.824 [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!
  1498. 2026-05-08 18:47:47.824 [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!
  1499. 2026-05-08 18:47:47.824 [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!
  1500. 2026-05-08 18:47:47.824 [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!
  1501. 2026-05-08 18:47:47.824 [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!
  1502. 2026-05-08 18:47:47.824 [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!
  1503. 2026-05-08 18:47:47.824 [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!
  1504. 2026-05-08 18:47:47.824 [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!
  1505. 2026-05-08 18:47:47.824 [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!
  1506. 2026-05-08 18:47:47.824 [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!
  1507. 2026-05-08 18:47:47.824 [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!
  1508. 2026-05-08 18:47:47.824 [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!
  1509. 2026-05-08 18:47:47.824 [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!
  1510. 2026-05-08 18:47:47.824 [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!
  1511. 2026-05-08 18:47:47.824 [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!
  1512. 2026-05-08 18:47:47.824 [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!
  1513. 2026-05-08 18:47:47.824 [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!
  1514. 2026-05-08 18:47:47.824 [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!
  1515. 2026-05-08 18:47:47.824 [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!
  1516. 2026-05-08 18:47:47.824 [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!
  1517. 2026-05-08 18:47:47.824 [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!
  1518. 2026-05-08 18:47:47.824 [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!
  1519. 2026-05-08 18:47:47.824 [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!
  1520. 2026-05-08 18:47:47.824 [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!
  1521. 2026-05-08 18:47:47.824 [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!
  1522. 2026-05-08 18:47:47.824 [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!
  1523. 2026-05-08 18:47:47.825 [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!
  1524. 2026-05-08 18:47:47.825 [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!
  1525. 2026-05-08 18:47:47.825 [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!
  1526. 2026-05-08 18:47:47.825 [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!
  1527. 2026-05-08 18:47:47.825 [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!
  1528. 2026-05-08 18:47:47.825 [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!
  1529. 2026-05-08 18:47:47.825 [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!
  1530. 2026-05-08 18:47:47.825 [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!
  1531. 2026-05-08 18:47:47.825 [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!
  1532. 2026-05-08 18:47:47.825 [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!
  1533. 2026-05-08 18:47:47.825 [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!
  1534. 2026-05-08 18:47:47.825 [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!
  1535. 2026-05-08 18:47:47.825 [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!
  1536. 2026-05-08 18:47:47.825 [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!
  1537. 2026-05-08 18:47:47.825 [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!
  1538. 2026-05-08 18:47:47.825 [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!
  1539. 2026-05-08 18:47:47.825 [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!
  1540. 2026-05-08 18:47:47.825 [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!
  1541. 2026-05-08 18:47:47.825 [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!
  1542. 2026-05-08 18:47:47.825 [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!
  1543. 2026-05-08 18:47:47.825 [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!
  1544. 2026-05-08 18:47:47.825 [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!
  1545. 2026-05-08 18:47:47.825 [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!
  1546. 2026-05-08 18:47:47.825 [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!
  1547. 2026-05-08 18:47:47.826 [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!
  1548. 2026-05-08 18:47:47.826 [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!
  1549. 2026-05-08 18:47:47.826 [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!
  1550. 2026-05-08 18:47:47.826 [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!
  1551. 2026-05-08 18:47:47.826 [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!
  1552. 2026-05-08 18:47:47.826 [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!
  1553. 2026-05-08 18:47:47.826 [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!
  1554. 2026-05-08 18:47:47.826 [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!
  1555. 2026-05-08 18:47:47.826 [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!
  1556. 2026-05-08 18:47:47.826 [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!
  1557. 2026-05-08 18:47:47.826 [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!
  1558. 2026-05-08 18:47:47.826 [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!
  1559. 2026-05-08 18:47:47.826 [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!
  1560. 2026-05-08 18:47:47.826 [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!
  1561. 2026-05-08 18:47:47.826 [main] WARN o.m.s.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.tofly.feesapi.**.mapper]' package. Please check your configuration.
  1562. 2026-05-08 18:47:47.967 [main] INFO o.s.cloud.context.scope.GenericScope - BeanFactory id=6ba9fcc8-98cb-35e6-8547-52fc325bd065
  1563. 2026-05-08 18:47:48.042 [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)
  1564. 2026-05-08 18:47:48.383 [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)
  1565. 2026-05-08 18:47:48.395 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$5c581374] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  1566. 2026-05-08 18:47:48.415 [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)
  1567. 2026-05-08 18:47:48.446 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@684ce74c' of type [org.springframework.security.oauth2.provider.expression.OAuth2MethodSecurityExpressionHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  1568. 2026-05-08 18:47:48.456 [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)
  1569. 2026-05-08 18:47:48.809 [main] WARN io.undertow.websockets.jsr - UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
  1570. 2026-05-08 18:47:48.835 [main] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
  1571. 2026-05-08 18:47:48.835 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 5554 ms
  1572. 2026-05-08 18:47:55.775 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1,master} inited
  1573. 2026-05-08 18:47:56.461 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-2,udb} inited
  1574. 2026-05-08 18:47:57.059 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-3,flowDB} inited
  1575. 2026-05-08 18:47:57.059 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [udb] success
  1576. 2026-05-08 18:47:57.059 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [flowDB] success
  1577. 2026-05-08 18:47:57.059 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
  1578. 2026-05-08 18:47:57.059 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [3] datasource,primary datasource named [master]
  1579. 2026-05-08 18:47:59.317 [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]
  1580. 2026-05-08 18:48:00.010 [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]
  1581. 2026-05-08 18:48:01.776 [main] WARN c.b.m.core.metadata.TableInfoHelper - Can not find table primary key in Class: "com.tofly.feesapi.wxgl.wechatpay.entity.PaySelect".
  1582. 2026-05-08 18:48:01.776 [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.
  1583. 2026-05-08 18:48:01.802 [main] WARN c.b.m.core.metadata.TableInfoHelper - Can not find table primary key in Class: "com.tofly.feesapi.xtgl.entity.SysGdcsb".
  1584. 2026-05-08 18:48:01.802 [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.
  1585. 2026-05-08 18:48:08.478 [main] INFO org.redisson.Version - Redisson 3.23.2
  1586. 2026-05-08 18:48:10.136 [redisson-netty-2-4] INFO o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 127.0.0.1/127.0.0.1:6379
  1587. 2026-05-08 18:48:10.219 [redisson-netty-2-19] INFO o.r.c.pool.MasterConnectionPool - 24 connections initialized for 127.0.0.1/127.0.0.1:6379
  1588. 2026-05-08 18:48:22.648 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
  1589. 2026-05-08 18:48:22.969 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 19 endpoint(s) beneath base path '/actuator'
  1590. 2026-05-08 18:48:23.164 [main] INFO s.d.s.w.WebMvcPropertySourcedRequestMappingHandlerMapping - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
  1591. 2026-05-08 18:48:23.663 [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]
  1592. 2026-05-08 18:48:23.684 [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]
  1593. 2026-05-08 18:48:24.398 [main] INFO o.s.s.c.ThreadPoolTaskScheduler - Initializing ExecutorService 'taskScheduler'
  1594. 2026-05-08 18:48:24.926 [main] INFO o.s.b.a.s.s.UserDetailsServiceAutoConfiguration -
  1595. Using generated security password: f9e727ff-ea9c-4d30-83e1-434910b4ce9d
  1596. 2026-05-08 18:48:25.200 [main] INFO o.s.s.web.DefaultSecurityFilterChain - Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@71d3776, org.springframework.security.web.context.SecurityContextPersistenceFilter@4f1fb8fc, org.springframework.security.web.header.HeaderWriterFilter@60e2b6e3, org.springframework.security.web.authentication.logout.LogoutFilter@91e76b6, org.springframework.security.oauth2.provider.authentication.OAuth2AuthenticationProcessingFilter@2e90a3de, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@61427cd3, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@3f774d60, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@5303762f, org.springframework.security.web.session.SessionManagementFilter@515d6c9f, org.springframework.security.web.access.ExceptionTranslationFilter@3d8c499a, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@7075ef91]
  1597. 2026-05-08 18:48:27.261 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
  1598. 2026-05-08 18:48:27.458 [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.
  1599. 2026-05-08 18:48:27.728 [main] INFO s.d.s.w.p.DocumentationPluginsBootstrapper - Documentation plugins bootstrapped
  1600. 2026-05-08 18:48:27.733 [main] INFO s.d.s.w.p.DocumentationPluginsBootstrapper - Found 1 custom documentation plugin(s)
  1601. 2026-05-08 18:48:28.063 [main] INFO s.d.s.w.s.ApiListingReferenceScanner - Scanning for api listing references
  1602. 2026-05-08 18:48:28.725 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_1
  1603. 2026-05-08 18:48:28.731 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_1
  1604. 2026-05-08 18:48:28.733 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_1
  1605. 2026-05-08 18:48:28.734 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_1
  1606. 2026-05-08 18:48:28.742 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_1
  1607. 2026-05-08 18:48:28.745 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_1
  1608. 2026-05-08 18:48:28.781 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: addCustomerUsingPOST_1
  1609. 2026-05-08 18:48:28.782 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: deleteCustomerUsingPOST_1
  1610. 2026-05-08 18:48:28.784 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getBindCustomerUsingGET_1
  1611. 2026-05-08 18:48:28.786 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: selectCustomerUsingGET_1
  1612. 2026-05-08 18:48:28.789 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getBindCustomerAndQfUsingGET_1
  1613. 2026-05-08 18:48:28.791 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerBasicInFoUsingGET_1
  1614. 2026-05-08 18:48:28.793 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerChargeInFoUsingGET_1
  1615. 2026-05-08 18:48:28.794 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerInFoUsingGET_1
  1616. 2026-05-08 18:48:28.796 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerQfInFoUsingGET_1
  1617. 2026-05-08 18:48:28.797 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerReadMeterInFoUsingGET_1
  1618. 2026-05-08 18:48:28.817 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_2
  1619. 2026-05-08 18:48:28.863 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_2
  1620. 2026-05-08 18:48:28.864 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_2
  1621. 2026-05-08 18:48:28.865 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_2
  1622. 2026-05-08 18:48:28.874 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_2
  1623. 2026-05-08 18:48:28.877 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_2
  1624. 2026-05-08 18:48:28.905 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_3
  1625. 2026-05-08 18:48:28.908 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_3
  1626. 2026-05-08 18:48:28.909 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_3
  1627. 2026-05-08 18:48:28.914 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_3
  1628. 2026-05-08 18:48:28.916 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_3
  1629. 2026-05-08 18:48:28.926 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_3
  1630. 2026-05-08 18:48:28.938 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_4
  1631. 2026-05-08 18:48:28.940 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_4
  1632. 2026-05-08 18:48:28.941 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_4
  1633. 2026-05-08 18:48:28.945 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_4
  1634. 2026-05-08 18:48:28.947 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_4
  1635. 2026-05-08 18:48:28.950 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_5
  1636. 2026-05-08 18:48:28.952 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_5
  1637. 2026-05-08 18:48:28.954 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_5
  1638. 2026-05-08 18:48:28.958 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_5
  1639. 2026-05-08 18:48:28.960 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_5
  1640. 2026-05-08 18:48:28.974 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_4
  1641. 2026-05-08 18:48:28.984 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_6
  1642. 2026-05-08 18:48:28.997 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_5
  1643. 2026-05-08 18:48:28.999 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_6
  1644. 2026-05-08 18:48:29.000 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_6
  1645. 2026-05-08 18:48:29.006 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_6
  1646. 2026-05-08 18:48:29.009 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_6
  1647. 2026-05-08 18:48:29.014 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_1
  1648. 2026-05-08 18:48:29.025 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_7
  1649. 2026-05-08 18:48:29.027 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_7
  1650. 2026-05-08 18:48:29.029 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_7
  1651. 2026-05-08 18:48:29.037 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_7
  1652. 2026-05-08 18:48:29.038 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_7
  1653. 2026-05-08 18:48:29.047 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_8
  1654. 2026-05-08 18:48:29.048 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getFffsListUsingGET_1
  1655. 2026-05-08 18:48:29.050 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_8
  1656. 2026-05-08 18:48:29.052 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_9
  1657. 2026-05-08 18:48:29.059 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_8
  1658. 2026-05-08 18:48:29.060 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_8
  1659. 2026-05-08 18:48:29.071 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_2
  1660. 2026-05-08 18:48:29.079 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_9
  1661. 2026-05-08 18:48:29.081 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_10
  1662. 2026-05-08 18:48:29.083 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_11
  1663. 2026-05-08 18:48:29.087 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_9
  1664. 2026-05-08 18:48:29.089 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_9
  1665. 2026-05-08 18:48:29.095 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_10
  1666. 2026-05-08 18:48:29.097 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_12
  1667. 2026-05-08 18:48:29.099 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_13
  1668. 2026-05-08 18:48:29.105 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_10
  1669. 2026-05-08 18:48:29.106 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_10
  1670. 2026-05-08 18:48:29.113 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_11
  1671. 2026-05-08 18:48:29.116 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_14
  1672. 2026-05-08 18:48:29.117 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_15
  1673. 2026-05-08 18:48:29.123 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_11
  1674. 2026-05-08 18:48:29.125 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_11
  1675. 2026-05-08 18:48:29.135 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_12
  1676. 2026-05-08 18:48:29.136 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_16
  1677. 2026-05-08 18:48:29.138 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_8
  1678. 2026-05-08 18:48:29.142 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_12
  1679. 2026-05-08 18:48:29.143 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_12
  1680. 2026-05-08 18:48:29.152 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_13
  1681. 2026-05-08 18:48:29.154 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_17
  1682. 2026-05-08 18:48:29.156 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_9
  1683. 2026-05-08 18:48:29.160 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_13
  1684. 2026-05-08 18:48:29.162 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_13
  1685. 2026-05-08 18:48:29.168 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_14
  1686. 2026-05-08 18:48:29.171 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_18
  1687. 2026-05-08 18:48:29.173 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_19
  1688. 2026-05-08 18:48:29.181 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_14
  1689. 2026-05-08 18:48:29.182 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_14
  1690. 2026-05-08 18:48:29.198 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_15
  1691. 2026-05-08 18:48:29.220 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_6
  1692. 2026-05-08 18:48:29.261 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_15
  1693. 2026-05-08 18:48:29.272 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_3
  1694. 2026-05-08 18:48:29.280 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_16
  1695. 2026-05-08 18:48:29.282 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_20
  1696. 2026-05-08 18:48:29.283 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_10
  1697. 2026-05-08 18:48:29.286 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_16
  1698. 2026-05-08 18:48:29.287 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_15
  1699. 2026-05-08 18:48:29.297 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_17
  1700. 2026-05-08 18:48:29.307 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_7
  1701. 2026-05-08 18:48:29.309 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_21
  1702. 2026-05-08 18:48:29.310 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_11
  1703. 2026-05-08 18:48:29.314 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_17
  1704. 2026-05-08 18:48:29.315 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_16
  1705. 2026-05-08 18:48:29.338 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_8
  1706. 2026-05-08 18:48:29.340 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveBatchUsingPOST_1
  1707. 2026-05-08 18:48:29.582 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_18
  1708. 2026-05-08 18:48:29.591 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_22
  1709. 2026-05-08 18:48:29.593 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_12
  1710. 2026-05-08 18:48:29.597 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_18
  1711. 2026-05-08 18:48:29.599 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_17
  1712. 2026-05-08 18:48:29.603 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_19
  1713. 2026-05-08 18:48:29.611 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_23
  1714. 2026-05-08 18:48:29.613 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_13
  1715. 2026-05-08 18:48:29.619 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_19
  1716. 2026-05-08 18:48:29.621 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_18
  1717. 2026-05-08 18:48:29.624 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_20
  1718. 2026-05-08 18:48:29.627 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_24
  1719. 2026-05-08 18:48:29.633 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_20
  1720. 2026-05-08 18:48:29.635 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_19
  1721. 2026-05-08 18:48:29.651 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_21
  1722. 2026-05-08 18:48:29.653 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_25
  1723. 2026-05-08 18:48:29.655 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_14
  1724. 2026-05-08 18:48:29.659 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_21
  1725. 2026-05-08 18:48:29.701 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: Xh_WordToPdfUsingPOST_1
  1726. 2026-05-08 18:48:29.707 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_22
  1727. 2026-05-08 18:48:29.716 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_26
  1728. 2026-05-08 18:48:29.717 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_15
  1729. 2026-05-08 18:48:29.725 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_22
  1730. 2026-05-08 18:48:29.728 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_27
  1731. 2026-05-08 18:48:29.730 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_16
  1732. 2026-05-08 18:48:29.734 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_23
  1733. 2026-05-08 18:48:29.736 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_20
  1734. 2026-05-08 18:48:29.768 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_23
  1735. 2026-05-08 18:48:29.951 [main] WARN s.d.s.w.r.p.ParameterTypeReader - @ModelAttribute annotated parameters should have already been expanded via the ExpandedParameterBuilderPlugin
  1736. 2026-05-08 18:48:29.952 [main] WARN s.d.s.w.r.p.ParameterTypeReader - @ModelAttribute annotated parameters should have already been expanded via the ExpandedParameterBuilderPlugin
  1737. 2026-05-08 18:48:29.965 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportYsqdUsingGET_1
  1738. 2026-05-08 18:48:30.073 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_24
  1739. 2026-05-08 18:48:30.077 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_28
  1740. 2026-05-08 18:48:30.079 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_17
  1741. 2026-05-08 18:48:30.126 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_25
  1742. 2026-05-08 18:48:30.127 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_29
  1743. 2026-05-08 18:48:30.128 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_18
  1744. 2026-05-08 18:48:30.132 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_24
  1745. 2026-05-08 18:48:30.134 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_21
  1746. 2026-05-08 18:48:30.152 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_26
  1747. 2026-05-08 18:48:30.162 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_30
  1748. 2026-05-08 18:48:30.163 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_19
  1749. 2026-05-08 18:48:30.167 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_25
  1750. 2026-05-08 18:48:30.170 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_22
  1751. 2026-05-08 18:48:30.172 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_27
  1752. 2026-05-08 18:48:30.180 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_31
  1753. 2026-05-08 18:48:30.182 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_20
  1754. 2026-05-08 18:48:30.186 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_26
  1755. 2026-05-08 18:48:30.188 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_23
  1756. 2026-05-08 18:48:30.210 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_28
  1757. 2026-05-08 18:48:30.221 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_32
  1758. 2026-05-08 18:48:30.223 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_21
  1759. 2026-05-08 18:48:30.231 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_27
  1760. 2026-05-08 18:48:30.233 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_24
  1761. 2026-05-08 18:48:30.251 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxBtsqPageUsingGET_1
  1762. 2026-05-08 18:48:30.255 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_29
  1763. 2026-05-08 18:48:30.267 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_33
  1764. 2026-05-08 18:48:30.269 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_22
  1765. 2026-05-08 18:48:30.276 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_28
  1766. 2026-05-08 18:48:30.278 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_25
  1767. 2026-05-08 18:48:30.285 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxBzsqPageUsingGET_1
  1768. 2026-05-08 18:48:30.298 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_30
  1769. 2026-05-08 18:48:30.307 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_34
  1770. 2026-05-08 18:48:30.309 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_23
  1771. 2026-05-08 18:48:30.315 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_29
  1772. 2026-05-08 18:48:30.317 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_26
  1773. 2026-05-08 18:48:30.331 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxDbsqPageUsingGET_1
  1774. 2026-05-08 18:48:30.334 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPOST_1
  1775. 2026-05-08 18:48:30.339 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_31
  1776. 2026-05-08 18:48:30.346 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_35
  1777. 2026-05-08 18:48:30.348 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_24
  1778. 2026-05-08 18:48:30.351 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_30
  1779. 2026-05-08 18:48:30.353 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_27
  1780. 2026-05-08 18:48:30.356 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_32
  1781. 2026-05-08 18:48:30.361 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_36
  1782. 2026-05-08 18:48:30.363 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_25
  1783. 2026-05-08 18:48:30.373 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_31
  1784. 2026-05-08 18:48:30.375 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_28
  1785. 2026-05-08 18:48:30.380 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_33
  1786. 2026-05-08 18:48:30.381 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_37
  1787. 2026-05-08 18:48:30.384 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_26
  1788. 2026-05-08 18:48:30.393 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_32
  1789. 2026-05-08 18:48:30.396 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_29
  1790. 2026-05-08 18:48:30.422 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_34
  1791. 2026-05-08 18:48:30.429 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_38
  1792. 2026-05-08 18:48:30.432 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_39
  1793. 2026-05-08 18:48:30.438 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_33
  1794. 2026-05-08 18:48:30.442 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_30
  1795. 2026-05-08 18:48:30.448 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_35
  1796. 2026-05-08 18:48:30.460 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_40
  1797. 2026-05-08 18:48:30.464 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_27
  1798. 2026-05-08 18:48:30.473 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_34
  1799. 2026-05-08 18:48:30.477 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_31
  1800. 2026-05-08 18:48:30.495 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxHfsqPageUsingGET_1
  1801. 2026-05-08 18:48:30.501 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_36
  1802. 2026-05-08 18:48:30.512 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_41
  1803. 2026-05-08 18:48:30.514 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_28
  1804. 2026-05-08 18:48:30.521 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_35
  1805. 2026-05-08 18:48:30.524 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_32
  1806. 2026-05-08 18:48:30.542 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxLwsqPageUsingGET_1
  1807. 2026-05-08 18:48:30.547 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_37
  1808. 2026-05-08 18:48:30.558 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_42
  1809. 2026-05-08 18:48:30.561 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_29
  1810. 2026-05-08 18:48:30.570 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_36
  1811. 2026-05-08 18:48:30.573 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_33
  1812. 2026-05-08 18:48:30.590 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxLxdhsqPageUsingGET_1
  1813. 2026-05-08 18:48:30.597 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_38
  1814. 2026-05-08 18:48:30.613 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_43
  1815. 2026-05-08 18:48:30.616 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_30
  1816. 2026-05-08 18:48:30.629 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_37
  1817. 2026-05-08 18:48:30.633 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_34
  1818. 2026-05-08 18:48:30.658 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_39
  1819. 2026-05-08 18:48:30.670 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_44
  1820. 2026-05-08 18:48:30.674 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_31
  1821. 2026-05-08 18:48:30.685 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_38
  1822. 2026-05-08 18:48:30.688 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_35
  1823. 2026-05-08 18:48:30.704 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxDbsqPageUsingGET_2
  1824. 2026-05-08 18:48:30.721 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_1
  1825. 2026-05-08 18:48:30.726 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_40
  1826. 2026-05-08 18:48:30.732 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_45
  1827. 2026-05-08 18:48:30.734 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_32
  1828. 2026-05-08 18:48:30.745 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_39
  1829. 2026-05-08 18:48:30.760 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_36
  1830. 2026-05-08 18:48:30.763 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_41
  1831. 2026-05-08 18:48:30.769 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_46
  1832. 2026-05-08 18:48:30.771 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_33
  1833. 2026-05-08 18:48:30.778 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_40
  1834. 2026-05-08 18:48:30.781 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_37
  1835. 2026-05-08 18:48:30.785 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_42
  1836. 2026-05-08 18:48:30.792 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_47
  1837. 2026-05-08 18:48:30.794 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_34
  1838. 2026-05-08 18:48:30.802 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_41
  1839. 2026-05-08 18:48:30.805 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_38
  1840. 2026-05-08 18:48:30.809 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_43
  1841. 2026-05-08 18:48:30.815 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_48
  1842. 2026-05-08 18:48:30.819 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_49
  1843. 2026-05-08 18:48:30.825 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_42
  1844. 2026-05-08 18:48:30.828 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_39
  1845. 2026-05-08 18:48:30.832 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_44
  1846. 2026-05-08 18:48:30.839 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_50
  1847. 2026-05-08 18:48:30.841 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_51
  1848. 2026-05-08 18:48:30.846 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_43
  1849. 2026-05-08 18:48:30.848 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_40
  1850. 2026-05-08 18:48:30.854 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_45
  1851. 2026-05-08 18:48:30.865 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_52
  1852. 2026-05-08 18:48:30.868 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_35
  1853. 2026-05-08 18:48:30.874 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_44
  1854. 2026-05-08 18:48:30.877 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_41
  1855. 2026-05-08 18:48:30.890 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxWzjbsqPageUsingGET_1
  1856. 2026-05-08 18:48:30.894 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_46
  1857. 2026-05-08 18:48:30.904 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_53
  1858. 2026-05-08 18:48:30.907 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_36
  1859. 2026-05-08 18:48:30.913 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_45
  1860. 2026-05-08 18:48:30.915 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_42
  1861. 2026-05-08 18:48:30.929 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxXbsqPageUsingGET_1
  1862. 2026-05-08 18:48:30.933 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_47
  1863. 2026-05-08 18:48:30.941 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_54
  1864. 2026-05-08 18:48:30.944 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_37
  1865. 2026-05-08 18:48:30.950 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_46
  1866. 2026-05-08 18:48:30.952 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_43
  1867. 2026-05-08 18:48:30.963 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxXhsqPageUsingGET_1
  1868. 2026-05-08 18:48:30.965 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPOST_2
  1869. 2026-05-08 18:48:30.968 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_48
  1870. 2026-05-08 18:48:30.973 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_55
  1871. 2026-05-08 18:48:30.975 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_38
  1872. 2026-05-08 18:48:30.981 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_47
  1873. 2026-05-08 18:48:30.983 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_44
  1874. 2026-05-08 18:48:30.986 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_49
  1875. 2026-05-08 18:48:30.994 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_56
  1876. 2026-05-08 18:48:30.996 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_39
  1877. 2026-05-08 18:48:30.999 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_48
  1878. 2026-05-08 18:48:31.002 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_45
  1879. 2026-05-08 18:48:31.016 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_9
  1880. 2026-05-08 18:48:31.018 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_57
  1881. 2026-05-08 18:48:31.020 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_40
  1882. 2026-05-08 18:48:31.025 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_49
  1883. 2026-05-08 18:48:31.029 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_58
  1884. 2026-05-08 18:48:31.032 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_41
  1885. 2026-05-08 18:48:31.037 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_50
  1886. 2026-05-08 18:48:31.049 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_10
  1887. 2026-05-08 18:48:31.052 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_50
  1888. 2026-05-08 18:48:31.061 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_59
  1889. 2026-05-08 18:48:31.063 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_42
  1890. 2026-05-08 18:48:31.069 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_51
  1891. 2026-05-08 18:48:31.076 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_46
  1892. 2026-05-08 18:48:31.078 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_2
  1893. 2026-05-08 18:48:31.114 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_52
  1894. 2026-05-08 18:48:31.129 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_51
  1895. 2026-05-08 18:48:31.152 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_11
  1896. 2026-05-08 18:48:31.177 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_1
  1897. 2026-05-08 18:48:31.194 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_52
  1898. 2026-05-08 18:48:31.196 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_43
  1899. 2026-05-08 18:48:31.228 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_53
  1900. 2026-05-08 18:48:31.237 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_60
  1901. 2026-05-08 18:48:31.239 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_44
  1902. 2026-05-08 18:48:31.244 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_53
  1903. 2026-05-08 18:48:31.247 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_47
  1904. 2026-05-08 18:48:31.252 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_54
  1905. 2026-05-08 18:48:31.260 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_61
  1906. 2026-05-08 18:48:31.263 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_45
  1907. 2026-05-08 18:48:31.272 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_54
  1908. 2026-05-08 18:48:31.288 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_48
  1909. 2026-05-08 18:48:31.290 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_3
  1910. 2026-05-08 18:48:31.294 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_62
  1911. 2026-05-08 18:48:31.296 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_46
  1912. 2026-05-08 18:48:31.300 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_55
  1913. 2026-05-08 18:48:31.311 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_12
  1914. 2026-05-08 18:48:31.320 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_63
  1915. 2026-05-08 18:48:31.323 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_47
  1916. 2026-05-08 18:48:31.329 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_56
  1917. 2026-05-08 18:48:31.340 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_13
  1918. 2026-05-08 18:48:31.345 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_55
  1919. 2026-05-08 18:48:31.350 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_64
  1920. 2026-05-08 18:48:31.352 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_48
  1921. 2026-05-08 18:48:31.359 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_57
  1922. 2026-05-08 18:48:31.369 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_49
  1923. 2026-05-08 18:48:31.370 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_4
  1924. 2026-05-08 18:48:31.404 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getDaCustomerPageUsingGET_1
  1925. 2026-05-08 18:48:31.456 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_1
  1926. 2026-05-08 18:48:31.478 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_14
  1927. 2026-05-08 18:48:31.521 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_56
  1928. 2026-05-08 18:48:31.589 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: delByIdUsingDELETE_1
  1929. 2026-05-08 18:48:31.592 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: delByIdsUsingDELETE_1
  1930. 2026-05-08 18:48:31.595 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: disableUsingPUT_1
  1931. 2026-05-08 18:48:31.597 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: enableUsingPUT_1
  1932. 2026-05-08 18:48:31.603 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: importExcelUsingPOST_1
  1933. 2026-05-08 18:48:31.608 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_2
  1934. 2026-05-08 18:48:31.617 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_3
  1935. 2026-05-08 18:48:31.644 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_5
  1936. 2026-05-08 18:48:31.648 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_6
  1937. 2026-05-08 18:48:31.652 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_7
  1938. 2026-05-08 18:48:31.659 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_57
  1939. 2026-05-08 18:48:31.680 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_49
  1940. 2026-05-08 18:48:31.738 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: addUsingPOST_1
  1941. 2026-05-08 18:48:31.754 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_58
  1942. 2026-05-08 18:48:31.772 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_65
  1943. 2026-05-08 18:48:31.775 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_50
  1944. 2026-05-08 18:48:31.782 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_58
  1945. 2026-05-08 18:48:31.791 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: save_gdUsingPOST_1
  1946. 2026-05-08 18:48:31.811 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_50
  1947. 2026-05-08 18:48:31.842 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_59
  1948. 2026-05-08 18:48:31.852 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_66
  1949. 2026-05-08 18:48:31.855 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_51
  1950. 2026-05-08 18:48:31.862 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_59
  1951. 2026-05-08 18:48:31.866 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_51
  1952. 2026-05-08 18:48:31.872 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_60
  1953. 2026-05-08 18:48:31.879 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_67
  1954. 2026-05-08 18:48:31.882 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_52
  1955. 2026-05-08 18:48:31.890 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_60
  1956. 2026-05-08 18:48:31.896 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: save_gdUsingPOST_2
  1957. 2026-05-08 18:48:31.906 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_52
  1958. 2026-05-08 18:48:31.909 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_8
  1959. 2026-05-08 18:48:31.931 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_9
  1960. 2026-05-08 18:48:31.962 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_61
  1961. 2026-05-08 18:48:32.074 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_2
  1962. 2026-05-08 18:48:32.083 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_62
  1963. 2026-05-08 18:48:32.092 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_15
  1964. 2026-05-08 18:48:32.171 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_4
  1965. 2026-05-08 18:48:32.188 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_10
  1966. 2026-05-08 18:48:32.206 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_63
  1967. 2026-05-08 18:48:32.220 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_68
  1968. 2026-05-08 18:48:32.223 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_53
  1969. 2026-05-08 18:48:32.238 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_61
  1970. 2026-05-08 18:48:32.242 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_53
  1971. 2026-05-08 18:48:32.331 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_54
  1972. 2026-05-08 18:48:32.524 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_16
  1973. 2026-05-08 18:48:32.664 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getListUsingGET_1
  1974. 2026-05-08 18:48:32.785 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_64
  1975. 2026-05-08 18:48:32.883 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: statUsingGET_1
  1976. 2026-05-08 18:48:32.961 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_11
  1977. 2026-05-08 18:48:32.973 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_65
  1978. 2026-05-08 18:48:32.998 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_69
  1979. 2026-05-08 18:48:33.002 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_54
  1980. 2026-05-08 18:48:33.086 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_62
  1981. 2026-05-08 18:48:33.092 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_55
  1982. 2026-05-08 18:48:33.098 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_66
  1983. 2026-05-08 18:48:33.112 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_63
  1984. 2026-05-08 18:48:33.118 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_56
  1985. 2026-05-08 18:48:33.141 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_12
  1986. 2026-05-08 18:48:33.233 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_64
  1987. 2026-05-08 18:48:33.304 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_17
  1988. 2026-05-08 18:48:33.351 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: monthlyStatUsingGET_1
  1989. 2026-05-08 18:48:33.358 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: monthlyStatSummaryUsingGET_1
  1990. 2026-05-08 18:48:33.370 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getListUsingGET_2
  1991. 2026-05-08 18:48:33.521 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_67
  1992. 2026-05-08 18:48:33.605 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageListUsingGET_1
  1993. 2026-05-08 18:48:33.612 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: statUsingGET_2
  1994. 2026-05-08 18:48:33.708 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_13
  1995. 2026-05-08 18:48:33.714 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_14
  1996. 2026-05-08 18:48:33.806 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_65
  1997. 2026-05-08 18:48:33.834 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_68
  1998. 2026-05-08 18:48:33.962 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getYyWyjtzPageUsingGET_1
  1999. 2026-05-08 18:48:33.966 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_15
  2000. 2026-05-08 18:48:33.977 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_5
  2001. 2026-05-08 18:48:33.999 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_18
  2002. 2026-05-08 18:48:34.003 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_16
  2003. 2026-05-08 18:48:34.044 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_19
  2004. 2026-05-08 18:48:34.049 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_17
  2005. 2026-05-08 18:48:34.206 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_20
  2006. 2026-05-08 18:48:34.211 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_18
  2007. 2026-05-08 18:48:34.226 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_69
  2008. 2026-05-08 18:48:34.249 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_70
  2009. 2026-05-08 18:48:34.257 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_55
  2010. 2026-05-08 18:48:34.284 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_66
  2011. 2026-05-08 18:48:34.295 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_57
  2012. 2026-05-08 18:48:34.306 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_70
  2013. 2026-05-08 18:48:34.315 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_71
  2014. 2026-05-08 18:48:34.321 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_56
  2015. 2026-05-08 18:48:34.348 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_67
  2016. 2026-05-08 18:48:34.358 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_58
  2017. 2026-05-08 18:48:34.370 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_21
  2018. 2026-05-08 18:48:34.380 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_3
  2019. 2026-05-08 18:48:34.403 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_68
  2020. 2026-05-08 18:48:34.438 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_22
  2021. 2026-05-08 18:48:34.548 [main] INFO io.undertow - starting server: Undertow - 2.0.31.Final
  2022. 2026-05-08 18:48:34.574 [main] INFO org.xnio - XNIO version 3.3.8.Final
  2023. 2026-05-08 18:48:34.603 [main] INFO org.xnio.nio - XNIO NIO Implementation Version 3.3.8.Final
  2024. 2026-05-08 18:48:34.782 [main] INFO o.s.b.w.e.u.UndertowServletWebServer - Undertow started on port(s) 10506 (http) with context path ''
  2025. 2026-05-08 18:48:34.959 [main] INFO c.a.c.n.r.NacosServiceRegistry - nacos registry, DEFAULT_GROUP collect-fees-api 172.19.0.10:10506 register finished
  2026. 2026-05-08 18:48:36.750 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
  2027. 2026-05-08 18:48:36.753 [main] INFO com.tofly.feesapi.FeesApiApplication - Started FeesApiApplication in 57.775 seconds (JVM running for 60.205)
  2028. 2026-05-08 18:48:37.772 [RMI TCP Connection(3)-192.168.1.105] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
  2029. 2026-05-08 18:48:37.772 [RMI TCP Connection(3)-192.168.1.105] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
  2030. 2026-05-08 18:48:37.797 [RMI TCP Connection(3)-192.168.1.105] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 25 ms
  2031. 2026-05-08 18:51:31.250 [SpringContextShutdownHook] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'taskScheduler'
  2032. 2026-05-08 18:51:31.266 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registering from Nacos Server now...
  2033. 2026-05-08 18:51:31.286 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registration finished.
  2034. 2026-05-08 18:51:31.289 [SpringContextShutdownHook] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'taskScheduler'
  2035. 2026-05-08 18:51:41.347 [SpringContextShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
  2036. 2026-05-08 18:51:41.351 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-2} closing ...
  2037. 2026-05-08 18:51:41.397 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-2} closed
  2038. 2026-05-08 18:51:41.397 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-3} closing ...
  2039. 2026-05-08 18:51:41.438 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-3} closed
  2040. 2026-05-08 18:51:41.438 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closing ...
  2041. 2026-05-08 18:51:41.921 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closed
  2042. 2026-05-08 18:51:41.922 [SpringContextShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
  2043. 2026-05-08 18:51:41.926 [SpringContextShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
  2044. 2026-05-08 18:51:41.927 [SpringContextShutdownHook] INFO io.undertow - stopping server: Undertow - 2.0.31.Final