| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055 |
- 2026-05-08 14:37:53.246 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.0.20.Final
- 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
- 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]
- 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]
- 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'}]
- 2026-05-08 14:37:55.646 [main] INFO com.tofly.feesapi.FeesApiApplication - The following profiles are active: bd
- 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.
- 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.
- 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!
- 2026-05-08 14:37:58.254 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
- 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.
- 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.
- 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.
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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.
- 2026-05-08 14:37:59.239 [main] INFO o.s.cloud.context.scope.GenericScope - BeanFactory id=6ba9fcc8-98cb-35e6-8547-52fc325bd065
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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
- 2026-05-08 14:38:00.148 [main] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
- 2026-05-08 14:38:00.149 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 4482 ms
- 2026-05-08 14:38:10.288 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1,master} inited
- 2026-05-08 14:38:11.203 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-2,udb} inited
- 2026-05-08 14:38:12.069 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-3,flowDB} inited
- 2026-05-08 14:38:12.070 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [udb] success
- 2026-05-08 14:38:12.070 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [flowDB] success
- 2026-05-08 14:38:12.070 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
- 2026-05-08 14:38:12.070 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [3] datasource,primary datasource named [master]
- 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]
- 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]
- 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".
- 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.
- 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".
- 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.
- 2026-05-08 14:38:22.141 [main] INFO org.redisson.Version - Redisson 3.23.2
- 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
- 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
- 2026-05-08 14:38:31.653 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
- 2026-05-08 14:38:31.870 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 19 endpoint(s) beneath base path '/actuator'
- 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)]
- 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]
- 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]
- 2026-05-08 14:38:32.559 [main] INFO o.s.s.c.ThreadPoolTaskScheduler - Initializing ExecutorService 'taskScheduler'
- 2026-05-08 14:38:32.797 [main] INFO o.s.b.a.s.s.UserDetailsServiceAutoConfiguration -
- Using generated security password: 92ef8d16-dadf-4cd2-a4fd-04fa7bddb062
- 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]
- 2026-05-08 14:38:34.428 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
- 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.
- 2026-05-08 14:38:34.687 [main] INFO s.d.s.w.p.DocumentationPluginsBootstrapper - Documentation plugins bootstrapped
- 2026-05-08 14:38:34.693 [main] INFO s.d.s.w.p.DocumentationPluginsBootstrapper - Found 1 custom documentation plugin(s)
- 2026-05-08 14:38:34.831 [main] INFO s.d.s.w.s.ApiListingReferenceScanner - Scanning for api listing references
- 2026-05-08 14:38:35.229 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_1
- 2026-05-08 14:38:35.235 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_1
- 2026-05-08 14:38:35.235 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_1
- 2026-05-08 14:38:35.235 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_1
- 2026-05-08 14:38:35.244 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_1
- 2026-05-08 14:38:35.246 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_1
- 2026-05-08 14:38:35.266 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: addCustomerUsingPOST_1
- 2026-05-08 14:38:35.266 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: deleteCustomerUsingPOST_1
- 2026-05-08 14:38:35.266 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getBindCustomerUsingGET_1
- 2026-05-08 14:38:35.266 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: selectCustomerUsingGET_1
- 2026-05-08 14:38:35.266 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getBindCustomerAndQfUsingGET_1
- 2026-05-08 14:38:35.274 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerBasicInFoUsingGET_1
- 2026-05-08 14:38:35.274 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerChargeInFoUsingGET_1
- 2026-05-08 14:38:35.276 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerInFoUsingGET_1
- 2026-05-08 14:38:35.277 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerQfInFoUsingGET_1
- 2026-05-08 14:38:35.277 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerReadMeterInFoUsingGET_1
- 2026-05-08 14:38:35.290 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_2
- 2026-05-08 14:38:35.316 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_2
- 2026-05-08 14:38:35.316 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_2
- 2026-05-08 14:38:35.316 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_2
- 2026-05-08 14:38:35.325 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_2
- 2026-05-08 14:38:35.326 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_2
- 2026-05-08 14:38:35.344 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_3
- 2026-05-08 14:38:35.345 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_3
- 2026-05-08 14:38:35.347 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_3
- 2026-05-08 14:38:35.348 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_3
- 2026-05-08 14:38:35.348 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_3
- 2026-05-08 14:38:35.358 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_3
- 2026-05-08 14:38:35.367 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_4
- 2026-05-08 14:38:35.367 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_4
- 2026-05-08 14:38:35.367 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_4
- 2026-05-08 14:38:35.367 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_4
- 2026-05-08 14:38:35.373 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_4
- 2026-05-08 14:38:35.375 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_5
- 2026-05-08 14:38:35.376 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_5
- 2026-05-08 14:38:35.376 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_5
- 2026-05-08 14:38:35.377 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_5
- 2026-05-08 14:38:35.377 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_5
- 2026-05-08 14:38:35.389 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_4
- 2026-05-08 14:38:35.390 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_6
- 2026-05-08 14:38:35.398 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_5
- 2026-05-08 14:38:35.405 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_6
- 2026-05-08 14:38:35.406 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_6
- 2026-05-08 14:38:35.409 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_6
- 2026-05-08 14:38:35.409 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_6
- 2026-05-08 14:38:35.409 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_1
- 2026-05-08 14:38:35.421 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_7
- 2026-05-08 14:38:35.421 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_7
- 2026-05-08 14:38:35.421 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_7
- 2026-05-08 14:38:35.424 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_7
- 2026-05-08 14:38:35.427 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_7
- 2026-05-08 14:38:35.428 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_8
- 2026-05-08 14:38:35.428 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getFffsListUsingGET_1
- 2026-05-08 14:38:35.428 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_8
- 2026-05-08 14:38:35.428 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_9
- 2026-05-08 14:38:35.438 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_8
- 2026-05-08 14:38:35.439 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_8
- 2026-05-08 14:38:35.439 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_2
- 2026-05-08 14:38:35.449 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_9
- 2026-05-08 14:38:35.453 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_10
- 2026-05-08 14:38:35.454 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_11
- 2026-05-08 14:38:35.456 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_9
- 2026-05-08 14:38:35.456 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_9
- 2026-05-08 14:38:35.459 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_10
- 2026-05-08 14:38:35.459 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_12
- 2026-05-08 14:38:35.459 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_13
- 2026-05-08 14:38:35.468 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_10
- 2026-05-08 14:38:35.469 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_10
- 2026-05-08 14:38:35.470 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_11
- 2026-05-08 14:38:35.470 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_14
- 2026-05-08 14:38:35.470 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_15
- 2026-05-08 14:38:35.480 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_11
- 2026-05-08 14:38:35.482 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_11
- 2026-05-08 14:38:35.489 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_12
- 2026-05-08 14:38:35.491 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_16
- 2026-05-08 14:38:35.491 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_8
- 2026-05-08 14:38:35.491 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_12
- 2026-05-08 14:38:35.491 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_12
- 2026-05-08 14:38:35.500 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_13
- 2026-05-08 14:38:35.500 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_17
- 2026-05-08 14:38:35.504 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_9
- 2026-05-08 14:38:35.507 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_13
- 2026-05-08 14:38:35.510 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_13
- 2026-05-08 14:38:35.510 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_14
- 2026-05-08 14:38:35.515 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_18
- 2026-05-08 14:38:35.519 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_19
- 2026-05-08 14:38:35.523 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_14
- 2026-05-08 14:38:35.523 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_14
- 2026-05-08 14:38:35.531 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_15
- 2026-05-08 14:38:35.550 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_6
- 2026-05-08 14:38:35.572 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_15
- 2026-05-08 14:38:35.584 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_3
- 2026-05-08 14:38:35.592 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_16
- 2026-05-08 14:38:35.592 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_20
- 2026-05-08 14:38:35.592 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_10
- 2026-05-08 14:38:35.592 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_16
- 2026-05-08 14:38:35.592 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_15
- 2026-05-08 14:38:35.602 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_17
- 2026-05-08 14:38:35.611 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_7
- 2026-05-08 14:38:35.612 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_21
- 2026-05-08 14:38:35.612 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_11
- 2026-05-08 14:38:35.616 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_17
- 2026-05-08 14:38:35.616 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_16
- 2026-05-08 14:38:35.633 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_8
- 2026-05-08 14:38:35.637 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveBatchUsingPOST_1
- 2026-05-08 14:38:35.791 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_18
- 2026-05-08 14:38:35.797 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_22
- 2026-05-08 14:38:35.797 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_12
- 2026-05-08 14:38:35.797 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_18
- 2026-05-08 14:38:35.804 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_17
- 2026-05-08 14:38:35.805 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_19
- 2026-05-08 14:38:35.808 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_23
- 2026-05-08 14:38:35.808 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_13
- 2026-05-08 14:38:35.808 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_19
- 2026-05-08 14:38:35.816 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_18
- 2026-05-08 14:38:35.817 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_20
- 2026-05-08 14:38:35.820 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_24
- 2026-05-08 14:38:35.822 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_20
- 2026-05-08 14:38:35.822 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_19
- 2026-05-08 14:38:35.829 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_21
- 2026-05-08 14:38:35.829 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_25
- 2026-05-08 14:38:35.837 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_14
- 2026-05-08 14:38:35.838 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_21
- 2026-05-08 14:38:35.867 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: Xh_WordToPdfUsingPOST_1
- 2026-05-08 14:38:35.871 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_22
- 2026-05-08 14:38:35.879 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_26
- 2026-05-08 14:38:35.879 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_15
- 2026-05-08 14:38:35.879 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_22
- 2026-05-08 14:38:35.888 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_27
- 2026-05-08 14:38:35.889 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_16
- 2026-05-08 14:38:35.889 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_23
- 2026-05-08 14:38:35.889 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_20
- 2026-05-08 14:38:35.910 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_23
- 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
- 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
- 2026-05-08 14:38:36.034 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportYsqdUsingGET_1
- 2026-05-08 14:38:36.105 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_24
- 2026-05-08 14:38:36.105 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_28
- 2026-05-08 14:38:36.105 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_17
- 2026-05-08 14:38:36.133 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_25
- 2026-05-08 14:38:36.133 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_29
- 2026-05-08 14:38:36.136 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_18
- 2026-05-08 14:38:36.138 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_24
- 2026-05-08 14:38:36.140 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_21
- 2026-05-08 14:38:36.152 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_26
- 2026-05-08 14:38:36.159 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_30
- 2026-05-08 14:38:36.160 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_19
- 2026-05-08 14:38:36.163 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_25
- 2026-05-08 14:38:36.164 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_22
- 2026-05-08 14:38:36.166 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_27
- 2026-05-08 14:38:36.171 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_31
- 2026-05-08 14:38:36.172 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_20
- 2026-05-08 14:38:36.174 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_26
- 2026-05-08 14:38:36.174 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_23
- 2026-05-08 14:38:36.187 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_28
- 2026-05-08 14:38:36.195 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_32
- 2026-05-08 14:38:36.196 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_21
- 2026-05-08 14:38:36.197 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_27
- 2026-05-08 14:38:36.203 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_24
- 2026-05-08 14:38:36.209 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxBtsqPageUsingGET_1
- 2026-05-08 14:38:36.215 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_29
- 2026-05-08 14:38:36.225 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_33
- 2026-05-08 14:38:36.225 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_22
- 2026-05-08 14:38:36.230 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_28
- 2026-05-08 14:38:36.234 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_25
- 2026-05-08 14:38:36.238 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxBzsqPageUsingGET_1
- 2026-05-08 14:38:36.250 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_30
- 2026-05-08 14:38:36.259 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_34
- 2026-05-08 14:38:36.259 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_23
- 2026-05-08 14:38:36.265 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_29
- 2026-05-08 14:38:36.268 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_26
- 2026-05-08 14:38:36.277 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxDbsqPageUsingGET_1
- 2026-05-08 14:38:36.279 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPOST_1
- 2026-05-08 14:38:36.282 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_31
- 2026-05-08 14:38:36.287 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_35
- 2026-05-08 14:38:36.290 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_24
- 2026-05-08 14:38:36.291 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_30
- 2026-05-08 14:38:36.291 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_27
- 2026-05-08 14:38:36.291 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_32
- 2026-05-08 14:38:36.299 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_36
- 2026-05-08 14:38:36.300 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_25
- 2026-05-08 14:38:36.305 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_31
- 2026-05-08 14:38:36.308 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_28
- 2026-05-08 14:38:36.310 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_33
- 2026-05-08 14:38:36.312 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_37
- 2026-05-08 14:38:36.314 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_26
- 2026-05-08 14:38:36.318 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_32
- 2026-05-08 14:38:36.320 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_29
- 2026-05-08 14:38:36.331 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_34
- 2026-05-08 14:38:36.338 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_38
- 2026-05-08 14:38:36.340 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_39
- 2026-05-08 14:38:36.344 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_33
- 2026-05-08 14:38:36.345 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_30
- 2026-05-08 14:38:36.348 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_35
- 2026-05-08 14:38:36.351 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_40
- 2026-05-08 14:38:36.351 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_27
- 2026-05-08 14:38:36.362 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_34
- 2026-05-08 14:38:36.362 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_31
- 2026-05-08 14:38:36.376 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxHfsqPageUsingGET_1
- 2026-05-08 14:38:36.380 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_36
- 2026-05-08 14:38:36.386 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_41
- 2026-05-08 14:38:36.388 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_28
- 2026-05-08 14:38:36.391 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_35
- 2026-05-08 14:38:36.393 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_32
- 2026-05-08 14:38:36.404 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxLwsqPageUsingGET_1
- 2026-05-08 14:38:36.406 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_37
- 2026-05-08 14:38:36.413 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_42
- 2026-05-08 14:38:36.415 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_29
- 2026-05-08 14:38:36.419 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_36
- 2026-05-08 14:38:36.421 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_33
- 2026-05-08 14:38:36.429 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxLxdhsqPageUsingGET_1
- 2026-05-08 14:38:36.432 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_38
- 2026-05-08 14:38:36.439 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_43
- 2026-05-08 14:38:36.440 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_30
- 2026-05-08 14:38:36.447 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_37
- 2026-05-08 14:38:36.449 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_34
- 2026-05-08 14:38:36.463 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_39
- 2026-05-08 14:38:36.469 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_44
- 2026-05-08 14:38:36.472 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_31
- 2026-05-08 14:38:36.477 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_38
- 2026-05-08 14:38:36.479 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_35
- 2026-05-08 14:38:36.488 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxDbsqPageUsingGET_2
- 2026-05-08 14:38:36.499 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_1
- 2026-05-08 14:38:36.502 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_40
- 2026-05-08 14:38:36.506 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_45
- 2026-05-08 14:38:36.508 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_32
- 2026-05-08 14:38:36.513 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_39
- 2026-05-08 14:38:36.524 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_36
- 2026-05-08 14:38:36.526 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_41
- 2026-05-08 14:38:36.530 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_46
- 2026-05-08 14:38:36.531 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_33
- 2026-05-08 14:38:36.535 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_40
- 2026-05-08 14:38:36.538 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_37
- 2026-05-08 14:38:36.541 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_42
- 2026-05-08 14:38:36.546 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_47
- 2026-05-08 14:38:36.547 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_34
- 2026-05-08 14:38:36.551 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_41
- 2026-05-08 14:38:36.553 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_38
- 2026-05-08 14:38:36.556 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_43
- 2026-05-08 14:38:36.559 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_48
- 2026-05-08 14:38:36.561 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_49
- 2026-05-08 14:38:36.565 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_42
- 2026-05-08 14:38:36.567 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_39
- 2026-05-08 14:38:36.569 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_44
- 2026-05-08 14:38:36.573 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_50
- 2026-05-08 14:38:36.575 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_51
- 2026-05-08 14:38:36.578 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_43
- 2026-05-08 14:38:36.579 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_40
- 2026-05-08 14:38:36.582 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_45
- 2026-05-08 14:38:36.589 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_52
- 2026-05-08 14:38:36.590 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_35
- 2026-05-08 14:38:36.593 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_44
- 2026-05-08 14:38:36.595 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_41
- 2026-05-08 14:38:36.603 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxWzjbsqPageUsingGET_1
- 2026-05-08 14:38:36.606 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_46
- 2026-05-08 14:38:36.611 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_53
- 2026-05-08 14:38:36.611 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_36
- 2026-05-08 14:38:36.618 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_45
- 2026-05-08 14:38:36.619 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_42
- 2026-05-08 14:38:36.628 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxXbsqPageUsingGET_1
- 2026-05-08 14:38:36.631 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_47
- 2026-05-08 14:38:36.638 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_54
- 2026-05-08 14:38:36.639 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_37
- 2026-05-08 14:38:36.642 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_46
- 2026-05-08 14:38:36.642 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_43
- 2026-05-08 14:38:36.655 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxXhsqPageUsingGET_1
- 2026-05-08 14:38:36.657 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPOST_2
- 2026-05-08 14:38:36.660 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_48
- 2026-05-08 14:38:36.660 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_55
- 2026-05-08 14:38:36.660 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_38
- 2026-05-08 14:38:36.669 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_47
- 2026-05-08 14:38:36.671 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_44
- 2026-05-08 14:38:36.673 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_49
- 2026-05-08 14:38:36.680 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_56
- 2026-05-08 14:38:36.680 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_39
- 2026-05-08 14:38:36.680 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_48
- 2026-05-08 14:38:36.680 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_45
- 2026-05-08 14:38:36.691 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_9
- 2026-05-08 14:38:36.691 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_57
- 2026-05-08 14:38:36.698 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_40
- 2026-05-08 14:38:36.700 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_49
- 2026-05-08 14:38:36.704 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_58
- 2026-05-08 14:38:36.706 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_41
- 2026-05-08 14:38:36.710 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_50
- 2026-05-08 14:38:36.711 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_10
- 2026-05-08 14:38:36.711 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_50
- 2026-05-08 14:38:36.726 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_59
- 2026-05-08 14:38:36.728 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_42
- 2026-05-08 14:38:36.731 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_51
- 2026-05-08 14:38:36.737 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_46
- 2026-05-08 14:38:36.738 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_2
- 2026-05-08 14:38:36.764 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_52
- 2026-05-08 14:38:36.777 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_51
- 2026-05-08 14:38:36.790 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_11
- 2026-05-08 14:38:36.804 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_1
- 2026-05-08 14:38:36.818 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_52
- 2026-05-08 14:38:36.819 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_43
- 2026-05-08 14:38:36.845 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_53
- 2026-05-08 14:38:36.853 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_60
- 2026-05-08 14:38:36.854 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_44
- 2026-05-08 14:38:36.857 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_53
- 2026-05-08 14:38:36.859 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_47
- 2026-05-08 14:38:36.862 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_54
- 2026-05-08 14:38:36.866 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_61
- 2026-05-08 14:38:36.868 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_45
- 2026-05-08 14:38:36.874 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_54
- 2026-05-08 14:38:36.883 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_48
- 2026-05-08 14:38:36.885 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_3
- 2026-05-08 14:38:36.888 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_62
- 2026-05-08 14:38:36.890 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_46
- 2026-05-08 14:38:36.892 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_55
- 2026-05-08 14:38:36.901 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_12
- 2026-05-08 14:38:36.909 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_63
- 2026-05-08 14:38:36.909 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_47
- 2026-05-08 14:38:36.912 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_56
- 2026-05-08 14:38:36.923 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_13
- 2026-05-08 14:38:36.926 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_55
- 2026-05-08 14:38:36.932 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_64
- 2026-05-08 14:38:36.933 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_48
- 2026-05-08 14:38:36.939 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_57
- 2026-05-08 14:38:36.943 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_49
- 2026-05-08 14:38:36.949 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_4
- 2026-05-08 14:38:36.973 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getDaCustomerPageUsingGET_1
- 2026-05-08 14:38:37.012 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_1
- 2026-05-08 14:38:37.024 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_14
- 2026-05-08 14:38:37.058 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_56
- 2026-05-08 14:38:37.107 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: delByIdUsingDELETE_1
- 2026-05-08 14:38:37.108 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: delByIdsUsingDELETE_1
- 2026-05-08 14:38:37.110 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: disableUsingPUT_1
- 2026-05-08 14:38:37.112 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: enableUsingPUT_1
- 2026-05-08 14:38:37.114 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: importExcelUsingPOST_1
- 2026-05-08 14:38:37.117 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_2
- 2026-05-08 14:38:37.125 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_3
- 2026-05-08 14:38:37.146 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_5
- 2026-05-08 14:38:37.148 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_6
- 2026-05-08 14:38:37.150 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_7
- 2026-05-08 14:38:37.153 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_57
- 2026-05-08 14:38:37.165 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_49
- 2026-05-08 14:38:37.194 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: addUsingPOST_1
- 2026-05-08 14:38:37.201 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_58
- 2026-05-08 14:38:37.210 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_65
- 2026-05-08 14:38:37.212 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_50
- 2026-05-08 14:38:37.217 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_58
- 2026-05-08 14:38:37.223 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: save_gdUsingPOST_1
- 2026-05-08 14:38:37.235 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_50
- 2026-05-08 14:38:37.252 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_59
- 2026-05-08 14:38:37.259 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_66
- 2026-05-08 14:38:37.261 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_51
- 2026-05-08 14:38:37.264 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_59
- 2026-05-08 14:38:37.266 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_51
- 2026-05-08 14:38:37.269 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_60
- 2026-05-08 14:38:37.274 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_67
- 2026-05-08 14:38:37.276 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_52
- 2026-05-08 14:38:37.282 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_60
- 2026-05-08 14:38:37.284 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: save_gdUsingPOST_2
- 2026-05-08 14:38:37.290 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_52
- 2026-05-08 14:38:37.292 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_8
- 2026-05-08 14:38:37.301 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_9
- 2026-05-08 14:38:37.317 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_61
- 2026-05-08 14:38:37.384 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_2
- 2026-05-08 14:38:37.393 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_62
- 2026-05-08 14:38:37.397 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_15
- 2026-05-08 14:38:37.446 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_4
- 2026-05-08 14:38:37.456 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_10
- 2026-05-08 14:38:37.466 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_63
- 2026-05-08 14:38:37.477 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_68
- 2026-05-08 14:38:37.477 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_53
- 2026-05-08 14:38:37.497 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_61
- 2026-05-08 14:38:37.503 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_53
- 2026-05-08 14:38:37.578 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_54
- 2026-05-08 14:38:37.701 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_16
- 2026-05-08 14:38:37.790 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getListUsingGET_1
- 2026-05-08 14:38:37.844 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_64
- 2026-05-08 14:38:37.895 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: statUsingGET_1
- 2026-05-08 14:38:37.937 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_11
- 2026-05-08 14:38:37.941 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_65
- 2026-05-08 14:38:37.956 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_69
- 2026-05-08 14:38:37.957 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_54
- 2026-05-08 14:38:38.000 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_62
- 2026-05-08 14:38:38.005 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_55
- 2026-05-08 14:38:38.009 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_66
- 2026-05-08 14:38:38.017 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_63
- 2026-05-08 14:38:38.020 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_56
- 2026-05-08 14:38:38.033 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_12
- 2026-05-08 14:38:38.071 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_64
- 2026-05-08 14:38:38.112 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_17
- 2026-05-08 14:38:38.135 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: monthlyStatUsingGET_1
- 2026-05-08 14:38:38.143 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: monthlyStatSummaryUsingGET_1
- 2026-05-08 14:38:38.144 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getListUsingGET_2
- 2026-05-08 14:38:38.234 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_67
- 2026-05-08 14:38:38.273 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageListUsingGET_1
- 2026-05-08 14:38:38.276 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: statUsingGET_2
- 2026-05-08 14:38:38.325 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_13
- 2026-05-08 14:38:38.328 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_14
- 2026-05-08 14:38:38.378 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_65
- 2026-05-08 14:38:38.391 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_68
- 2026-05-08 14:38:38.458 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getYyWyjtzPageUsingGET_1
- 2026-05-08 14:38:38.458 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_15
- 2026-05-08 14:38:38.458 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_5
- 2026-05-08 14:38:38.477 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_18
- 2026-05-08 14:38:38.477 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_16
- 2026-05-08 14:38:38.500 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_19
- 2026-05-08 14:38:38.500 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_17
- 2026-05-08 14:38:38.569 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_20
- 2026-05-08 14:38:38.569 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_18
- 2026-05-08 14:38:38.579 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_69
- 2026-05-08 14:38:38.590 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_70
- 2026-05-08 14:38:38.590 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_55
- 2026-05-08 14:38:38.600 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_66
- 2026-05-08 14:38:38.600 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_57
- 2026-05-08 14:38:38.610 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_70
- 2026-05-08 14:38:38.614 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_71
- 2026-05-08 14:38:38.614 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_56
- 2026-05-08 14:38:38.630 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_67
- 2026-05-08 14:38:38.635 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_58
- 2026-05-08 14:38:38.640 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_21
- 2026-05-08 14:38:38.640 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_3
- 2026-05-08 14:38:38.650 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_68
- 2026-05-08 14:38:38.661 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_22
- 2026-05-08 14:38:38.722 [main] INFO io.undertow - starting server: Undertow - 2.0.31.Final
- 2026-05-08 14:38:38.735 [main] INFO org.xnio - XNIO version 3.3.8.Final
- 2026-05-08 14:38:38.742 [main] INFO org.xnio.nio - XNIO NIO Implementation Version 3.3.8.Final
- 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 ''
- 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
- 2026-05-08 14:38:40.196 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
- 2026-05-08 14:38:40.197 [main] INFO com.tofly.feesapi.FeesApiApplication - Started FeesApiApplication in 49.042 seconds (JVM running for 51.058)
- 2026-05-08 14:38:40.748 [RMI TCP Connection(5)-192.168.1.105] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
- 2026-05-08 14:38:40.749 [RMI TCP Connection(5)-192.168.1.105] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
- 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
- 2026-05-08 15:07:27.388 [XNIO-1 task-5] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/api/sfgl/yyqfmx/getpagelist/getPageList】请求开始==================
- 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 = ?)
- 2026-05-08 15:07:27.790 [XNIO-1 task-5] DEBUG c.t.f.s.m.Y.getPageList_mpCount - ==> Parameters: 10753(String)
- 2026-05-08 15:07:28.079 [XNIO-1 task-5] DEBUG c.t.f.s.m.Y.getPageList_mpCount - <== Total: 1
- 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 > ?
- 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)
- 2026-05-08 15:07:29.018 [XNIO-1 task-5] DEBUG c.t.f.s.m.YyQfmxMapper.getPageList - <== Total: 20
- 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=?)
- 2026-05-08 15:07:29.022 [XNIO-1 task-5] DEBUG c.t.f.s.m.YyQfmxMapper.getPageCount - ==> Parameters: 10753(String)
- 2026-05-08 15:07:34.475 [XNIO-1 task-5] DEBUG c.t.f.s.m.YyQfmxMapper.getPageCount - <== Total: 1
- 2026-05-08 15:07:34.489 [XNIO-1 task-5] INFO c.t.feesapi.common.LogRecordAspect - =================【getPageList】请求结束==================
- 2026-05-08 15:20:21.287 [XNIO-1 task-6] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/api/sfgl/yyqfmx/getpagelist/getPageList】请求开始==================
- 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 = ?)
- 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)
- 2026-05-08 15:20:21.710 [XNIO-1 task-6] DEBUG c.t.f.s.m.Y.getPageList_mpCount - <== Total: 1
- 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 > ?
- 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)
- 2026-05-08 15:20:22.041 [XNIO-1 task-6] DEBUG c.t.f.s.m.YyQfmxMapper.getPageList - <== Total: 20
- 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=?)
- 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)
- 2026-05-08 15:20:22.161 [XNIO-1 task-6] DEBUG c.t.f.s.m.YyQfmxMapper.getPageCount - <== Total: 1
- 2026-05-08 15:20:22.162 [XNIO-1 task-6] INFO c.t.feesapi.common.LogRecordAspect - =================【getPageList】请求结束==================
- 2026-05-08 15:23:50.370 [XNIO-1 task-7] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/api/sfgl/yyqfmx/getpagelist/getPageList】请求开始==================
- 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
- 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)
- 2026-05-08 15:23:50.578 [XNIO-1 task-7] DEBUG c.t.f.s.m.Y.getPageListByKhbm_mpCount - <== Total: 1
- 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 > ?
- 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)
- 2026-05-08 15:23:50.860 [XNIO-1 task-7] INFO c.t.feesapi.common.LogRecordAspect - =================【getPageList】请求结束==================
- 2026-05-08 15:23:50.893 [XNIO-1 task-7] ERROR c.t.f.c.e.FeesErrorResponseHandler - **未知错误**
- org.springframework.jdbc.BadSqlGrammarException:
- ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: ORA-00979: 不是 GROUP BY 表达式
- ### 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]
- ### The error may involve defaultParameterMap
- ### The error occurred while setting parameters
- ### 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 > ?
- ### Cause: java.sql.SQLSyntaxErrorException: ORA-00979: 不是 GROUP BY 表达式
- ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: ORA-00979: 不是 GROUP BY 表达式
- at org.springframework.jdbc.support.SQLExceptionSubclassTranslator.doTranslate(SQLExceptionSubclassTranslator.java:93)
- at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:72)
- at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:81)
- at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:91)
- at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:441)
- at com.sun.proxy.$Proxy172.selectList(Unknown Source)
- at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224)
- at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForIPage(MybatisMapperMethod.java:121)
- at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:85)
- at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148)
- at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)
- at com.sun.proxy.$Proxy203.getPageListByKhbm(Unknown Source)
- at com.tofly.feesapi.sfgl.service.impl.YyQfmxServiceImpl.getPageList(YyQfmxServiceImpl.java:779)
- at com.tofly.feesapi.sfgl.service.impl.YyQfmxServiceImpl$$FastClassBySpringCGLIB$$b2860d92.invoke(<generated>)
- at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
- at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:687)
- at com.tofly.feesapi.sfgl.service.impl.YyQfmxServiceImpl$$EnhancerBySpringCGLIB$$bdac3f52.getPageList(<generated>)
- at com.tofly.feesapi.sfgl.controller.YyQfmxController.getPageList(YyQfmxController.java:251)
- at com.tofly.feesapi.sfgl.controller.YyQfmxController$$FastClassBySpringCGLIB$$3fe5c8dc.invoke(<generated>)
- at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218)
- at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:771)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
- at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:749)
- at org.springframework.aop.aspectj.AspectJAfterAdvice.invoke(AspectJAfterAdvice.java:47)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
- at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:749)
- at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:56)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
- at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:749)
- at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:95)
- at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
- at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:749)
- at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:691)
- at com.tofly.feesapi.sfgl.controller.YyQfmxController$$EnhancerBySpringCGLIB$$45f0fde4.getPageList(<generated>)
- at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
- at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.lang.reflect.Method.invoke(Method.java:498)
- at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190)
- at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138)
- at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:105)
- at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:878)
- at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:792)
- at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)
- at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1040)
- at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943)
- at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006)
- at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898)
- at javax.servlet.http.HttpServlet.service(HttpServlet.java:497)
- at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883)
- at javax.servlet.http.HttpServlet.service(HttpServlet.java:584)
- at io.undertow.servlet.handlers.ServletHandler.handleRequest(ServletHandler.java:74)
- at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:129)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:320)
- at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:126)
- at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:90)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
- at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:118)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
- at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
- at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
- at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:158)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
- at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
- at org.springframework.security.oauth2.provider.authentication.OAuth2AuthenticationProcessingFilter.doFilter(OAuth2AuthenticationProcessingFilter.java:176)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
- at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
- at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:92)
- at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:77)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
- at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
- at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
- at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:334)
- at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:215)
- at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:178)
- at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:358)
- at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:271)
- at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
- at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
- at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
- at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
- at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
- at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
- at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
- at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
- at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:109)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
- at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
- at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
- at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
- at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119)
- at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:61)
- at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)
- at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:84)
- at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:62)
- at io.undertow.servlet.handlers.ServletChain$1.handleRequest(ServletChain.java:68)
- at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36)
- at io.undertow.servlet.handlers.RedirectDirHandler.handleRequest(RedirectDirHandler.java:68)
- at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:132)
- at io.undertow.servlet.handlers.security.ServletAuthenticationCallHandler.handleRequest(ServletAuthenticationCallHandler.java:57)
- at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
- at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:46)
- at io.undertow.servlet.handlers.security.ServletConfidentialityConstraintHandler.handleRequest(ServletConfidentialityConstraintHandler.java:64)
- at io.undertow.security.handlers.AuthenticationMechanismsHandler.handleRequest(AuthenticationMechanismsHandler.java:60)
- at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:77)
- at io.undertow.security.handlers.AbstractSecurityContextAssociationHandler.handleRequest(AbstractSecurityContextAssociationHandler.java:43)
- at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
- at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
- at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:269)
- at io.undertow.servlet.handlers.ServletInitialHandler.access$100(ServletInitialHandler.java:78)
- at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:133)
- at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:130)
- at io.undertow.servlet.core.ServletRequestContextThreadSetupAction$1.call(ServletRequestContextThreadSetupAction.java:48)
- at io.undertow.servlet.core.ContextClassLoaderSetupAction$1.call(ContextClassLoaderSetupAction.java:43)
- at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:249)
- at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:78)
- at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:99)
- at io.undertow.server.Connectors.executeRootHandler(Connectors.java:376)
- at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:830)
- at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
- at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
- at java.lang.Thread.run(Thread.java:748)
- Caused by: java.sql.SQLSyntaxErrorException: ORA-00979: 不是 GROUP BY 表达式
- at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:629)
- at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:563)
- at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:1150)
- at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:770)
- at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:298)
- at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:497)
- at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:151)
- at oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:936)
- at oracle.jdbc.driver.OracleStatement.prepareDefineBufferAndExecute(OracleStatement.java:1171)
- at oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1100)
- at oracle.jdbc.driver.OracleStatement.executeSQLSelect(OracleStatement.java:1425)
- at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1308)
- at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3745)
- at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3940)
- at oracle.jdbc.driver.OraclePreparedStatementWrapper.execute(OraclePreparedStatementWrapper.java:1009)
- at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3462)
- at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434)
- at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3460)
- at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:158)
- at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483)
- at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
- at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.lang.reflect.Method.invoke(Method.java:498)
- at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
- at com.sun.proxy.$Proxy476.execute(Unknown Source)
- at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64)
- at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
- at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
- at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.lang.reflect.Method.invoke(Method.java:498)
- at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:64)
- at com.sun.proxy.$Proxy474.query(Unknown Source)
- at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
- at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:325)
- at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
- at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
- at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81)
- at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:62)
- at com.sun.proxy.$Proxy473.query(Unknown Source)
- at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:151)
- at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145)
- at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140)
- at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
- at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.lang.reflect.Method.invoke(Method.java:498)
- at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:427)
- ... 126 common frames omitted
- Caused by: oracle.jdbc.OracleDatabaseException: ORA-00979: 不是 GROUP BY 表达式
- at oracle.jdbc.driver.T4CTTIoer11.processError(T4CTTIoer11.java:636)
- ... 174 common frames omitted
- 2026-05-08 15:43:28.774 [SpringContextShutdownHook] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'taskScheduler'
- 2026-05-08 15:43:28.901 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registering from Nacos Server now...
- 2026-05-08 15:43:28.965 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registration finished.
- 2026-05-08 15:43:28.986 [SpringContextShutdownHook] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'taskScheduler'
- 2026-05-08 15:44:19.634 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.0.20.Final
- 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
- 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]
- 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]
- 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'}]
- 2026-05-08 15:44:21.708 [main] INFO com.tofly.feesapi.FeesApiApplication - The following profiles are active: bd
- 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.
- 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.
- 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!
- 2026-05-08 15:44:24.162 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
- 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.
- 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.
- 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.
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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.
- 2026-05-08 15:44:25.147 [main] INFO o.s.cloud.context.scope.GenericScope - BeanFactory id=6ba9fcc8-98cb-35e6-8547-52fc325bd065
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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
- 2026-05-08 15:44:26.064 [main] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
- 2026-05-08 15:44:26.064 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 4338 ms
- 2026-05-08 15:44:32.923 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1,master} inited
- 2026-05-08 15:44:33.618 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-2,udb} inited
- 2026-05-08 15:44:34.391 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-3,flowDB} inited
- 2026-05-08 15:44:34.392 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [udb] success
- 2026-05-08 15:44:34.392 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [flowDB] success
- 2026-05-08 15:44:34.392 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
- 2026-05-08 15:44:34.392 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [3] datasource,primary datasource named [master]
- 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]
- 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]
- 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".
- 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.
- 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".
- 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.
- 2026-05-08 15:44:41.862 [main] INFO org.redisson.Version - Redisson 3.23.2
- 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
- 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
- 2026-05-08 15:44:58.833 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
- 2026-05-08 15:45:10.950 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 19 endpoint(s) beneath base path '/actuator'
- 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)]
- 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]
- 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]
- 2026-05-08 15:45:17.766 [main] INFO o.s.s.c.ThreadPoolTaskScheduler - Initializing ExecutorService 'taskScheduler'
- 2026-05-08 15:45:21.706 [main] INFO o.s.b.a.s.s.UserDetailsServiceAutoConfiguration -
- Using generated security password: 58d7cbf4-1fe5-4cbd-be29-602d782777c6
- 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]
- 2026-05-08 15:45:24.639 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
- 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.
- 2026-05-08 15:45:25.152 [main] INFO s.d.s.w.p.DocumentationPluginsBootstrapper - Documentation plugins bootstrapped
- 2026-05-08 15:45:25.159 [main] INFO s.d.s.w.p.DocumentationPluginsBootstrapper - Found 1 custom documentation plugin(s)
- 2026-05-08 15:45:25.434 [main] INFO s.d.s.w.s.ApiListingReferenceScanner - Scanning for api listing references
- 2026-05-08 15:45:26.188 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_1
- 2026-05-08 15:45:26.196 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_1
- 2026-05-08 15:45:26.198 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_1
- 2026-05-08 15:45:26.200 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_1
- 2026-05-08 15:45:26.210 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_1
- 2026-05-08 15:45:26.212 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_1
- 2026-05-08 15:45:26.249 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: addCustomerUsingPOST_1
- 2026-05-08 15:45:26.251 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: deleteCustomerUsingPOST_1
- 2026-05-08 15:45:26.253 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getBindCustomerUsingGET_1
- 2026-05-08 15:45:26.255 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: selectCustomerUsingGET_1
- 2026-05-08 15:45:26.258 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getBindCustomerAndQfUsingGET_1
- 2026-05-08 15:45:26.259 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerBasicInFoUsingGET_1
- 2026-05-08 15:45:26.261 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerChargeInFoUsingGET_1
- 2026-05-08 15:45:26.263 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerInFoUsingGET_1
- 2026-05-08 15:45:26.265 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerQfInFoUsingGET_1
- 2026-05-08 15:45:26.266 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerReadMeterInFoUsingGET_1
- 2026-05-08 15:45:26.286 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_2
- 2026-05-08 15:45:26.335 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_2
- 2026-05-08 15:45:26.340 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_2
- 2026-05-08 15:45:26.341 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_2
- 2026-05-08 15:45:26.351 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_2
- 2026-05-08 15:45:26.353 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_2
- 2026-05-08 15:45:26.386 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_3
- 2026-05-08 15:45:26.389 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_3
- 2026-05-08 15:45:26.392 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_3
- 2026-05-08 15:45:26.397 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_3
- 2026-05-08 15:45:26.399 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_3
- 2026-05-08 15:45:26.415 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_3
- 2026-05-08 15:45:26.429 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_4
- 2026-05-08 15:45:26.430 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_4
- 2026-05-08 15:45:26.432 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_4
- 2026-05-08 15:45:26.436 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_4
- 2026-05-08 15:45:26.438 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_4
- 2026-05-08 15:45:26.441 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_5
- 2026-05-08 15:45:26.443 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_5
- 2026-05-08 15:45:26.445 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_5
- 2026-05-08 15:45:26.452 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_5
- 2026-05-08 15:45:26.455 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_5
- 2026-05-08 15:45:26.468 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_4
- 2026-05-08 15:45:26.477 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_6
- 2026-05-08 15:45:26.492 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_5
- 2026-05-08 15:45:26.494 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_6
- 2026-05-08 15:45:26.496 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_6
- 2026-05-08 15:45:26.502 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_6
- 2026-05-08 15:45:26.504 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_6
- 2026-05-08 15:45:26.509 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_1
- 2026-05-08 15:45:26.521 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_7
- 2026-05-08 15:45:26.522 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_7
- 2026-05-08 15:45:26.524 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_7
- 2026-05-08 15:45:26.530 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_7
- 2026-05-08 15:45:26.532 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_7
- 2026-05-08 15:45:26.539 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_8
- 2026-05-08 15:45:26.540 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getFffsListUsingGET_1
- 2026-05-08 15:45:26.542 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_8
- 2026-05-08 15:45:26.544 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_9
- 2026-05-08 15:45:26.549 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_8
- 2026-05-08 15:45:26.551 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_8
- 2026-05-08 15:45:26.561 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_2
- 2026-05-08 15:45:26.569 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_9
- 2026-05-08 15:45:26.571 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_10
- 2026-05-08 15:45:26.574 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_11
- 2026-05-08 15:45:26.578 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_9
- 2026-05-08 15:45:26.580 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_9
- 2026-05-08 15:45:26.586 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_10
- 2026-05-08 15:45:26.589 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_12
- 2026-05-08 15:45:26.590 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_13
- 2026-05-08 15:45:26.595 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_10
- 2026-05-08 15:45:26.598 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_10
- 2026-05-08 15:45:26.607 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_11
- 2026-05-08 15:45:26.610 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_14
- 2026-05-08 15:45:26.612 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_15
- 2026-05-08 15:45:26.619 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_11
- 2026-05-08 15:45:26.621 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_11
- 2026-05-08 15:45:26.630 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_12
- 2026-05-08 15:45:26.632 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_16
- 2026-05-08 15:45:26.635 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_8
- 2026-05-08 15:45:26.639 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_12
- 2026-05-08 15:45:26.641 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_12
- 2026-05-08 15:45:26.652 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_13
- 2026-05-08 15:45:26.655 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_17
- 2026-05-08 15:45:26.657 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_9
- 2026-05-08 15:45:26.661 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_13
- 2026-05-08 15:45:26.662 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_13
- 2026-05-08 15:45:26.668 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_14
- 2026-05-08 15:45:26.671 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_18
- 2026-05-08 15:45:26.674 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_19
- 2026-05-08 15:45:26.681 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_14
- 2026-05-08 15:45:26.683 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_14
- 2026-05-08 15:45:26.694 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_15
- 2026-05-08 15:45:26.715 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_6
- 2026-05-08 15:45:26.752 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_15
- 2026-05-08 15:45:26.762 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_3
- 2026-05-08 15:45:26.772 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_16
- 2026-05-08 15:45:26.773 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_20
- 2026-05-08 15:45:26.775 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_10
- 2026-05-08 15:45:26.778 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_16
- 2026-05-08 15:45:26.779 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_15
- 2026-05-08 15:45:26.787 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_17
- 2026-05-08 15:45:26.801 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_7
- 2026-05-08 15:45:26.803 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_21
- 2026-05-08 15:45:26.805 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_11
- 2026-05-08 15:45:26.810 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_17
- 2026-05-08 15:45:26.812 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_16
- 2026-05-08 15:45:26.845 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_8
- 2026-05-08 15:45:26.848 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveBatchUsingPOST_1
- 2026-05-08 15:45:27.066 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_18
- 2026-05-08 15:45:27.076 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_22
- 2026-05-08 15:45:27.078 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_12
- 2026-05-08 15:45:27.081 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_18
- 2026-05-08 15:45:27.083 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_17
- 2026-05-08 15:45:27.086 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_19
- 2026-05-08 15:45:27.096 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_23
- 2026-05-08 15:45:27.097 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_13
- 2026-05-08 15:45:27.102 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_19
- 2026-05-08 15:45:27.105 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_18
- 2026-05-08 15:45:27.108 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_20
- 2026-05-08 15:45:27.111 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_24
- 2026-05-08 15:45:27.116 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_20
- 2026-05-08 15:45:27.118 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_19
- 2026-05-08 15:45:27.131 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_21
- 2026-05-08 15:45:27.135 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_25
- 2026-05-08 15:45:27.136 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_14
- 2026-05-08 15:45:27.141 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_21
- 2026-05-08 15:45:27.182 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: Xh_WordToPdfUsingPOST_1
- 2026-05-08 15:45:27.189 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_22
- 2026-05-08 15:45:27.198 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_26
- 2026-05-08 15:45:27.199 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_15
- 2026-05-08 15:45:27.207 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_22
- 2026-05-08 15:45:27.210 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_27
- 2026-05-08 15:45:27.211 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_16
- 2026-05-08 15:45:27.218 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_23
- 2026-05-08 15:45:27.221 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_20
- 2026-05-08 15:45:27.253 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_23
- 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
- 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
- 2026-05-08 15:45:27.454 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportYsqdUsingGET_1
- 2026-05-08 15:45:27.556 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_24
- 2026-05-08 15:45:27.559 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_28
- 2026-05-08 15:45:27.561 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_17
- 2026-05-08 15:45:27.598 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_25
- 2026-05-08 15:45:27.600 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_29
- 2026-05-08 15:45:27.602 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_18
- 2026-05-08 15:45:27.605 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_24
- 2026-05-08 15:45:27.607 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_21
- 2026-05-08 15:45:27.626 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_26
- 2026-05-08 15:45:27.641 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_30
- 2026-05-08 15:45:27.643 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_19
- 2026-05-08 15:45:27.650 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_25
- 2026-05-08 15:45:27.652 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_22
- 2026-05-08 15:45:27.655 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_27
- 2026-05-08 15:45:27.664 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_31
- 2026-05-08 15:45:27.665 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_20
- 2026-05-08 15:45:27.669 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_26
- 2026-05-08 15:45:27.671 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_23
- 2026-05-08 15:45:27.691 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_28
- 2026-05-08 15:45:27.701 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_32
- 2026-05-08 15:45:27.703 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_21
- 2026-05-08 15:45:27.710 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_27
- 2026-05-08 15:45:27.714 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_24
- 2026-05-08 15:45:27.730 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxBtsqPageUsingGET_1
- 2026-05-08 15:45:27.734 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_29
- 2026-05-08 15:45:27.743 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_33
- 2026-05-08 15:45:27.745 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_22
- 2026-05-08 15:45:27.752 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_28
- 2026-05-08 15:45:27.754 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_25
- 2026-05-08 15:45:27.759 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxBzsqPageUsingGET_1
- 2026-05-08 15:45:27.772 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_30
- 2026-05-08 15:45:27.780 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_34
- 2026-05-08 15:45:27.782 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_23
- 2026-05-08 15:45:27.789 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_29
- 2026-05-08 15:45:27.791 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_26
- 2026-05-08 15:45:27.803 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxDbsqPageUsingGET_1
- 2026-05-08 15:45:27.806 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPOST_1
- 2026-05-08 15:45:27.811 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_31
- 2026-05-08 15:45:27.820 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_35
- 2026-05-08 15:45:27.822 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_24
- 2026-05-08 15:45:27.825 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_30
- 2026-05-08 15:45:27.827 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_27
- 2026-05-08 15:45:27.830 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_32
- 2026-05-08 15:45:27.835 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_36
- 2026-05-08 15:45:27.837 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_25
- 2026-05-08 15:45:27.844 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_31
- 2026-05-08 15:45:27.847 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_28
- 2026-05-08 15:45:27.851 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_33
- 2026-05-08 15:45:27.853 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_37
- 2026-05-08 15:45:27.856 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_26
- 2026-05-08 15:45:27.865 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_32
- 2026-05-08 15:45:27.867 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_29
- 2026-05-08 15:45:27.886 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_34
- 2026-05-08 15:45:27.891 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_38
- 2026-05-08 15:45:27.894 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_39
- 2026-05-08 15:45:27.899 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_33
- 2026-05-08 15:45:27.901 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_30
- 2026-05-08 15:45:27.904 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_35
- 2026-05-08 15:45:27.915 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_40
- 2026-05-08 15:45:27.917 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_27
- 2026-05-08 15:45:27.922 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_34
- 2026-05-08 15:45:27.925 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_31
- 2026-05-08 15:45:27.937 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxHfsqPageUsingGET_1
- 2026-05-08 15:45:27.942 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_36
- 2026-05-08 15:45:27.952 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_41
- 2026-05-08 15:45:27.954 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_28
- 2026-05-08 15:45:27.962 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_35
- 2026-05-08 15:45:27.966 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_32
- 2026-05-08 15:45:27.981 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxLwsqPageUsingGET_1
- 2026-05-08 15:45:27.986 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_37
- 2026-05-08 15:45:27.995 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_42
- 2026-05-08 15:45:27.997 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_29
- 2026-05-08 15:45:28.003 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_36
- 2026-05-08 15:45:28.006 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_33
- 2026-05-08 15:45:28.019 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxLxdhsqPageUsingGET_1
- 2026-05-08 15:45:28.023 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_38
- 2026-05-08 15:45:28.036 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_43
- 2026-05-08 15:45:28.038 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_30
- 2026-05-08 15:45:28.047 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_37
- 2026-05-08 15:45:28.051 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_34
- 2026-05-08 15:45:28.071 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_39
- 2026-05-08 15:45:28.083 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_44
- 2026-05-08 15:45:28.087 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_31
- 2026-05-08 15:45:28.095 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_38
- 2026-05-08 15:45:28.099 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_35
- 2026-05-08 15:45:28.114 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxDbsqPageUsingGET_2
- 2026-05-08 15:45:28.130 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_1
- 2026-05-08 15:45:28.135 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_40
- 2026-05-08 15:45:28.144 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_45
- 2026-05-08 15:45:28.147 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_32
- 2026-05-08 15:45:28.157 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_39
- 2026-05-08 15:45:28.178 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_36
- 2026-05-08 15:45:28.182 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_41
- 2026-05-08 15:45:28.188 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_46
- 2026-05-08 15:45:28.190 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_33
- 2026-05-08 15:45:28.197 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_40
- 2026-05-08 15:45:28.200 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_37
- 2026-05-08 15:45:28.204 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_42
- 2026-05-08 15:45:28.209 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_47
- 2026-05-08 15:45:28.211 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_34
- 2026-05-08 15:45:28.217 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_41
- 2026-05-08 15:45:28.220 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_38
- 2026-05-08 15:45:28.223 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_43
- 2026-05-08 15:45:28.228 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_48
- 2026-05-08 15:45:28.230 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_49
- 2026-05-08 15:45:28.235 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_42
- 2026-05-08 15:45:28.237 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_39
- 2026-05-08 15:45:28.240 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_44
- 2026-05-08 15:45:28.246 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_50
- 2026-05-08 15:45:28.248 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_51
- 2026-05-08 15:45:28.253 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_43
- 2026-05-08 15:45:28.256 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_40
- 2026-05-08 15:45:28.259 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_45
- 2026-05-08 15:45:28.270 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_52
- 2026-05-08 15:45:28.272 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_35
- 2026-05-08 15:45:28.277 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_44
- 2026-05-08 15:45:28.280 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_41
- 2026-05-08 15:45:28.293 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxWzjbsqPageUsingGET_1
- 2026-05-08 15:45:28.298 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_46
- 2026-05-08 15:45:28.309 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_53
- 2026-05-08 15:45:28.312 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_36
- 2026-05-08 15:45:28.320 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_45
- 2026-05-08 15:45:28.323 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_42
- 2026-05-08 15:45:28.338 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxXbsqPageUsingGET_1
- 2026-05-08 15:45:28.343 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_47
- 2026-05-08 15:45:28.353 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_54
- 2026-05-08 15:45:28.355 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_37
- 2026-05-08 15:45:28.363 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_46
- 2026-05-08 15:45:28.366 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_43
- 2026-05-08 15:45:28.377 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxXhsqPageUsingGET_1
- 2026-05-08 15:45:28.379 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPOST_2
- 2026-05-08 15:45:28.382 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_48
- 2026-05-08 15:45:28.388 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_55
- 2026-05-08 15:45:28.390 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_38
- 2026-05-08 15:45:28.395 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_47
- 2026-05-08 15:45:28.398 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_44
- 2026-05-08 15:45:28.401 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_49
- 2026-05-08 15:45:28.409 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_56
- 2026-05-08 15:45:28.411 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_39
- 2026-05-08 15:45:28.414 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_48
- 2026-05-08 15:45:28.416 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_45
- 2026-05-08 15:45:28.429 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_9
- 2026-05-08 15:45:28.431 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_57
- 2026-05-08 15:45:28.433 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_40
- 2026-05-08 15:45:28.439 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_49
- 2026-05-08 15:45:28.442 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_58
- 2026-05-08 15:45:28.444 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_41
- 2026-05-08 15:45:28.449 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_50
- 2026-05-08 15:45:28.461 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_10
- 2026-05-08 15:45:28.465 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_50
- 2026-05-08 15:45:28.475 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_59
- 2026-05-08 15:45:28.478 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_42
- 2026-05-08 15:45:28.486 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_51
- 2026-05-08 15:45:28.495 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_46
- 2026-05-08 15:45:28.498 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_2
- 2026-05-08 15:45:28.536 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_52
- 2026-05-08 15:45:28.553 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_51
- 2026-05-08 15:45:28.570 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_11
- 2026-05-08 15:45:28.590 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_1
- 2026-05-08 15:45:28.608 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_52
- 2026-05-08 15:45:28.610 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_43
- 2026-05-08 15:45:28.644 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_53
- 2026-05-08 15:45:28.653 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_60
- 2026-05-08 15:45:28.655 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_44
- 2026-05-08 15:45:28.659 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_53
- 2026-05-08 15:45:28.662 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_47
- 2026-05-08 15:45:28.665 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_54
- 2026-05-08 15:45:28.672 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_61
- 2026-05-08 15:45:28.674 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_45
- 2026-05-08 15:45:28.681 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_54
- 2026-05-08 15:45:28.694 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_48
- 2026-05-08 15:45:28.697 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_3
- 2026-05-08 15:45:28.701 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_62
- 2026-05-08 15:45:28.703 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_46
- 2026-05-08 15:45:28.708 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_55
- 2026-05-08 15:45:28.717 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_12
- 2026-05-08 15:45:28.729 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_63
- 2026-05-08 15:45:28.733 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_47
- 2026-05-08 15:45:28.740 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_56
- 2026-05-08 15:45:28.751 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_13
- 2026-05-08 15:45:28.756 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_55
- 2026-05-08 15:45:28.762 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_64
- 2026-05-08 15:45:28.764 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_48
- 2026-05-08 15:45:28.775 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_57
- 2026-05-08 15:45:28.784 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_49
- 2026-05-08 15:45:28.786 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_4
- 2026-05-08 15:45:28.817 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getDaCustomerPageUsingGET_1
- 2026-05-08 15:45:28.868 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_1
- 2026-05-08 15:45:28.889 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_14
- 2026-05-08 15:45:28.929 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_56
- 2026-05-08 15:45:28.998 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: delByIdUsingDELETE_1
- 2026-05-08 15:45:29.000 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: delByIdsUsingDELETE_1
- 2026-05-08 15:45:29.002 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: disableUsingPUT_1
- 2026-05-08 15:45:29.004 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: enableUsingPUT_1
- 2026-05-08 15:45:29.009 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: importExcelUsingPOST_1
- 2026-05-08 15:45:29.013 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_2
- 2026-05-08 15:45:29.022 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_3
- 2026-05-08 15:45:29.051 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_5
- 2026-05-08 15:45:29.054 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_6
- 2026-05-08 15:45:29.057 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_7
- 2026-05-08 15:45:29.062 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_57
- 2026-05-08 15:45:29.077 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_49
- 2026-05-08 15:45:29.112 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: addUsingPOST_1
- 2026-05-08 15:45:29.124 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_58
- 2026-05-08 15:45:29.136 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_65
- 2026-05-08 15:45:29.139 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_50
- 2026-05-08 15:45:29.143 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_58
- 2026-05-08 15:45:29.150 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: save_gdUsingPOST_1
- 2026-05-08 15:45:29.166 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_50
- 2026-05-08 15:45:29.190 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_59
- 2026-05-08 15:45:29.201 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_66
- 2026-05-08 15:45:29.204 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_51
- 2026-05-08 15:45:29.211 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_59
- 2026-05-08 15:45:29.214 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_51
- 2026-05-08 15:45:29.218 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_60
- 2026-05-08 15:45:29.224 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_67
- 2026-05-08 15:45:29.226 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_52
- 2026-05-08 15:45:29.233 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_60
- 2026-05-08 15:45:29.236 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: save_gdUsingPOST_2
- 2026-05-08 15:45:29.243 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_52
- 2026-05-08 15:45:29.245 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_8
- 2026-05-08 15:45:29.260 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_9
- 2026-05-08 15:45:29.281 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_61
- 2026-05-08 15:45:29.368 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_2
- 2026-05-08 15:45:29.376 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_62
- 2026-05-08 15:45:29.384 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_15
- 2026-05-08 15:45:29.447 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_4
- 2026-05-08 15:45:29.459 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_10
- 2026-05-08 15:45:29.473 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_63
- 2026-05-08 15:45:29.486 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_68
- 2026-05-08 15:45:29.491 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_53
- 2026-05-08 15:45:29.509 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_61
- 2026-05-08 15:45:29.513 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_53
- 2026-05-08 15:45:29.620 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_54
- 2026-05-08 15:45:29.786 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_16
- 2026-05-08 15:45:29.902 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getListUsingGET_1
- 2026-05-08 15:45:30.000 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_64
- 2026-05-08 15:45:30.096 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: statUsingGET_1
- 2026-05-08 15:45:30.177 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_11
- 2026-05-08 15:45:30.189 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_65
- 2026-05-08 15:45:30.210 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_69
- 2026-05-08 15:45:30.213 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_54
- 2026-05-08 15:45:30.279 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_62
- 2026-05-08 15:45:30.284 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_55
- 2026-05-08 15:45:30.289 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_66
- 2026-05-08 15:45:30.299 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_63
- 2026-05-08 15:45:30.304 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_56
- 2026-05-08 15:45:30.324 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_12
- 2026-05-08 15:45:30.391 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_64
- 2026-05-08 15:45:30.435 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_17
- 2026-05-08 15:45:30.477 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: monthlyStatUsingGET_1
- 2026-05-08 15:45:30.484 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: monthlyStatSummaryUsingGET_1
- 2026-05-08 15:45:30.498 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getListUsingGET_2
- 2026-05-08 15:45:30.641 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_67
- 2026-05-08 15:45:30.711 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageListUsingGET_1
- 2026-05-08 15:45:30.717 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: statUsingGET_2
- 2026-05-08 15:45:30.808 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_13
- 2026-05-08 15:45:30.813 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_14
- 2026-05-08 15:45:30.886 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_65
- 2026-05-08 15:45:30.907 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_68
- 2026-05-08 15:45:31.009 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getYyWyjtzPageUsingGET_1
- 2026-05-08 15:45:31.012 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_15
- 2026-05-08 15:45:31.019 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_5
- 2026-05-08 15:45:31.049 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_18
- 2026-05-08 15:45:31.052 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_16
- 2026-05-08 15:45:31.077 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_19
- 2026-05-08 15:45:31.080 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_17
- 2026-05-08 15:45:31.182 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_20
- 2026-05-08 15:45:31.186 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_18
- 2026-05-08 15:45:31.194 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_69
- 2026-05-08 15:45:31.210 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_70
- 2026-05-08 15:45:31.215 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_55
- 2026-05-08 15:45:31.230 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_66
- 2026-05-08 15:45:31.237 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_57
- 2026-05-08 15:45:31.245 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_70
- 2026-05-08 15:45:31.249 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_71
- 2026-05-08 15:45:31.254 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_56
- 2026-05-08 15:45:31.273 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_67
- 2026-05-08 15:45:31.281 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_58
- 2026-05-08 15:45:31.290 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_21
- 2026-05-08 15:45:31.296 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_3
- 2026-05-08 15:45:31.311 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_68
- 2026-05-08 15:45:31.334 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_22
- 2026-05-08 15:45:31.407 [main] INFO io.undertow - starting server: Undertow - 2.0.31.Final
- 2026-05-08 15:45:31.424 [main] INFO org.xnio - XNIO version 3.3.8.Final
- 2026-05-08 15:45:31.440 [main] INFO org.xnio.nio - XNIO NIO Implementation Version 3.3.8.Final
- 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 ''
- 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
- 2026-05-08 15:45:33.319 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
- 2026-05-08 15:45:33.324 [main] INFO com.tofly.feesapi.FeesApiApplication - Started FeesApiApplication in 75.638 seconds (JVM running for 77.826)
- 2026-05-08 15:45:34.409 [RMI TCP Connection(10)-192.168.1.105] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
- 2026-05-08 15:45:34.409 [RMI TCP Connection(10)-192.168.1.105] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
- 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
- 2026-05-08 15:46:40.226 [XNIO-1 task-1] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/api/sfgl/yyqfmx/getpagelist/getPageList】请求开始==================
- 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
- 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)
- 2026-05-08 15:46:40.689 [XNIO-1 task-1] DEBUG c.t.f.s.m.Y.getPageListByKhbm_mpCount - <== Total: 1
- 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 > ?
- 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)
- 2026-05-08 15:46:40.943 [XNIO-1 task-1] DEBUG c.t.f.s.m.Y.getPageListByKhbm - <== Total: 20
- 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=?)
- 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)
- 2026-05-08 15:46:41.059 [XNIO-1 task-1] DEBUG c.t.f.s.m.YyQfmxMapper.getPageCount - <== Total: 1
- 2026-05-08 15:46:41.066 [XNIO-1 task-1] INFO c.t.feesapi.common.LogRecordAspect - =================【getPageList】请求结束==================
- 2026-05-08 15:50:25.814 [XNIO-1 task-2] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/api/sfgl/yyqfmx/getpagelist/getPageList】请求开始==================
- 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
- 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)
- 2026-05-08 15:50:25.977 [XNIO-1 task-2] DEBUG c.t.f.s.m.Y.getPageListByKhbm_mpCount - <== Total: 1
- 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 > ?
- 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)
- 2026-05-08 15:50:26.168 [XNIO-1 task-2] DEBUG c.t.f.s.m.Y.getPageListByKhbm - <== Total: 20
- 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=?)
- 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)
- 2026-05-08 15:50:26.267 [XNIO-1 task-2] DEBUG c.t.f.s.m.YyQfmxMapper.getPageCount - <== Total: 1
- 2026-05-08 15:50:26.268 [XNIO-1 task-2] INFO c.t.feesapi.common.LogRecordAspect - =================【getPageList】请求结束==================
- 2026-05-08 15:51:08.336 [SpringContextShutdownHook] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'taskScheduler'
- 2026-05-08 15:51:08.358 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registering from Nacos Server now...
- 2026-05-08 15:51:08.362 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registration finished.
- 2026-05-08 15:51:08.363 [SpringContextShutdownHook] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'taskScheduler'
- 2026-05-08 15:51:08.445 [SpringContextShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
- 2026-05-08 15:51:08.448 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-2} closing ...
- 2026-05-08 15:51:08.459 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-2} closed
- 2026-05-08 15:51:08.459 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-3} closing ...
- 2026-05-08 15:51:08.504 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-3} closed
- 2026-05-08 15:51:08.505 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closing ...
- 2026-05-08 15:51:08.564 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closed
- 2026-05-08 15:51:08.565 [SpringContextShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
- 2026-05-08 15:51:08.565 [SpringContextShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
- 2026-05-08 15:51:08.565 [SpringContextShutdownHook] INFO io.undertow - stopping server: Undertow - 2.0.31.Final
- 2026-05-08 18:47:40.955 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.0.20.Final
- 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
- 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]
- 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]
- 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'}]
- 2026-05-08 18:47:43.259 [main] INFO com.tofly.feesapi.FeesApiApplication - The following profiles are active: bd
- 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.
- 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.
- 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!
- 2026-05-08 18:47:46.790 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
- 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.
- 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.
- 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.
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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!
- 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.
- 2026-05-08 18:47:47.967 [main] INFO o.s.cloud.context.scope.GenericScope - BeanFactory id=6ba9fcc8-98cb-35e6-8547-52fc325bd065
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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
- 2026-05-08 18:47:48.835 [main] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
- 2026-05-08 18:47:48.835 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 5554 ms
- 2026-05-08 18:47:55.775 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1,master} inited
- 2026-05-08 18:47:56.461 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-2,udb} inited
- 2026-05-08 18:47:57.059 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-3,flowDB} inited
- 2026-05-08 18:47:57.059 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [udb] success
- 2026-05-08 18:47:57.059 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [flowDB] success
- 2026-05-08 18:47:57.059 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
- 2026-05-08 18:47:57.059 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [3] datasource,primary datasource named [master]
- 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]
- 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]
- 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".
- 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.
- 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".
- 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.
- 2026-05-08 18:48:08.478 [main] INFO org.redisson.Version - Redisson 3.23.2
- 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
- 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
- 2026-05-08 18:48:22.648 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
- 2026-05-08 18:48:22.969 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 19 endpoint(s) beneath base path '/actuator'
- 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)]
- 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]
- 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]
- 2026-05-08 18:48:24.398 [main] INFO o.s.s.c.ThreadPoolTaskScheduler - Initializing ExecutorService 'taskScheduler'
- 2026-05-08 18:48:24.926 [main] INFO o.s.b.a.s.s.UserDetailsServiceAutoConfiguration -
- Using generated security password: f9e727ff-ea9c-4d30-83e1-434910b4ce9d
- 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]
- 2026-05-08 18:48:27.261 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
- 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.
- 2026-05-08 18:48:27.728 [main] INFO s.d.s.w.p.DocumentationPluginsBootstrapper - Documentation plugins bootstrapped
- 2026-05-08 18:48:27.733 [main] INFO s.d.s.w.p.DocumentationPluginsBootstrapper - Found 1 custom documentation plugin(s)
- 2026-05-08 18:48:28.063 [main] INFO s.d.s.w.s.ApiListingReferenceScanner - Scanning for api listing references
- 2026-05-08 18:48:28.725 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_1
- 2026-05-08 18:48:28.731 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_1
- 2026-05-08 18:48:28.733 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_1
- 2026-05-08 18:48:28.734 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_1
- 2026-05-08 18:48:28.742 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_1
- 2026-05-08 18:48:28.745 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_1
- 2026-05-08 18:48:28.781 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: addCustomerUsingPOST_1
- 2026-05-08 18:48:28.782 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: deleteCustomerUsingPOST_1
- 2026-05-08 18:48:28.784 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getBindCustomerUsingGET_1
- 2026-05-08 18:48:28.786 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: selectCustomerUsingGET_1
- 2026-05-08 18:48:28.789 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getBindCustomerAndQfUsingGET_1
- 2026-05-08 18:48:28.791 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerBasicInFoUsingGET_1
- 2026-05-08 18:48:28.793 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerChargeInFoUsingGET_1
- 2026-05-08 18:48:28.794 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerInFoUsingGET_1
- 2026-05-08 18:48:28.796 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerQfInFoUsingGET_1
- 2026-05-08 18:48:28.797 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerReadMeterInFoUsingGET_1
- 2026-05-08 18:48:28.817 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_2
- 2026-05-08 18:48:28.863 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_2
- 2026-05-08 18:48:28.864 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_2
- 2026-05-08 18:48:28.865 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_2
- 2026-05-08 18:48:28.874 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_2
- 2026-05-08 18:48:28.877 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_2
- 2026-05-08 18:48:28.905 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_3
- 2026-05-08 18:48:28.908 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_3
- 2026-05-08 18:48:28.909 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_3
- 2026-05-08 18:48:28.914 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_3
- 2026-05-08 18:48:28.916 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_3
- 2026-05-08 18:48:28.926 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_3
- 2026-05-08 18:48:28.938 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_4
- 2026-05-08 18:48:28.940 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_4
- 2026-05-08 18:48:28.941 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_4
- 2026-05-08 18:48:28.945 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_4
- 2026-05-08 18:48:28.947 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_4
- 2026-05-08 18:48:28.950 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_5
- 2026-05-08 18:48:28.952 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_5
- 2026-05-08 18:48:28.954 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_5
- 2026-05-08 18:48:28.958 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_5
- 2026-05-08 18:48:28.960 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_5
- 2026-05-08 18:48:28.974 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_4
- 2026-05-08 18:48:28.984 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_6
- 2026-05-08 18:48:28.997 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_5
- 2026-05-08 18:48:28.999 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_6
- 2026-05-08 18:48:29.000 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_6
- 2026-05-08 18:48:29.006 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_6
- 2026-05-08 18:48:29.009 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_6
- 2026-05-08 18:48:29.014 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_1
- 2026-05-08 18:48:29.025 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_7
- 2026-05-08 18:48:29.027 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_7
- 2026-05-08 18:48:29.029 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_7
- 2026-05-08 18:48:29.037 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_7
- 2026-05-08 18:48:29.038 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_7
- 2026-05-08 18:48:29.047 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_8
- 2026-05-08 18:48:29.048 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getFffsListUsingGET_1
- 2026-05-08 18:48:29.050 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_8
- 2026-05-08 18:48:29.052 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_9
- 2026-05-08 18:48:29.059 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_8
- 2026-05-08 18:48:29.060 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_8
- 2026-05-08 18:48:29.071 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_2
- 2026-05-08 18:48:29.079 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_9
- 2026-05-08 18:48:29.081 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_10
- 2026-05-08 18:48:29.083 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_11
- 2026-05-08 18:48:29.087 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_9
- 2026-05-08 18:48:29.089 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_9
- 2026-05-08 18:48:29.095 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_10
- 2026-05-08 18:48:29.097 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_12
- 2026-05-08 18:48:29.099 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_13
- 2026-05-08 18:48:29.105 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_10
- 2026-05-08 18:48:29.106 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_10
- 2026-05-08 18:48:29.113 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_11
- 2026-05-08 18:48:29.116 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_14
- 2026-05-08 18:48:29.117 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_15
- 2026-05-08 18:48:29.123 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_11
- 2026-05-08 18:48:29.125 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_11
- 2026-05-08 18:48:29.135 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_12
- 2026-05-08 18:48:29.136 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_16
- 2026-05-08 18:48:29.138 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_8
- 2026-05-08 18:48:29.142 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_12
- 2026-05-08 18:48:29.143 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_12
- 2026-05-08 18:48:29.152 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_13
- 2026-05-08 18:48:29.154 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_17
- 2026-05-08 18:48:29.156 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_9
- 2026-05-08 18:48:29.160 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_13
- 2026-05-08 18:48:29.162 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_13
- 2026-05-08 18:48:29.168 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_14
- 2026-05-08 18:48:29.171 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_18
- 2026-05-08 18:48:29.173 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_19
- 2026-05-08 18:48:29.181 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_14
- 2026-05-08 18:48:29.182 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_14
- 2026-05-08 18:48:29.198 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_15
- 2026-05-08 18:48:29.220 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_6
- 2026-05-08 18:48:29.261 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_15
- 2026-05-08 18:48:29.272 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_3
- 2026-05-08 18:48:29.280 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_16
- 2026-05-08 18:48:29.282 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_20
- 2026-05-08 18:48:29.283 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_10
- 2026-05-08 18:48:29.286 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_16
- 2026-05-08 18:48:29.287 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_15
- 2026-05-08 18:48:29.297 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_17
- 2026-05-08 18:48:29.307 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_7
- 2026-05-08 18:48:29.309 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_21
- 2026-05-08 18:48:29.310 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_11
- 2026-05-08 18:48:29.314 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_17
- 2026-05-08 18:48:29.315 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_16
- 2026-05-08 18:48:29.338 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_8
- 2026-05-08 18:48:29.340 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveBatchUsingPOST_1
- 2026-05-08 18:48:29.582 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_18
- 2026-05-08 18:48:29.591 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_22
- 2026-05-08 18:48:29.593 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_12
- 2026-05-08 18:48:29.597 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_18
- 2026-05-08 18:48:29.599 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_17
- 2026-05-08 18:48:29.603 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_19
- 2026-05-08 18:48:29.611 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_23
- 2026-05-08 18:48:29.613 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_13
- 2026-05-08 18:48:29.619 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_19
- 2026-05-08 18:48:29.621 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_18
- 2026-05-08 18:48:29.624 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_20
- 2026-05-08 18:48:29.627 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_24
- 2026-05-08 18:48:29.633 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_20
- 2026-05-08 18:48:29.635 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_19
- 2026-05-08 18:48:29.651 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_21
- 2026-05-08 18:48:29.653 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_25
- 2026-05-08 18:48:29.655 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_14
- 2026-05-08 18:48:29.659 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_21
- 2026-05-08 18:48:29.701 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: Xh_WordToPdfUsingPOST_1
- 2026-05-08 18:48:29.707 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_22
- 2026-05-08 18:48:29.716 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_26
- 2026-05-08 18:48:29.717 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_15
- 2026-05-08 18:48:29.725 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_22
- 2026-05-08 18:48:29.728 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_27
- 2026-05-08 18:48:29.730 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_16
- 2026-05-08 18:48:29.734 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_23
- 2026-05-08 18:48:29.736 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_20
- 2026-05-08 18:48:29.768 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_23
- 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
- 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
- 2026-05-08 18:48:29.965 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportYsqdUsingGET_1
- 2026-05-08 18:48:30.073 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_24
- 2026-05-08 18:48:30.077 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_28
- 2026-05-08 18:48:30.079 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_17
- 2026-05-08 18:48:30.126 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_25
- 2026-05-08 18:48:30.127 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_29
- 2026-05-08 18:48:30.128 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_18
- 2026-05-08 18:48:30.132 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_24
- 2026-05-08 18:48:30.134 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_21
- 2026-05-08 18:48:30.152 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_26
- 2026-05-08 18:48:30.162 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_30
- 2026-05-08 18:48:30.163 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_19
- 2026-05-08 18:48:30.167 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_25
- 2026-05-08 18:48:30.170 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_22
- 2026-05-08 18:48:30.172 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_27
- 2026-05-08 18:48:30.180 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_31
- 2026-05-08 18:48:30.182 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_20
- 2026-05-08 18:48:30.186 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_26
- 2026-05-08 18:48:30.188 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_23
- 2026-05-08 18:48:30.210 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_28
- 2026-05-08 18:48:30.221 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_32
- 2026-05-08 18:48:30.223 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_21
- 2026-05-08 18:48:30.231 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_27
- 2026-05-08 18:48:30.233 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_24
- 2026-05-08 18:48:30.251 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxBtsqPageUsingGET_1
- 2026-05-08 18:48:30.255 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_29
- 2026-05-08 18:48:30.267 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_33
- 2026-05-08 18:48:30.269 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_22
- 2026-05-08 18:48:30.276 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_28
- 2026-05-08 18:48:30.278 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_25
- 2026-05-08 18:48:30.285 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxBzsqPageUsingGET_1
- 2026-05-08 18:48:30.298 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_30
- 2026-05-08 18:48:30.307 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_34
- 2026-05-08 18:48:30.309 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_23
- 2026-05-08 18:48:30.315 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_29
- 2026-05-08 18:48:30.317 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_26
- 2026-05-08 18:48:30.331 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxDbsqPageUsingGET_1
- 2026-05-08 18:48:30.334 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPOST_1
- 2026-05-08 18:48:30.339 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_31
- 2026-05-08 18:48:30.346 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_35
- 2026-05-08 18:48:30.348 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_24
- 2026-05-08 18:48:30.351 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_30
- 2026-05-08 18:48:30.353 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_27
- 2026-05-08 18:48:30.356 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_32
- 2026-05-08 18:48:30.361 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_36
- 2026-05-08 18:48:30.363 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_25
- 2026-05-08 18:48:30.373 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_31
- 2026-05-08 18:48:30.375 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_28
- 2026-05-08 18:48:30.380 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_33
- 2026-05-08 18:48:30.381 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_37
- 2026-05-08 18:48:30.384 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_26
- 2026-05-08 18:48:30.393 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_32
- 2026-05-08 18:48:30.396 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_29
- 2026-05-08 18:48:30.422 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_34
- 2026-05-08 18:48:30.429 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_38
- 2026-05-08 18:48:30.432 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_39
- 2026-05-08 18:48:30.438 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_33
- 2026-05-08 18:48:30.442 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_30
- 2026-05-08 18:48:30.448 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_35
- 2026-05-08 18:48:30.460 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_40
- 2026-05-08 18:48:30.464 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_27
- 2026-05-08 18:48:30.473 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_34
- 2026-05-08 18:48:30.477 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_31
- 2026-05-08 18:48:30.495 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxHfsqPageUsingGET_1
- 2026-05-08 18:48:30.501 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_36
- 2026-05-08 18:48:30.512 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_41
- 2026-05-08 18:48:30.514 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_28
- 2026-05-08 18:48:30.521 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_35
- 2026-05-08 18:48:30.524 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_32
- 2026-05-08 18:48:30.542 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxLwsqPageUsingGET_1
- 2026-05-08 18:48:30.547 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_37
- 2026-05-08 18:48:30.558 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_42
- 2026-05-08 18:48:30.561 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_29
- 2026-05-08 18:48:30.570 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_36
- 2026-05-08 18:48:30.573 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_33
- 2026-05-08 18:48:30.590 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxLxdhsqPageUsingGET_1
- 2026-05-08 18:48:30.597 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_38
- 2026-05-08 18:48:30.613 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_43
- 2026-05-08 18:48:30.616 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_30
- 2026-05-08 18:48:30.629 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_37
- 2026-05-08 18:48:30.633 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_34
- 2026-05-08 18:48:30.658 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_39
- 2026-05-08 18:48:30.670 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_44
- 2026-05-08 18:48:30.674 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_31
- 2026-05-08 18:48:30.685 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_38
- 2026-05-08 18:48:30.688 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_35
- 2026-05-08 18:48:30.704 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxDbsqPageUsingGET_2
- 2026-05-08 18:48:30.721 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_1
- 2026-05-08 18:48:30.726 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_40
- 2026-05-08 18:48:30.732 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_45
- 2026-05-08 18:48:30.734 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_32
- 2026-05-08 18:48:30.745 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_39
- 2026-05-08 18:48:30.760 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_36
- 2026-05-08 18:48:30.763 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_41
- 2026-05-08 18:48:30.769 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_46
- 2026-05-08 18:48:30.771 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_33
- 2026-05-08 18:48:30.778 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_40
- 2026-05-08 18:48:30.781 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_37
- 2026-05-08 18:48:30.785 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_42
- 2026-05-08 18:48:30.792 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_47
- 2026-05-08 18:48:30.794 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_34
- 2026-05-08 18:48:30.802 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_41
- 2026-05-08 18:48:30.805 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_38
- 2026-05-08 18:48:30.809 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_43
- 2026-05-08 18:48:30.815 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_48
- 2026-05-08 18:48:30.819 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_49
- 2026-05-08 18:48:30.825 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_42
- 2026-05-08 18:48:30.828 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_39
- 2026-05-08 18:48:30.832 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_44
- 2026-05-08 18:48:30.839 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_50
- 2026-05-08 18:48:30.841 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_51
- 2026-05-08 18:48:30.846 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_43
- 2026-05-08 18:48:30.848 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_40
- 2026-05-08 18:48:30.854 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_45
- 2026-05-08 18:48:30.865 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_52
- 2026-05-08 18:48:30.868 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_35
- 2026-05-08 18:48:30.874 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_44
- 2026-05-08 18:48:30.877 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_41
- 2026-05-08 18:48:30.890 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxWzjbsqPageUsingGET_1
- 2026-05-08 18:48:30.894 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_46
- 2026-05-08 18:48:30.904 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_53
- 2026-05-08 18:48:30.907 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_36
- 2026-05-08 18:48:30.913 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_45
- 2026-05-08 18:48:30.915 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_42
- 2026-05-08 18:48:30.929 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxXbsqPageUsingGET_1
- 2026-05-08 18:48:30.933 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_47
- 2026-05-08 18:48:30.941 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_54
- 2026-05-08 18:48:30.944 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_37
- 2026-05-08 18:48:30.950 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_46
- 2026-05-08 18:48:30.952 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_43
- 2026-05-08 18:48:30.963 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxXhsqPageUsingGET_1
- 2026-05-08 18:48:30.965 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPOST_2
- 2026-05-08 18:48:30.968 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_48
- 2026-05-08 18:48:30.973 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_55
- 2026-05-08 18:48:30.975 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_38
- 2026-05-08 18:48:30.981 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_47
- 2026-05-08 18:48:30.983 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_44
- 2026-05-08 18:48:30.986 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_49
- 2026-05-08 18:48:30.994 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_56
- 2026-05-08 18:48:30.996 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_39
- 2026-05-08 18:48:30.999 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_48
- 2026-05-08 18:48:31.002 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_45
- 2026-05-08 18:48:31.016 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_9
- 2026-05-08 18:48:31.018 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_57
- 2026-05-08 18:48:31.020 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_40
- 2026-05-08 18:48:31.025 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_49
- 2026-05-08 18:48:31.029 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_58
- 2026-05-08 18:48:31.032 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_41
- 2026-05-08 18:48:31.037 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_50
- 2026-05-08 18:48:31.049 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_10
- 2026-05-08 18:48:31.052 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_50
- 2026-05-08 18:48:31.061 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_59
- 2026-05-08 18:48:31.063 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_42
- 2026-05-08 18:48:31.069 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_51
- 2026-05-08 18:48:31.076 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_46
- 2026-05-08 18:48:31.078 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_2
- 2026-05-08 18:48:31.114 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_52
- 2026-05-08 18:48:31.129 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_51
- 2026-05-08 18:48:31.152 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_11
- 2026-05-08 18:48:31.177 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_1
- 2026-05-08 18:48:31.194 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_52
- 2026-05-08 18:48:31.196 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_43
- 2026-05-08 18:48:31.228 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_53
- 2026-05-08 18:48:31.237 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_60
- 2026-05-08 18:48:31.239 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_44
- 2026-05-08 18:48:31.244 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_53
- 2026-05-08 18:48:31.247 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_47
- 2026-05-08 18:48:31.252 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_54
- 2026-05-08 18:48:31.260 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_61
- 2026-05-08 18:48:31.263 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_45
- 2026-05-08 18:48:31.272 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_54
- 2026-05-08 18:48:31.288 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_48
- 2026-05-08 18:48:31.290 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_3
- 2026-05-08 18:48:31.294 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_62
- 2026-05-08 18:48:31.296 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_46
- 2026-05-08 18:48:31.300 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_55
- 2026-05-08 18:48:31.311 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_12
- 2026-05-08 18:48:31.320 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_63
- 2026-05-08 18:48:31.323 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_47
- 2026-05-08 18:48:31.329 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_56
- 2026-05-08 18:48:31.340 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_13
- 2026-05-08 18:48:31.345 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_55
- 2026-05-08 18:48:31.350 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_64
- 2026-05-08 18:48:31.352 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_48
- 2026-05-08 18:48:31.359 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_57
- 2026-05-08 18:48:31.369 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_49
- 2026-05-08 18:48:31.370 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_4
- 2026-05-08 18:48:31.404 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getDaCustomerPageUsingGET_1
- 2026-05-08 18:48:31.456 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_1
- 2026-05-08 18:48:31.478 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_14
- 2026-05-08 18:48:31.521 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_56
- 2026-05-08 18:48:31.589 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: delByIdUsingDELETE_1
- 2026-05-08 18:48:31.592 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: delByIdsUsingDELETE_1
- 2026-05-08 18:48:31.595 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: disableUsingPUT_1
- 2026-05-08 18:48:31.597 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: enableUsingPUT_1
- 2026-05-08 18:48:31.603 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: importExcelUsingPOST_1
- 2026-05-08 18:48:31.608 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_2
- 2026-05-08 18:48:31.617 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_3
- 2026-05-08 18:48:31.644 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_5
- 2026-05-08 18:48:31.648 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_6
- 2026-05-08 18:48:31.652 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_7
- 2026-05-08 18:48:31.659 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_57
- 2026-05-08 18:48:31.680 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_49
- 2026-05-08 18:48:31.738 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: addUsingPOST_1
- 2026-05-08 18:48:31.754 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_58
- 2026-05-08 18:48:31.772 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_65
- 2026-05-08 18:48:31.775 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_50
- 2026-05-08 18:48:31.782 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_58
- 2026-05-08 18:48:31.791 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: save_gdUsingPOST_1
- 2026-05-08 18:48:31.811 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_50
- 2026-05-08 18:48:31.842 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_59
- 2026-05-08 18:48:31.852 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_66
- 2026-05-08 18:48:31.855 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_51
- 2026-05-08 18:48:31.862 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_59
- 2026-05-08 18:48:31.866 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_51
- 2026-05-08 18:48:31.872 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_60
- 2026-05-08 18:48:31.879 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_67
- 2026-05-08 18:48:31.882 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_52
- 2026-05-08 18:48:31.890 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_60
- 2026-05-08 18:48:31.896 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: save_gdUsingPOST_2
- 2026-05-08 18:48:31.906 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_52
- 2026-05-08 18:48:31.909 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_8
- 2026-05-08 18:48:31.931 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_9
- 2026-05-08 18:48:31.962 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_61
- 2026-05-08 18:48:32.074 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_2
- 2026-05-08 18:48:32.083 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_62
- 2026-05-08 18:48:32.092 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_15
- 2026-05-08 18:48:32.171 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_4
- 2026-05-08 18:48:32.188 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_10
- 2026-05-08 18:48:32.206 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_63
- 2026-05-08 18:48:32.220 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_68
- 2026-05-08 18:48:32.223 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_53
- 2026-05-08 18:48:32.238 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_61
- 2026-05-08 18:48:32.242 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_53
- 2026-05-08 18:48:32.331 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_54
- 2026-05-08 18:48:32.524 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_16
- 2026-05-08 18:48:32.664 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getListUsingGET_1
- 2026-05-08 18:48:32.785 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_64
- 2026-05-08 18:48:32.883 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: statUsingGET_1
- 2026-05-08 18:48:32.961 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_11
- 2026-05-08 18:48:32.973 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_65
- 2026-05-08 18:48:32.998 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_69
- 2026-05-08 18:48:33.002 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_54
- 2026-05-08 18:48:33.086 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_62
- 2026-05-08 18:48:33.092 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_55
- 2026-05-08 18:48:33.098 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_66
- 2026-05-08 18:48:33.112 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_63
- 2026-05-08 18:48:33.118 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_56
- 2026-05-08 18:48:33.141 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_12
- 2026-05-08 18:48:33.233 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_64
- 2026-05-08 18:48:33.304 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_17
- 2026-05-08 18:48:33.351 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: monthlyStatUsingGET_1
- 2026-05-08 18:48:33.358 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: monthlyStatSummaryUsingGET_1
- 2026-05-08 18:48:33.370 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getListUsingGET_2
- 2026-05-08 18:48:33.521 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_67
- 2026-05-08 18:48:33.605 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageListUsingGET_1
- 2026-05-08 18:48:33.612 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: statUsingGET_2
- 2026-05-08 18:48:33.708 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_13
- 2026-05-08 18:48:33.714 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_14
- 2026-05-08 18:48:33.806 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_65
- 2026-05-08 18:48:33.834 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_68
- 2026-05-08 18:48:33.962 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getYyWyjtzPageUsingGET_1
- 2026-05-08 18:48:33.966 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_15
- 2026-05-08 18:48:33.977 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_5
- 2026-05-08 18:48:33.999 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_18
- 2026-05-08 18:48:34.003 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_16
- 2026-05-08 18:48:34.044 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_19
- 2026-05-08 18:48:34.049 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_17
- 2026-05-08 18:48:34.206 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_20
- 2026-05-08 18:48:34.211 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_18
- 2026-05-08 18:48:34.226 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_69
- 2026-05-08 18:48:34.249 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_70
- 2026-05-08 18:48:34.257 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_55
- 2026-05-08 18:48:34.284 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_66
- 2026-05-08 18:48:34.295 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_57
- 2026-05-08 18:48:34.306 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_70
- 2026-05-08 18:48:34.315 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_71
- 2026-05-08 18:48:34.321 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_56
- 2026-05-08 18:48:34.348 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_67
- 2026-05-08 18:48:34.358 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_58
- 2026-05-08 18:48:34.370 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_21
- 2026-05-08 18:48:34.380 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_3
- 2026-05-08 18:48:34.403 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_68
- 2026-05-08 18:48:34.438 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_22
- 2026-05-08 18:48:34.548 [main] INFO io.undertow - starting server: Undertow - 2.0.31.Final
- 2026-05-08 18:48:34.574 [main] INFO org.xnio - XNIO version 3.3.8.Final
- 2026-05-08 18:48:34.603 [main] INFO org.xnio.nio - XNIO NIO Implementation Version 3.3.8.Final
- 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 ''
- 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-05-08 18:48:36.750 [main] INFO o.s.cloud.commons.util.InetUtils - Cannot determine local hostname
- 2026-05-08 18:48:36.753 [main] INFO com.tofly.feesapi.FeesApiApplication - Started FeesApiApplication in 57.775 seconds (JVM running for 60.205)
- 2026-05-08 18:48:37.772 [RMI TCP Connection(3)-192.168.1.105] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
- 2026-05-08 18:48:37.772 [RMI TCP Connection(3)-192.168.1.105] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
- 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
- 2026-05-08 18:51:31.250 [SpringContextShutdownHook] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'taskScheduler'
- 2026-05-08 18:51:31.266 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registering from Nacos Server now...
- 2026-05-08 18:51:31.286 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registration finished.
- 2026-05-08 18:51:31.289 [SpringContextShutdownHook] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'taskScheduler'
- 2026-05-08 18:51:41.347 [SpringContextShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
- 2026-05-08 18:51:41.351 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-2} closing ...
- 2026-05-08 18:51:41.397 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-2} closed
- 2026-05-08 18:51:41.397 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-3} closing ...
- 2026-05-08 18:51:41.438 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-3} closed
- 2026-05-08 18:51:41.438 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closing ...
- 2026-05-08 18:51:41.921 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closed
- 2026-05-08 18:51:41.922 [SpringContextShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
- 2026-05-08 18:51:41.926 [SpringContextShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
- 2026-05-08 18:51:41.927 [SpringContextShutdownHook] INFO io.undertow - stopping server: Undertow - 2.0.31.Final
|