| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445 |
- 2026-04-15 19:06:26.972 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.0.20.Final
- 2026-04-15 19:06:27.547 [background-preinit] WARN o.s.h.c.j.Jackson2ObjectMapperBuilder - For Jackson Kotlin classes support please add "com.fasterxml.jackson.module:jackson-module-kotlin" to the classpath
- 2026-04-15 19:06:28.154 [main] WARN c.a.c.n.c.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[collect-fees-api] & group[DEFAULT_GROUP]
- 2026-04-15 19:06:28.166 [main] WARN c.a.c.n.c.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[collect-fees-api-gs.yaml] & group[DEFAULT_GROUP]
- 2026-04-15 19:06:28.167 [main] INFO o.s.c.b.c.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-collect-fees-api-gs.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-collect-fees-api.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-collect-fees-api,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-public_config_redis.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-public_config_oracle.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-public_config_public.yaml,DEFAULT_GROUP'}]
- 2026-04-15 19:06:28.172 [main] INFO com.tofly.feesapi.FeesApiApplication - The following profiles are active: gs
- 2026-04-15 19:06:30.268 [main] WARN o.s.boot.actuate.endpoint.EndpointId - Endpoint ID 'nacos-config' contains invalid characters, please migrate to a valid format.
- 2026-04-15 19:06:30.273 [main] WARN o.s.boot.actuate.endpoint.EndpointId - Endpoint ID 'nacos-discovery' contains invalid characters, please migrate to a valid format.
- 2026-04-15 19:06:30.558 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode!
- 2026-04-15 19:06:30.561 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
- 2026-04-15 19:06:30.840 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 205ms. Found 0 Redis repository interfaces.
- 2026-04-15 19:06:30.922 [main] WARN o.s.boot.actuate.endpoint.EndpointId - Endpoint ID 'service-registry' contains invalid characters, please migrate to a valid format.
- 2026-04-15 19:06:31.024 [main] DEBUG org.apache.ibatis.logging.LogFactory - Logging initialized using 'class org.apache.ibatis.logging.slf4j.Slf4jImpl' adapter.
- 2026-04-15 19:06:31.185 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhBjflFbMapper' and 'com.tofly.feesapi.bjgl.mapper.YhBjflFbMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.185 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhBjflZbMapper' and 'com.tofly.feesapi.bjgl.mapper.YhBjflZbMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.185 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhCbkxxLogMapper' and 'com.tofly.feesapi.bjgl.mapper.YhCbkxxLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.185 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhCbkxxMapper' and 'com.tofly.feesapi.bjgl.mapper.YhCbkxxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.185 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhbglMapper' and 'com.tofly.feesapi.bjgl.mapper.YhbglMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.185 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'ykHbLogMapper' and 'com.tofly.feesapi.bjgl.mapper.YkHbLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.185 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'ykYhbgHbMapper' and 'com.tofly.feesapi.bjgl.mapper.YkYhbgHbMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.186 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmCbbMapper' and 'com.tofly.feesapi.bmgl.mapper.BmCbbMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.186 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmCbfsMapper' and 'com.tofly.feesapi.bmgl.mapper.BmCbfsMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.186 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmCblxMapper' and 'com.tofly.feesapi.bmgl.mapper.BmCblxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.186 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmCbplMapper' and 'com.tofly.feesapi.bmgl.mapper.BmCbplMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.186 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmCbpqMapper' and 'com.tofly.feesapi.bmgl.mapper.BmCbpqMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.186 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmDbhysyhMapper' and 'com.tofly.feesapi.bmgl.mapper.BmDbhysyhMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.186 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmFffsMapper' and 'com.tofly.feesapi.bmgl.mapper.BmFffsMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.186 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmFylxMapper' and 'com.tofly.feesapi.bmgl.mapper.BmFylxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.186 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmGsMapper' and 'com.tofly.feesapi.bmgl.mapper.BmGsMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.186 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSblbMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSblbMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.186 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSbsccjMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSbsccjMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.186 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSbxhMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSbxhMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.186 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSearchMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSearchMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.186 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSflxMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSflxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.186 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSfqdMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSfqdMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.186 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSjMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSjMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.186 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSjlsMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSjlsMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.186 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmYmjzConfigLsMapper' and 'com.tofly.feesapi.bmgl.mapper.BmYmjzConfigLsMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.186 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmYmjzConfigMapper' and 'com.tofly.feesapi.bmgl.mapper.BmYmjzConfigMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.186 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmYslxMapper' and 'com.tofly.feesapi.bmgl.mapper.BmYslxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.186 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'cbbConfigMapper' and 'com.tofly.feesapi.bmgl.mapper.CbbConfigMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.186 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysChildCodeMapper' and 'com.tofly.feesapi.bmgl.mapper.SysChildCodeMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.186 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysParentCodeMapper' and 'com.tofly.feesapi.bmgl.mapper.SysParentCodeMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.186 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyCblrLsMapper' and 'com.tofly.feesapi.cbgl.mapper.YyCblrLsMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.186 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyCblrMapper' and 'com.tofly.feesapi.cbgl.mapper.YyCblrMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.186 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbCbDayMapper' and 'com.tofly.feesapi.cbgl.mapper.ZnbCbDayMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.187 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbCbLogMapper' and 'com.tofly.feesapi.cbgl.mapper.ZnbCbLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.187 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbZlLogMapper' and 'com.tofly.feesapi.cbgl.mapper.ZnbZlLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.187 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'commonMapper' and 'com.tofly.feesapi.common.mapper.CommonMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.187 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiFpkjMxMapper' and 'com.tofly.feesapi.dzfp.mapper.EiFpkjMxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.187 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiFpkjRequestMapper' and 'com.tofly.feesapi.dzfp.mapper.EiFpkjRequestMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.187 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiSalerConfigMapper' and 'com.tofly.feesapi.dzfp.mapper.EiSalerConfigMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.187 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiSpbmMapper' and 'com.tofly.feesapi.dzfp.mapper.EiSpbmMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.187 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiYkfpLogMapper' and 'com.tofly.feesapi.dzfp.mapper.EiYkfpLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.187 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'htFilesMapper' and 'com.tofly.feesapi.dzht.mapper.HtFilesMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.187 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'htTemplateMapper' and 'com.tofly.feesapi.dzht.mapper.HtTemplateMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.187 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'fileMapper' and 'com.tofly.feesapi.file.mapper.FileMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.187 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'flowMapper' and 'com.tofly.feesapi.flowdb.mapper.FlowMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.187 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyBgLogMapper' and 'com.tofly.feesapi.mxcx.mapper.YyBgLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.187 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bankDsdzhzMapper' and 'com.tofly.feesapi.sfds.mapper.BankDsdzhzMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.187 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bankDsdzxxMapper' and 'com.tofly.feesapi.sfds.mapper.BankDsdzxxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.187 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'plsfkhxxMapper' and 'com.tofly.feesapi.sfgl.mapper.PlsfkhxxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.187 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyPjbhMapper' and 'com.tofly.feesapi.sfgl.mapper.YyPjbhMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.187 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyQfmxCzlsMapper' and 'com.tofly.feesapi.sfgl.mapper.YyQfmxCzlsMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.187 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyQfmxDzmxMapper' and 'com.tofly.feesapi.sfgl.mapper.YyQfmxDzmxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.187 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyQfmxGdMapper' and 'com.tofly.feesapi.sfgl.mapper.YyQfmxGdMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.187 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyQfmxMapper' and 'com.tofly.feesapi.sfgl.mapper.YyQfmxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.187 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yySspjxxMapper' and 'com.tofly.feesapi.sfgl.mapper.YySspjxxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.187 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yySspjxxReportMapper' and 'com.tofly.feesapi.sfgl.mapper.YySspjxxReportMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.187 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyWyjjmrqMapper' and 'com.tofly.feesapi.sfgl.mapper.YyWyjjmrqMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.187 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyWyjtzMapper' and 'com.tofly.feesapi.sfgl.mapper.YyWyjtzMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.187 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbCsjsLogMapper' and 'com.tofly.feesapi.sfgl.mapper.ZnbCsjsLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.187 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'smsMessageMapper' and 'com.tofly.feesapi.sms.mapper.SmsMessageMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.187 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'smsTxlxMapper' and 'com.tofly.feesapi.sms.mapper.SmsTxlxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.187 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'companyMapper' and 'com.tofly.feesapi.udb.mapper.CompanyMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.187 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.tofly.feesapi.udb.mapper.UserMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.187 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userRoleMapper' and 'com.tofly.feesapi.udb.mapper.UserRoleMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.187 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxDtbmMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxDtbmMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.187 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxFwtzMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxFwtzMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.187 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxMessageMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxMessageMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.187 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxTokenMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxTokenMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.187 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxTstzMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxTstzMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.187 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxUserLsMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxUserLsMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.187 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxUserMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxUserMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.187 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxYwxzMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxYwxzMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.187 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxYwxzbmMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxYwxzbmMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.187 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxBtsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxBtsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.187 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxBzsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxBzsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.187 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxDbsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxDbsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.187 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxGhsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxGhsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.188 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxGsdtMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxGsdtMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.188 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxHfsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxHfsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.188 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxLwsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxLwsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.188 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxLxdhsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxLxdhsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.188 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxRkssqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxRkssqMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.188 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxWdMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxWdMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.188 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxWdbmMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxWdbmMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.188 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxWzjbsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxWzjbsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.188 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxXbsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxXbsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.188 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxXhsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxXhsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.188 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'paySelectMapper' and 'com.tofly.feesapi.wxgl.wechatpay.mapper.PaySelectMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.188 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysGdcsbMapper' and 'com.tofly.feesapi.xtgl.mapper.SysGdcsbMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.188 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'syscommlogMapper' and 'com.tofly.feesapi.xtgl.mapper.SyscommlogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.188 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhBtLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhBtLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.188 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhFfgxMapper' and 'com.tofly.feesapi.yhgl.mapper.YhFfgxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.188 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhGhLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhGhLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.188 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhGroupAccountsMapper' and 'com.tofly.feesapi.yhgl.mapper.YhGroupAccountsMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.188 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhGroupMapper' and 'com.tofly.feesapi.yhgl.mapper.YhGroupMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.188 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhHfysLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhHfysLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.188 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhKhjbxxDbhlsMapper' and 'com.tofly.feesapi.yhgl.mapper.YhKhjbxxDbhlsMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.188 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhKhjbxxLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhKhjbxxLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.188 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhKhjbxxMapper' and 'com.tofly.feesapi.yhgl.mapper.YhKhjbxxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.188 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhXzbgLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhXzbgLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.188 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhhLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhhLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.188 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhsjqxMapper' and 'com.tofly.feesapi.yhgl.mapper.YhsjqxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.188 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyZjzhMapper' and 'com.tofly.feesapi.yhgl.mapper.YyZjzhMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.188 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbDaLogMapper' and 'com.tofly.feesapi.znbgl.mapper.ZnbDaLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.188 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbYhdaMapper' and 'com.tofly.feesapi.znbgl.mapper.ZnbYhdaMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:06:31.189 [main] WARN o.m.s.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.tofly.feesapi.**.mapper]' package. Please check your configuration.
- 2026-04-15 19:06:31.295 [main] INFO o.s.cloud.context.scope.GenericScope - BeanFactory id=b96e5894-f128-35d3-aafc-41fccadba59b
- 2026-04-15 19:06:31.348 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.tofly.feesapi.common.feign.UserClient' of type [org.springframework.cloud.openfeign.FeignClientFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-04-15 19:06:31.679 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.datasource.dynamic-com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-04-15 19:06:31.693 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$a82b0449] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-04-15 19:06:31.711 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'dsProcessor' of type [com.baomidou.dynamic.datasource.processor.DsHeaderProcessor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-04-15 19:06:31.749 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@6b2aafbc' of type [org.springframework.security.oauth2.provider.expression.OAuth2MethodSecurityExpressionHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-04-15 19:06:31.757 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'methodSecurityMetadataSource' of type [org.springframework.security.access.method.DelegatingMethodSecurityMetadataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-04-15 19:06:32.085 [main] WARN io.undertow.websockets.jsr - UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
- 2026-04-15 19:06:32.116 [main] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
- 2026-04-15 19:06:32.116 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3924 ms
- 2026-04-15 19:06:36.042 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1,master} inited
- 2026-04-15 19:06:41.854 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-2,udb} inited
- 2026-04-15 19:06:47.821 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-3,flowDB} inited
- 2026-04-15 19:06:47.822 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [udb] success
- 2026-04-15 19:06:47.822 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [flowDB] success
- 2026-04-15 19:06:47.822 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
- 2026-04-15 19:06:47.823 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [3] datasource,primary datasource named [master]
- 2026-04-15 19:06:49.925 [main] WARN c.b.m.core.injector.AbstractMethod - [com.tofly.feesapi.bmgl.mapper.SysParentCodeMapper.selectCount] Has been loaded by XML or SqlProvider or Mybatis's Annotation, so ignoring this injection for [class com.baomidou.mybatisplus.core.injector.methods.SelectCount]
- 2026-04-15 19:06:50.410 [main] WARN c.b.m.core.injector.AbstractMethod - [com.tofly.feesapi.flowdb.mapper.FlowMapper.updateById] Has been loaded by XML or SqlProvider or Mybatis's Annotation, so ignoring this injection for [class com.baomidou.mybatisplus.core.injector.methods.UpdateById]
- 2026-04-15 19:06:51.440 [main] WARN c.b.m.core.metadata.TableInfoHelper - Can not find table primary key in Class: "com.tofly.feesapi.wxgl.wechatpay.entity.PaySelect".
- 2026-04-15 19:06:51.440 [main] WARN c.b.m.c.injector.DefaultSqlInjector - class com.tofly.feesapi.wxgl.wechatpay.entity.PaySelect ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method.
- 2026-04-15 19:06:51.452 [main] WARN c.b.m.core.metadata.TableInfoHelper - Can not find table primary key in Class: "com.tofly.feesapi.xtgl.entity.SysGdcsb".
- 2026-04-15 19:06:51.452 [main] WARN c.b.m.c.injector.DefaultSqlInjector - class com.tofly.feesapi.xtgl.entity.SysGdcsb ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method.
- 2026-04-15 19:06:56.568 [main] INFO org.redisson.Version - Redisson 3.23.2
- 2026-04-15 19:06:57.683 [redisson-netty-2-4] INFO o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 127.0.0.1/127.0.0.1:6379
- 2026-04-15 19:06:57.742 [redisson-netty-2-19] INFO o.r.c.pool.MasterConnectionPool - 24 connections initialized for 127.0.0.1/127.0.0.1:6379
- 2026-04-15 19:07:19.980 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 19 endpoint(s) beneath base path '/actuator'
- 2026-04-15 19:07:20.110 [main] INFO s.d.s.w.WebMvcPropertySourcedRequestMappingHandlerMapping - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
- 2026-04-15 19:07:20.377 [main] INFO c.n.c.sources.URLConfigurationSource - URLs to be used as dynamic configuration source: [file:/D:/work/tf/%e5%b1%b1%e4%b8%9c%e8%8e%b1%e9%98%b3%e6%b0%b4%e5%8f%b8/%e8%8e%b1%e9%98%b3%e6%99%ba%e6%85%a7%e6%b0%b4%e5%8a%a1JAVA%e8%90%a5%e9%94%80/20260403/lywebmis/collect_fees_ly_api/fees-ly-api/target/classes/config.properties]
- 2026-04-15 19:07:20.394 [main] INFO c.n.c.sources.URLConfigurationSource - URLs to be used as dynamic configuration source: [file:/D:/work/tf/%e5%b1%b1%e4%b8%9c%e8%8e%b1%e9%98%b3%e6%b0%b4%e5%8f%b8/%e8%8e%b1%e9%98%b3%e6%99%ba%e6%85%a7%e6%b0%b4%e5%8a%a1JAVA%e8%90%a5%e9%94%80/20260403/lywebmis/collect_fees_ly_api/fees-ly-api/target/classes/config.properties]
- 2026-04-15 19:07:20.751 [main] INFO o.s.s.c.ThreadPoolTaskScheduler - Initializing ExecutorService 'taskScheduler'
- 2026-04-15 19:07:21.033 [main] INFO o.s.b.a.s.s.UserDetailsServiceAutoConfiguration -
- Using generated security password: 22cb8af2-9de7-444b-b9b2-29c52b4ca3a0
- 2026-04-15 19:07:21.228 [main] INFO o.s.s.web.DefaultSecurityFilterChain - Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@584f12eb, org.springframework.security.web.context.SecurityContextPersistenceFilter@625439ba, org.springframework.security.web.header.HeaderWriterFilter@33684b87, org.springframework.security.web.authentication.logout.LogoutFilter@66abb7d4, org.springframework.security.oauth2.provider.authentication.OAuth2AuthenticationProcessingFilter@13b666b4, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@2416378c, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@4734a551, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@6eda3ade, org.springframework.security.web.session.SessionManagementFilter@b09df69, org.springframework.security.web.access.ExceptionTranslationFilter@304d6881, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@52f1f54]
- 2026-04-15 19:07:21.960 [main] WARN o.s.c.s.o.SpringCloudSecurityAutoConfiguration - All Spring Cloud Security modules and starters are deprecated. They will be moved to individual projects in the next major release.
- 2026-04-15 19:07:22.154 [main] INFO s.d.s.w.p.DocumentationPluginsBootstrapper - Documentation plugins bootstrapped
- 2026-04-15 19:07:22.164 [main] INFO s.d.s.w.p.DocumentationPluginsBootstrapper - Found 1 custom documentation plugin(s)
- 2026-04-15 19:07:22.335 [main] INFO s.d.s.w.s.ApiListingReferenceScanner - Scanning for api listing references
- 2026-04-15 19:07:22.772 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_1
- 2026-04-15 19:07:22.776 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_1
- 2026-04-15 19:07:22.778 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_1
- 2026-04-15 19:07:22.780 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_1
- 2026-04-15 19:07:22.785 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_1
- 2026-04-15 19:07:22.786 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_1
- 2026-04-15 19:07:22.809 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: addCustomerUsingPOST_1
- 2026-04-15 19:07:22.810 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: deleteCustomerUsingPOST_1
- 2026-04-15 19:07:22.811 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getBindCustomerUsingGET_1
- 2026-04-15 19:07:22.812 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: selectCustomerUsingGET_1
- 2026-04-15 19:07:22.814 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getBindCustomerAndQfUsingGET_1
- 2026-04-15 19:07:22.816 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerBasicInFoUsingGET_1
- 2026-04-15 19:07:22.816 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerChargeInFoUsingGET_1
- 2026-04-15 19:07:22.817 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerInFoUsingGET_1
- 2026-04-15 19:07:22.818 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerQfInFoUsingGET_1
- 2026-04-15 19:07:22.819 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerReadMeterInFoUsingGET_1
- 2026-04-15 19:07:22.831 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_2
- 2026-04-15 19:07:22.860 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_2
- 2026-04-15 19:07:22.861 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_2
- 2026-04-15 19:07:22.862 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_2
- 2026-04-15 19:07:22.866 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_2
- 2026-04-15 19:07:22.867 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_2
- 2026-04-15 19:07:22.884 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_3
- 2026-04-15 19:07:22.886 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_3
- 2026-04-15 19:07:22.887 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_3
- 2026-04-15 19:07:22.889 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_3
- 2026-04-15 19:07:22.890 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_3
- 2026-04-15 19:07:22.899 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_3
- 2026-04-15 19:07:22.906 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_4
- 2026-04-15 19:07:22.907 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_4
- 2026-04-15 19:07:22.908 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_4
- 2026-04-15 19:07:22.909 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_4
- 2026-04-15 19:07:22.910 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_4
- 2026-04-15 19:07:22.912 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_5
- 2026-04-15 19:07:22.914 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_5
- 2026-04-15 19:07:22.916 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_5
- 2026-04-15 19:07:22.918 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_5
- 2026-04-15 19:07:22.920 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_5
- 2026-04-15 19:07:22.929 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_4
- 2026-04-15 19:07:22.937 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_6
- 2026-04-15 19:07:22.942 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_5
- 2026-04-15 19:07:22.942 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_6
- 2026-04-15 19:07:22.944 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_6
- 2026-04-15 19:07:22.947 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_6
- 2026-04-15 19:07:22.949 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_6
- 2026-04-15 19:07:22.951 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_1
- 2026-04-15 19:07:22.957 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_7
- 2026-04-15 19:07:22.958 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_7
- 2026-04-15 19:07:22.959 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_7
- 2026-04-15 19:07:22.961 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_7
- 2026-04-15 19:07:22.962 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_7
- 2026-04-15 19:07:22.966 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_8
- 2026-04-15 19:07:22.967 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getFffsListUsingGET_1
- 2026-04-15 19:07:22.969 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_8
- 2026-04-15 19:07:22.971 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_9
- 2026-04-15 19:07:22.976 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_8
- 2026-04-15 19:07:22.977 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_8
- 2026-04-15 19:07:22.984 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_2
- 2026-04-15 19:07:22.988 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_9
- 2026-04-15 19:07:22.989 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_10
- 2026-04-15 19:07:22.990 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_11
- 2026-04-15 19:07:22.992 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_9
- 2026-04-15 19:07:22.993 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_9
- 2026-04-15 19:07:22.998 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_10
- 2026-04-15 19:07:22.999 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_12
- 2026-04-15 19:07:23.000 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_13
- 2026-04-15 19:07:23.002 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_10
- 2026-04-15 19:07:23.003 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_10
- 2026-04-15 19:07:23.008 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_11
- 2026-04-15 19:07:23.009 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_14
- 2026-04-15 19:07:23.010 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_15
- 2026-04-15 19:07:23.013 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_11
- 2026-04-15 19:07:23.013 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_11
- 2026-04-15 19:07:23.020 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_12
- 2026-04-15 19:07:23.020 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_16
- 2026-04-15 19:07:23.021 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_8
- 2026-04-15 19:07:23.023 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_12
- 2026-04-15 19:07:23.024 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_12
- 2026-04-15 19:07:23.030 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_13
- 2026-04-15 19:07:23.031 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_17
- 2026-04-15 19:07:23.032 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_9
- 2026-04-15 19:07:23.034 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_13
- 2026-04-15 19:07:23.034 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_13
- 2026-04-15 19:07:23.037 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_14
- 2026-04-15 19:07:23.038 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_18
- 2026-04-15 19:07:23.040 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_19
- 2026-04-15 19:07:23.042 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_14
- 2026-04-15 19:07:23.043 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_14
- 2026-04-15 19:07:23.049 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_15
- 2026-04-15 19:07:23.061 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_6
- 2026-04-15 19:07:23.092 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_15
- 2026-04-15 19:07:23.098 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_3
- 2026-04-15 19:07:23.105 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_16
- 2026-04-15 19:07:23.106 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_20
- 2026-04-15 19:07:23.107 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_10
- 2026-04-15 19:07:23.109 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_16
- 2026-04-15 19:07:23.110 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_15
- 2026-04-15 19:07:23.116 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_17
- 2026-04-15 19:07:23.121 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_7
- 2026-04-15 19:07:23.123 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_21
- 2026-04-15 19:07:23.124 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_11
- 2026-04-15 19:07:23.128 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_17
- 2026-04-15 19:07:23.129 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_16
- 2026-04-15 19:07:23.146 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_8
- 2026-04-15 19:07:23.148 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveBatchUsingPOST_1
- 2026-04-15 19:07:23.288 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_18
- 2026-04-15 19:07:23.292 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_22
- 2026-04-15 19:07:23.293 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_12
- 2026-04-15 19:07:23.296 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_18
- 2026-04-15 19:07:23.297 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_17
- 2026-04-15 19:07:23.298 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_19
- 2026-04-15 19:07:23.301 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_23
- 2026-04-15 19:07:23.305 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_19
- 2026-04-15 19:07:23.307 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_18
- 2026-04-15 19:07:23.315 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_20
- 2026-04-15 19:07:23.317 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_24
- 2026-04-15 19:07:23.317 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_13
- 2026-04-15 19:07:23.320 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_20
- 2026-04-15 19:07:23.346 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: Xh_WordToPdfUsingPOST_1
- 2026-04-15 19:07:23.350 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_21
- 2026-04-15 19:07:23.356 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_25
- 2026-04-15 19:07:23.358 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_14
- 2026-04-15 19:07:23.363 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_21
- 2026-04-15 19:07:23.365 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_26
- 2026-04-15 19:07:23.366 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_15
- 2026-04-15 19:07:23.368 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_22
- 2026-04-15 19:07:23.369 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_19
- 2026-04-15 19:07:23.391 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_22
- 2026-04-15 19:07:23.535 [main] WARN s.d.s.w.r.p.ParameterTypeReader - @ModelAttribute annotated parameters should have already been expanded via the ExpandedParameterBuilderPlugin
- 2026-04-15 19:07:23.535 [main] WARN s.d.s.w.r.p.ParameterTypeReader - @ModelAttribute annotated parameters should have already been expanded via the ExpandedParameterBuilderPlugin
- 2026-04-15 19:07:23.543 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportYsqdUsingGET_1
- 2026-04-15 19:07:23.618 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_23
- 2026-04-15 19:07:23.620 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_27
- 2026-04-15 19:07:23.621 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_16
- 2026-04-15 19:07:23.650 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_24
- 2026-04-15 19:07:23.652 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_28
- 2026-04-15 19:07:23.653 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_17
- 2026-04-15 19:07:23.656 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_23
- 2026-04-15 19:07:23.657 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_20
- 2026-04-15 19:07:23.674 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_25
- 2026-04-15 19:07:23.681 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_29
- 2026-04-15 19:07:23.683 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_18
- 2026-04-15 19:07:23.685 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_24
- 2026-04-15 19:07:23.686 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_21
- 2026-04-15 19:07:23.689 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_26
- 2026-04-15 19:07:23.695 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_30
- 2026-04-15 19:07:23.696 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_19
- 2026-04-15 19:07:23.698 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_25
- 2026-04-15 19:07:23.700 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_22
- 2026-04-15 19:07:23.714 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_27
- 2026-04-15 19:07:23.722 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_31
- 2026-04-15 19:07:23.723 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_20
- 2026-04-15 19:07:23.728 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_26
- 2026-04-15 19:07:23.730 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_23
- 2026-04-15 19:07:23.742 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxBtsqPageUsingGET_1
- 2026-04-15 19:07:23.745 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_28
- 2026-04-15 19:07:23.753 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_32
- 2026-04-15 19:07:23.754 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_21
- 2026-04-15 19:07:23.759 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_27
- 2026-04-15 19:07:23.761 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_24
- 2026-04-15 19:07:23.765 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxBzsqPageUsingGET_1
- 2026-04-15 19:07:23.776 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_29
- 2026-04-15 19:07:23.783 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_33
- 2026-04-15 19:07:23.785 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_22
- 2026-04-15 19:07:23.790 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_28
- 2026-04-15 19:07:23.792 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_25
- 2026-04-15 19:07:23.803 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxDbsqPageUsingGET_1
- 2026-04-15 19:07:23.806 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPOST_1
- 2026-04-15 19:07:23.809 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_30
- 2026-04-15 19:07:23.814 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_34
- 2026-04-15 19:07:23.816 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_23
- 2026-04-15 19:07:23.819 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_29
- 2026-04-15 19:07:23.820 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_26
- 2026-04-15 19:07:23.822 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_31
- 2026-04-15 19:07:23.826 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_35
- 2026-04-15 19:07:23.829 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_24
- 2026-04-15 19:07:23.834 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_30
- 2026-04-15 19:07:23.836 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_27
- 2026-04-15 19:07:23.839 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_32
- 2026-04-15 19:07:23.841 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_36
- 2026-04-15 19:07:23.843 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_25
- 2026-04-15 19:07:23.848 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_31
- 2026-04-15 19:07:23.850 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_28
- 2026-04-15 19:07:23.864 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_33
- 2026-04-15 19:07:23.867 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_37
- 2026-04-15 19:07:23.868 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_38
- 2026-04-15 19:07:23.872 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_32
- 2026-04-15 19:07:23.874 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_29
- 2026-04-15 19:07:23.876 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_34
- 2026-04-15 19:07:23.882 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_39
- 2026-04-15 19:07:23.884 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_26
- 2026-04-15 19:07:23.888 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_33
- 2026-04-15 19:07:23.889 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_30
- 2026-04-15 19:07:23.896 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxHfsqPageUsingGET_1
- 2026-04-15 19:07:23.898 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_35
- 2026-04-15 19:07:23.901 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_40
- 2026-04-15 19:07:23.902 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_27
- 2026-04-15 19:07:23.905 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_34
- 2026-04-15 19:07:23.905 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_31
- 2026-04-15 19:07:23.914 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxLwsqPageUsingGET_1
- 2026-04-15 19:07:23.917 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_36
- 2026-04-15 19:07:23.921 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_41
- 2026-04-15 19:07:23.922 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_28
- 2026-04-15 19:07:23.928 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_35
- 2026-04-15 19:07:23.930 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_32
- 2026-04-15 19:07:23.942 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxLxdhsqPageUsingGET_1
- 2026-04-15 19:07:23.947 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_37
- 2026-04-15 19:07:23.958 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_42
- 2026-04-15 19:07:23.960 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_29
- 2026-04-15 19:07:23.968 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_36
- 2026-04-15 19:07:23.970 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_33
- 2026-04-15 19:07:23.983 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_38
- 2026-04-15 19:07:23.990 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_43
- 2026-04-15 19:07:23.992 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_30
- 2026-04-15 19:07:23.996 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_37
- 2026-04-15 19:07:23.998 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_34
- 2026-04-15 19:07:24.007 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxDbsqPageUsingGET_2
- 2026-04-15 19:07:24.016 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_1
- 2026-04-15 19:07:24.019 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_39
- 2026-04-15 19:07:24.024 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_44
- 2026-04-15 19:07:24.026 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_31
- 2026-04-15 19:07:24.031 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_38
- 2026-04-15 19:07:24.041 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_35
- 2026-04-15 19:07:24.043 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_40
- 2026-04-15 19:07:24.047 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_45
- 2026-04-15 19:07:24.050 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_32
- 2026-04-15 19:07:24.057 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_39
- 2026-04-15 19:07:24.059 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_36
- 2026-04-15 19:07:24.062 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_41
- 2026-04-15 19:07:24.066 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_46
- 2026-04-15 19:07:24.067 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_33
- 2026-04-15 19:07:24.073 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_40
- 2026-04-15 19:07:24.075 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_37
- 2026-04-15 19:07:24.076 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_42
- 2026-04-15 19:07:24.079 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_47
- 2026-04-15 19:07:24.080 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_48
- 2026-04-15 19:07:24.084 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_41
- 2026-04-15 19:07:24.085 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_38
- 2026-04-15 19:07:24.087 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_43
- 2026-04-15 19:07:24.091 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_49
- 2026-04-15 19:07:24.092 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_50
- 2026-04-15 19:07:24.094 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_42
- 2026-04-15 19:07:24.095 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_39
- 2026-04-15 19:07:24.098 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_44
- 2026-04-15 19:07:24.103 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_51
- 2026-04-15 19:07:24.104 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_34
- 2026-04-15 19:07:24.108 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_43
- 2026-04-15 19:07:24.109 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_40
- 2026-04-15 19:07:24.115 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxWzjbsqPageUsingGET_1
- 2026-04-15 19:07:24.118 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_45
- 2026-04-15 19:07:24.123 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_52
- 2026-04-15 19:07:24.124 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_35
- 2026-04-15 19:07:24.129 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_44
- 2026-04-15 19:07:24.130 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_41
- 2026-04-15 19:07:24.137 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxXbsqPageUsingGET_1
- 2026-04-15 19:07:24.140 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_46
- 2026-04-15 19:07:24.146 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_53
- 2026-04-15 19:07:24.147 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_36
- 2026-04-15 19:07:24.150 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_45
- 2026-04-15 19:07:24.153 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_42
- 2026-04-15 19:07:24.159 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxXhsqPageUsingGET_1
- 2026-04-15 19:07:24.161 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPOST_2
- 2026-04-15 19:07:24.163 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_47
- 2026-04-15 19:07:24.166 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_54
- 2026-04-15 19:07:24.167 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_37
- 2026-04-15 19:07:24.171 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_46
- 2026-04-15 19:07:24.173 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_43
- 2026-04-15 19:07:24.176 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_48
- 2026-04-15 19:07:24.183 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_55
- 2026-04-15 19:07:24.185 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_38
- 2026-04-15 19:07:24.188 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_47
- 2026-04-15 19:07:24.189 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_44
- 2026-04-15 19:07:24.200 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_9
- 2026-04-15 19:07:24.202 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_56
- 2026-04-15 19:07:24.203 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_39
- 2026-04-15 19:07:24.207 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_48
- 2026-04-15 19:07:24.210 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_57
- 2026-04-15 19:07:24.212 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_40
- 2026-04-15 19:07:24.217 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_49
- 2026-04-15 19:07:24.226 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_10
- 2026-04-15 19:07:24.230 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_49
- 2026-04-15 19:07:24.237 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_58
- 2026-04-15 19:07:24.239 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_41
- 2026-04-15 19:07:24.244 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_50
- 2026-04-15 19:07:24.249 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_45
- 2026-04-15 19:07:24.251 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_2
- 2026-04-15 19:07:24.274 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_51
- 2026-04-15 19:07:24.286 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_50
- 2026-04-15 19:07:24.298 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_11
- 2026-04-15 19:07:24.316 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_1
- 2026-04-15 19:07:24.328 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_51
- 2026-04-15 19:07:24.330 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_42
- 2026-04-15 19:07:24.352 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_52
- 2026-04-15 19:07:24.358 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_59
- 2026-04-15 19:07:24.359 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_43
- 2026-04-15 19:07:24.361 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_52
- 2026-04-15 19:07:24.364 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_46
- 2026-04-15 19:07:24.366 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_53
- 2026-04-15 19:07:24.369 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_60
- 2026-04-15 19:07:24.370 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_44
- 2026-04-15 19:07:24.377 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_53
- 2026-04-15 19:07:24.385 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_47
- 2026-04-15 19:07:24.387 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_3
- 2026-04-15 19:07:24.389 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_61
- 2026-04-15 19:07:24.391 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_45
- 2026-04-15 19:07:24.394 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_54
- 2026-04-15 19:07:24.401 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_12
- 2026-04-15 19:07:24.406 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_62
- 2026-04-15 19:07:24.408 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_46
- 2026-04-15 19:07:24.411 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_55
- 2026-04-15 19:07:24.419 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_13
- 2026-04-15 19:07:24.422 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_54
- 2026-04-15 19:07:24.433 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_63
- 2026-04-15 19:07:24.435 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_47
- 2026-04-15 19:07:24.440 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_56
- 2026-04-15 19:07:24.449 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_48
- 2026-04-15 19:07:24.452 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_4
- 2026-04-15 19:07:24.492 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getDaCustomerPageUsingGET_1
- 2026-04-15 19:07:24.547 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_1
- 2026-04-15 19:07:24.560 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_14
- 2026-04-15 19:07:24.582 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_55
- 2026-04-15 19:07:24.628 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: delByIdUsingDELETE_1
- 2026-04-15 19:07:24.630 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: delByIdsUsingDELETE_1
- 2026-04-15 19:07:24.631 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: disableUsingPUT_1
- 2026-04-15 19:07:24.632 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: enableUsingPUT_1
- 2026-04-15 19:07:24.635 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: importExcelUsingPOST_1
- 2026-04-15 19:07:24.639 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_2
- 2026-04-15 19:07:24.646 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_3
- 2026-04-15 19:07:24.668 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_5
- 2026-04-15 19:07:24.671 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_6
- 2026-04-15 19:07:24.675 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_7
- 2026-04-15 19:07:24.679 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_56
- 2026-04-15 19:07:24.687 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_48
- 2026-04-15 19:07:24.726 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: addUsingPOST_1
- 2026-04-15 19:07:24.736 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_57
- 2026-04-15 19:07:24.745 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_64
- 2026-04-15 19:07:24.746 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_49
- 2026-04-15 19:07:24.749 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_57
- 2026-04-15 19:07:24.753 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: save_gdUsingPOST_1
- 2026-04-15 19:07:24.762 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_49
- 2026-04-15 19:07:24.775 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_58
- 2026-04-15 19:07:24.780 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_65
- 2026-04-15 19:07:24.782 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_50
- 2026-04-15 19:07:24.785 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_58
- 2026-04-15 19:07:24.787 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_50
- 2026-04-15 19:07:24.790 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_59
- 2026-04-15 19:07:24.794 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_66
- 2026-04-15 19:07:24.796 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_51
- 2026-04-15 19:07:24.800 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_59
- 2026-04-15 19:07:24.803 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: save_gdUsingPOST_2
- 2026-04-15 19:07:24.808 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_51
- 2026-04-15 19:07:24.810 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_8
- 2026-04-15 19:07:24.821 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_9
- 2026-04-15 19:07:24.837 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_60
- 2026-04-15 19:07:24.895 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_2
- 2026-04-15 19:07:24.900 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_61
- 2026-04-15 19:07:24.905 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_15
- 2026-04-15 19:07:24.943 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_4
- 2026-04-15 19:07:24.952 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_10
- 2026-04-15 19:07:24.960 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_62
- 2026-04-15 19:07:24.968 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_67
- 2026-04-15 19:07:24.969 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_52
- 2026-04-15 19:07:24.980 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_60
- 2026-04-15 19:07:24.983 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_52
- 2026-04-15 19:07:25.045 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_53
- 2026-04-15 19:07:25.155 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_16
- 2026-04-15 19:07:25.207 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getListUsingGET_1
- 2026-04-15 19:07:25.284 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_63
- 2026-04-15 19:07:25.349 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: statUsingGET_1
- 2026-04-15 19:07:25.392 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_11
- 2026-04-15 19:07:25.397 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_64
- 2026-04-15 19:07:25.413 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_68
- 2026-04-15 19:07:25.415 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_53
- 2026-04-15 19:07:25.459 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_61
- 2026-04-15 19:07:25.462 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_54
- 2026-04-15 19:07:25.465 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_65
- 2026-04-15 19:07:25.472 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_62
- 2026-04-15 19:07:25.475 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_55
- 2026-04-15 19:07:25.487 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_12
- 2026-04-15 19:07:25.530 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_63
- 2026-04-15 19:07:25.589 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_17
- 2026-04-15 19:07:25.623 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: monthlyStatUsingGET_1
- 2026-04-15 19:07:25.628 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: monthlyStatSummaryUsingGET_1
- 2026-04-15 19:07:25.634 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getListUsingGET_2
- 2026-04-15 19:07:25.732 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_66
- 2026-04-15 19:07:25.783 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageListUsingGET_1
- 2026-04-15 19:07:25.789 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: statUsingGET_2
- 2026-04-15 19:07:25.836 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_13
- 2026-04-15 19:07:25.841 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_14
- 2026-04-15 19:07:25.896 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_64
- 2026-04-15 19:07:25.910 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_67
- 2026-04-15 19:07:25.998 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getYyWyjtzPageUsingGET_1
- 2026-04-15 19:07:26.001 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_15
- 2026-04-15 19:07:26.008 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_5
- 2026-04-15 19:07:26.026 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_18
- 2026-04-15 19:07:26.031 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_16
- 2026-04-15 19:07:26.063 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_19
- 2026-04-15 19:07:26.063 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_17
- 2026-04-15 19:07:26.121 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_20
- 2026-04-15 19:07:26.121 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_18
- 2026-04-15 19:07:26.121 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_68
- 2026-04-15 19:07:26.132 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_69
- 2026-04-15 19:07:26.132 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_54
- 2026-04-15 19:07:26.142 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_65
- 2026-04-15 19:07:26.147 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_56
- 2026-04-15 19:07:26.152 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_69
- 2026-04-15 19:07:26.154 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_70
- 2026-04-15 19:07:26.156 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_55
- 2026-04-15 19:07:26.163 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_66
- 2026-04-15 19:07:26.166 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_57
- 2026-04-15 19:07:26.169 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_21
- 2026-04-15 19:07:26.173 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_3
- 2026-04-15 19:07:26.179 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_67
- 2026-04-15 19:07:26.201 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_22
- 2026-04-15 19:07:26.268 [main] INFO io.undertow - starting server: Undertow - 2.0.31.Final
- 2026-04-15 19:07:26.276 [main] INFO org.xnio - XNIO version 3.3.8.Final
- 2026-04-15 19:07:26.286 [main] INFO org.xnio.nio - XNIO NIO Implementation Version 3.3.8.Final
- 2026-04-15 19:07:26.386 [main] INFO o.s.b.w.e.u.UndertowServletWebServer - Undertow started on port(s) 10506 (http) with context path ''
- 2026-04-15 19:07:26.464 [main] INFO c.a.c.n.r.NacosServiceRegistry - nacos registry, DEFAULT_GROUP collect-fees-api 192.168.200.104:10506 register finished
- 2026-04-15 19:07:26.881 [main] INFO com.tofly.feesapi.FeesApiApplication - Started FeesApiApplication in 60.917 seconds (JVM running for 63.407)
- 2026-04-15 19:07:27.608 [RMI TCP Connection(3)-192.168.200.104] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
- 2026-04-15 19:07:27.608 [RMI TCP Connection(3)-192.168.200.104] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
- 2026-04-15 19:07:27.628 [RMI TCP Connection(3)-192.168.200.104] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 20 ms
- 2026-04-15 19:10:12.048 [XNIO-1 task-1] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/api/yhgl/yhkhjbxx/page2/getPage2】请求开始==================
- 2026-04-15 19:10:12.213 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.getPage2_mpCount - ==> Preparing: SELECT COUNT(*) AS total FROM yh_khjbxx a WHERE 1 = 1 AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?)
- 2026-04-15 19:10:12.246 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.getPage2_mpCount - ==> Parameters: 10753(String)
- 2026-04-15 19:10:12.314 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.getPage2_mpCount - <== Total: 1
- 2026-04-15 19:10:12.321 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.getPage2 - ==> Preparing: SELECT * FROM ( SELECT TMP.*, ROWNUM ROW_ID FROM ( SELECT a.yhbh,a.ykhbh, a.yhxm,a.yhdz,a.lxdh, a.ssgs,a.sscbpq,a.sscbb,a.xb,a.sj,a.zzdh,a.gzdw,a.bgdh, a.dzyx,a.zjlb,a.zjhm,a.sqrq, a.jdrq,a.yhzt,a.rks,a.hzgx,a.zsjb,a.tsbz,a.tsrq,a.htqd,a.htqdrq,a.htbh,a.bz,a.bz1,a.bz_gcbh,a.bz_pcxlh,a.czrybm,a.czryxm, a.czsj,a.psfz,a.pht,a.pgszz,a.pyyzz,a.pyxzj,a.xydj,a.zw,a.jdrybm,a.jdryxm,a.jdpcxlh,a.sfqz,a.cbryxm,a.xh, a.ssregion,a.xgrybm,a.jtzqljl,a.fplx, (case when a.fplx='1' then '普票' when a.fplx='2' then '专票' else '' end) fplxmc, a.fp_name, a.fp_nsrsbh, a.fp_dz, a.fp_lxdh, a.fp_bankname, a.fp_bankcode, a.fp_bz, a.fffs,h.name AS fffsmc, a.khlb,a.pyjm,a.yljl, g.mc AS ssgsmc, e.cbpqmc AS sscbpqmc, f.cbbmc AS sscbbmc, d.name AS sblbmc,b.sbqs, b.sbbh,b.sblb,b.sbsccj,b.sbxh,b.sbkj,b.sblc,b.jddj,b.cbpl,b.bjwz,b.sbccrq,c.name || (select '|'||name from bm_sj where code=b.sjbm1)||(select '|'||name from bm_sj where code=b.sjbm2) sjmc,k.scds,k.bcds,k.cbxh, nvl(j.yfje,0) yfje, nvl(j.kjje,0) kjje, nvl(j.syje,0) syje, nvl(j.nbsyje,0) nbsyje, a.khbm,a.ysdz,a.wybz FROM yh_khjbxx a LEFT JOIN yh_cbkxx b ON a.yhbh = b.yhbh AND b.cbkh='1' LEFT JOIN bm_sj c on b.sjbm=c.code LEFT JOIN bm_sblb d on b.sblb=d.code LEFT JOIN bm_cbpq e on a.sscbpq=e.cbpqbm LEFT JOIN bm_cbb f on a.sscbb=f.cbbbm LEFT JOIN bm_gs g on a.ssgs=g.bm LEFT JOIN bm_fffs h on a.fffs=h.code LEFT JOIN yy_cblr k on a.yhbh=k.yhbh and b.cbkh=k.cbkh LEFT JOIN yy_zjzh j on a.yhbh=j.yhbh WHERE 1=1 AND a.sscbb in(select cbbbm from yh_sjqx where user_id=?) ORDER BY a.yhbh asc ) TMP WHERE ROWNUM <=?) WHERE ROW_ID > ?
- 2026-04-15 19:10:12.323 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.getPage2 - ==> Parameters: 10753(String), 20(Long), 0(Long)
- 2026-04-15 19:10:13.077 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.getPage2 - <== Total: 20
- 2026-04-15 19:10:13.078 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:13.078 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010001(String)
- 2026-04-15 19:10:13.104 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:10:13.105 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:13.105 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010001(String)
- 2026-04-15 19:10:13.375 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:10:13.376 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:13.376 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010002(String)
- 2026-04-15 19:10:13.400 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:10:13.400 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:13.400 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010002(String)
- 2026-04-15 19:10:13.426 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:10:13.426 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:13.426 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010003(String)
- 2026-04-15 19:10:13.455 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:10:13.456 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:13.457 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010003(String)
- 2026-04-15 19:10:13.487 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:10:13.487 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:13.487 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010004(String)
- 2026-04-15 19:10:13.509 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:10:13.510 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:13.510 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010004(String)
- 2026-04-15 19:10:13.539 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:10:13.539 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:13.539 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010005(String)
- 2026-04-15 19:10:13.564 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:10:13.565 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:13.565 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010005(String)
- 2026-04-15 19:10:13.593 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:10:13.593 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:13.593 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010006(String)
- 2026-04-15 19:10:13.621 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:10:13.622 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:13.622 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010006(String)
- 2026-04-15 19:10:13.649 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:10:13.650 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:13.650 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010007(String)
- 2026-04-15 19:10:13.674 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:10:13.675 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:13.676 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010007(String)
- 2026-04-15 19:10:13.703 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:10:13.704 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:13.704 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010008(String)
- 2026-04-15 19:10:13.732 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:10:13.732 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:13.733 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010008(String)
- 2026-04-15 19:10:13.762 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:10:13.762 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:13.762 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010009(String)
- 2026-04-15 19:10:13.787 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:10:13.788 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:13.789 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010009(String)
- 2026-04-15 19:10:13.808 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:10:13.808 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:13.809 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010010(String)
- 2026-04-15 19:10:13.832 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:10:13.833 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:13.833 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010010(String)
- 2026-04-15 19:10:13.860 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:10:13.861 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:13.861 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010011(String)
- 2026-04-15 19:10:13.889 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:10:13.890 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:13.890 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010011(String)
- 2026-04-15 19:10:13.917 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:10:13.917 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:13.917 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010012(String)
- 2026-04-15 19:10:13.942 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:10:13.942 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:13.943 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010012(String)
- 2026-04-15 19:10:13.966 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:10:13.967 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:13.967 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010013(String)
- 2026-04-15 19:10:13.989 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:10:13.989 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:13.989 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010013(String)
- 2026-04-15 19:10:14.014 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:10:14.014 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:14.015 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010014(String)
- 2026-04-15 19:10:14.036 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:10:14.036 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:14.036 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010014(String)
- 2026-04-15 19:10:14.057 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:10:14.058 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:14.058 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010015(String)
- 2026-04-15 19:10:14.079 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:10:14.080 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:14.080 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010015(String)
- 2026-04-15 19:10:14.102 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:10:14.103 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:14.103 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010016(String)
- 2026-04-15 19:10:14.124 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:10:14.125 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:14.125 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010016(String)
- 2026-04-15 19:10:14.149 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:10:14.149 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:14.149 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010017(String)
- 2026-04-15 19:10:14.176 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:10:14.176 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:14.176 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010017(String)
- 2026-04-15 19:10:14.197 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:10:14.197 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:14.197 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010018(String)
- 2026-04-15 19:10:14.222 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:10:14.223 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:14.223 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010018(String)
- 2026-04-15 19:10:14.251 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:10:14.252 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:14.252 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010019(String)
- 2026-04-15 19:10:14.280 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:10:14.281 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:14.281 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010019(String)
- 2026-04-15 19:10:14.303 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:10:14.304 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:14.304 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010020(String)
- 2026-04-15 19:10:14.345 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:10:14.345 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:14.345 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010020(String)
- 2026-04-15 19:10:14.373 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:10:14.374 [XNIO-1 task-1] INFO c.t.feesapi.common.LogRecordAspect - =================【getPage2】请求结束==================
- 2026-04-15 19:10:23.026 [XNIO-1 task-2] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/api/yhgl/yhkhjbxx/page2/getPage2】请求开始==================
- 2026-04-15 19:10:23.037 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.getPage2_mpCount - ==> Preparing: SELECT COUNT(*) AS total FROM yh_khjbxx a WHERE 1 = 1 AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?)
- 2026-04-15 19:10:23.037 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.getPage2_mpCount - ==> Parameters: 10753(String)
- 2026-04-15 19:10:23.089 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.getPage2_mpCount - <== Total: 1
- 2026-04-15 19:10:23.092 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.getPage2 - ==> Preparing: SELECT * FROM ( SELECT TMP.*, ROWNUM ROW_ID FROM ( SELECT a.yhbh,a.ykhbh, a.yhxm,a.yhdz,a.lxdh, a.ssgs,a.sscbpq,a.sscbb,a.xb,a.sj,a.zzdh,a.gzdw,a.bgdh, a.dzyx,a.zjlb,a.zjhm,a.sqrq, a.jdrq,a.yhzt,a.rks,a.hzgx,a.zsjb,a.tsbz,a.tsrq,a.htqd,a.htqdrq,a.htbh,a.bz,a.bz1,a.bz_gcbh,a.bz_pcxlh,a.czrybm,a.czryxm, a.czsj,a.psfz,a.pht,a.pgszz,a.pyyzz,a.pyxzj,a.xydj,a.zw,a.jdrybm,a.jdryxm,a.jdpcxlh,a.sfqz,a.cbryxm,a.xh, a.ssregion,a.xgrybm,a.jtzqljl,a.fplx, (case when a.fplx='1' then '普票' when a.fplx='2' then '专票' else '' end) fplxmc, a.fp_name, a.fp_nsrsbh, a.fp_dz, a.fp_lxdh, a.fp_bankname, a.fp_bankcode, a.fp_bz, a.fffs,h.name AS fffsmc, a.khlb,a.pyjm,a.yljl, g.mc AS ssgsmc, e.cbpqmc AS sscbpqmc, f.cbbmc AS sscbbmc, d.name AS sblbmc,b.sbqs, b.sbbh,b.sblb,b.sbsccj,b.sbxh,b.sbkj,b.sblc,b.jddj,b.cbpl,b.bjwz,b.sbccrq,c.name || (select '|'||name from bm_sj where code=b.sjbm1)||(select '|'||name from bm_sj where code=b.sjbm2) sjmc,k.scds,k.bcds,k.cbxh, nvl(j.yfje,0) yfje, nvl(j.kjje,0) kjje, nvl(j.syje,0) syje, nvl(j.nbsyje,0) nbsyje, a.khbm,a.ysdz,a.wybz FROM yh_khjbxx a LEFT JOIN yh_cbkxx b ON a.yhbh = b.yhbh AND b.cbkh='1' LEFT JOIN bm_sj c on b.sjbm=c.code LEFT JOIN bm_sblb d on b.sblb=d.code LEFT JOIN bm_cbpq e on a.sscbpq=e.cbpqbm LEFT JOIN bm_cbb f on a.sscbb=f.cbbbm LEFT JOIN bm_gs g on a.ssgs=g.bm LEFT JOIN bm_fffs h on a.fffs=h.code LEFT JOIN yy_cblr k on a.yhbh=k.yhbh and b.cbkh=k.cbkh LEFT JOIN yy_zjzh j on a.yhbh=j.yhbh WHERE 1=1 AND a.sscbb in(select cbbbm from yh_sjqx where user_id=?) ORDER BY a.yhbh asc ) TMP WHERE ROWNUM <=?) WHERE ROW_ID > ?
- 2026-04-15 19:10:23.092 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.getPage2 - ==> Parameters: 10753(String), 20(Long), 0(Long)
- 2026-04-15 19:10:23.738 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.getPage2 - <== Total: 20
- 2026-04-15 19:10:23.739 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:23.739 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010001(String)
- 2026-04-15 19:10:23.762 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:10:23.763 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:23.763 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010001(String)
- 2026-04-15 19:10:23.784 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:10:23.784 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:23.785 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010002(String)
- 2026-04-15 19:10:23.806 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:10:23.807 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:23.807 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010002(String)
- 2026-04-15 19:10:23.828 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:10:23.829 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:23.829 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010003(String)
- 2026-04-15 19:10:23.850 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:10:23.851 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:23.851 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010003(String)
- 2026-04-15 19:10:23.872 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:10:23.872 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:23.873 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010004(String)
- 2026-04-15 19:10:23.893 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:10:23.893 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:23.893 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010004(String)
- 2026-04-15 19:10:23.916 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:10:23.916 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:23.916 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010005(String)
- 2026-04-15 19:10:23.938 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:10:23.938 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:23.938 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010005(String)
- 2026-04-15 19:10:23.958 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:10:23.959 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:23.959 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010006(String)
- 2026-04-15 19:10:23.981 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:10:23.982 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:23.982 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010006(String)
- 2026-04-15 19:10:24.004 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:10:24.004 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:24.005 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010007(String)
- 2026-04-15 19:10:24.027 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:10:24.028 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:24.028 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010007(String)
- 2026-04-15 19:10:24.051 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:10:24.052 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:24.052 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010008(String)
- 2026-04-15 19:10:24.073 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:10:24.074 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:24.074 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010008(String)
- 2026-04-15 19:10:24.095 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:10:24.096 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:24.096 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010009(String)
- 2026-04-15 19:10:24.116 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:10:24.117 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:24.117 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010009(String)
- 2026-04-15 19:10:24.138 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:10:24.138 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:24.138 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010010(String)
- 2026-04-15 19:10:24.164 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:10:24.164 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:24.165 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010010(String)
- 2026-04-15 19:10:24.186 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:10:24.187 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:24.187 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010011(String)
- 2026-04-15 19:10:24.208 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:10:24.208 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:24.209 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010011(String)
- 2026-04-15 19:10:24.229 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:10:24.230 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:24.230 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010012(String)
- 2026-04-15 19:10:24.253 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:10:24.253 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:24.253 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010012(String)
- 2026-04-15 19:10:24.274 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:10:24.275 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:24.275 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010013(String)
- 2026-04-15 19:10:24.303 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:10:24.303 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:24.303 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010013(String)
- 2026-04-15 19:10:24.325 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:10:24.325 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:24.325 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010014(String)
- 2026-04-15 19:10:24.346 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:10:24.347 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:24.347 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010014(String)
- 2026-04-15 19:10:24.368 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:10:24.369 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:24.369 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010015(String)
- 2026-04-15 19:10:24.391 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:10:24.391 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:24.391 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010015(String)
- 2026-04-15 19:10:24.413 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:10:24.414 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:24.414 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010016(String)
- 2026-04-15 19:10:24.435 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:10:24.436 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:24.436 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010016(String)
- 2026-04-15 19:10:24.458 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:10:24.459 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:24.459 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010017(String)
- 2026-04-15 19:10:24.481 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:10:24.481 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:24.481 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010017(String)
- 2026-04-15 19:10:24.502 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:10:24.503 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:24.503 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010018(String)
- 2026-04-15 19:10:24.524 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:10:24.524 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:24.524 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010018(String)
- 2026-04-15 19:10:24.545 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:10:24.546 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:24.546 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010019(String)
- 2026-04-15 19:10:24.566 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:10:24.566 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:24.566 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010019(String)
- 2026-04-15 19:10:24.588 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:10:24.588 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:24.588 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: 10010020(String)
- 2026-04-15 19:10:24.610 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:10:24.610 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:10:24.610 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: 10010020(String)
- 2026-04-15 19:10:24.631 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:10:24.631 [XNIO-1 task-2] INFO c.t.feesapi.common.LogRecordAspect - =================【getPage2】请求结束==================
- 2026-04-15 19:11:37.911 [XNIO-1 task-3] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/api/yhgl/yhkhjbxx/page2/getPage2】请求开始==================
- 2026-04-15 19:11:37.911 [XNIO-1 task-3] INFO c.t.feesapi.common.LogRecordAspect - =================【getPage2】请求结束==================
- 2026-04-15 19:11:37.917 [XNIO-1 task-3] ERROR c.t.f.c.e.FeesErrorResponseHandler - **未知错误**
- java.lang.NullPointerException: null
- at com.tofly.feesapi.yhgl.controller.YhKhjbxxController.getPage2(YhKhjbxxController.java:376)
- at com.tofly.feesapi.yhgl.controller.YhKhjbxxController$$FastClassBySpringCGLIB$$8bb757dc.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.yhgl.controller.YhKhjbxxController$$EnhancerBySpringCGLIB$$1416d7ad.getPage2(<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)
- 2026-04-15 19:12:53.735 [SpringContextShutdownHook] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'taskScheduler'
- 2026-04-15 19:12:53.745 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registering from Nacos Server now...
- 2026-04-15 19:12:53.793 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registration finished.
- 2026-04-15 19:12:53.794 [SpringContextShutdownHook] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'taskScheduler'
- 2026-04-15 19:12:54.403 [SpringContextShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource start closing ....
- 2026-04-15 19:12:54.412 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-2} closing ...
- 2026-04-15 19:12:54.469 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-2} closed
- 2026-04-15 19:12:54.470 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-3} closing ...
- 2026-04-15 19:12:54.532 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-3} closed
- 2026-04-15 19:12:54.532 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closing ...
- 2026-04-15 19:12:54.557 [SpringContextShutdownHook] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1} closed
- 2026-04-15 19:12:54.557 [SpringContextShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource all closed success,bye
- 2026-04-15 19:12:54.561 [SpringContextShutdownHook] INFO io.undertow.servlet - Destroying Spring FrameworkServlet 'dispatcherServlet'
- 2026-04-15 19:12:54.562 [SpringContextShutdownHook] INFO io.undertow - stopping server: Undertow - 2.0.31.Final
- 2026-04-15 19:13:09.263 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.0.20.Final
- 2026-04-15 19:13:09.600 [background-preinit] WARN o.s.h.c.j.Jackson2ObjectMapperBuilder - For Jackson Kotlin classes support please add "com.fasterxml.jackson.module:jackson-module-kotlin" to the classpath
- 2026-04-15 19:13:10.044 [main] WARN c.a.c.n.c.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[collect-fees-api] & group[DEFAULT_GROUP]
- 2026-04-15 19:13:10.056 [main] WARN c.a.c.n.c.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[collect-fees-api-gs.yaml] & group[DEFAULT_GROUP]
- 2026-04-15 19:13:10.057 [main] INFO o.s.c.b.c.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-collect-fees-api-gs.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-collect-fees-api.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-collect-fees-api,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-public_config_redis.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-public_config_oracle.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-public_config_public.yaml,DEFAULT_GROUP'}]
- 2026-04-15 19:13:10.062 [main] INFO com.tofly.feesapi.FeesApiApplication - The following profiles are active: gs
- 2026-04-15 19:13:11.965 [main] WARN o.s.boot.actuate.endpoint.EndpointId - Endpoint ID 'nacos-config' contains invalid characters, please migrate to a valid format.
- 2026-04-15 19:13:11.968 [main] WARN o.s.boot.actuate.endpoint.EndpointId - Endpoint ID 'nacos-discovery' contains invalid characters, please migrate to a valid format.
- 2026-04-15 19:13:12.182 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode!
- 2026-04-15 19:13:12.184 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
- 2026-04-15 19:13:12.442 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 195ms. Found 0 Redis repository interfaces.
- 2026-04-15 19:13:12.533 [main] WARN o.s.boot.actuate.endpoint.EndpointId - Endpoint ID 'service-registry' contains invalid characters, please migrate to a valid format.
- 2026-04-15 19:13:12.685 [main] DEBUG org.apache.ibatis.logging.LogFactory - Logging initialized using 'class org.apache.ibatis.logging.slf4j.Slf4jImpl' adapter.
- 2026-04-15 19:13:13.261 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhBjflFbMapper' and 'com.tofly.feesapi.bjgl.mapper.YhBjflFbMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.261 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhBjflZbMapper' and 'com.tofly.feesapi.bjgl.mapper.YhBjflZbMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.261 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhCbkxxLogMapper' and 'com.tofly.feesapi.bjgl.mapper.YhCbkxxLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.261 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhCbkxxMapper' and 'com.tofly.feesapi.bjgl.mapper.YhCbkxxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.261 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhbglMapper' and 'com.tofly.feesapi.bjgl.mapper.YhbglMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.261 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'ykHbLogMapper' and 'com.tofly.feesapi.bjgl.mapper.YkHbLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.261 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'ykYhbgHbMapper' and 'com.tofly.feesapi.bjgl.mapper.YkYhbgHbMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.261 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmCbbMapper' and 'com.tofly.feesapi.bmgl.mapper.BmCbbMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.261 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmCbfsMapper' and 'com.tofly.feesapi.bmgl.mapper.BmCbfsMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.261 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmCblxMapper' and 'com.tofly.feesapi.bmgl.mapper.BmCblxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.261 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmCbplMapper' and 'com.tofly.feesapi.bmgl.mapper.BmCbplMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.261 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmCbpqMapper' and 'com.tofly.feesapi.bmgl.mapper.BmCbpqMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.261 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmDbhysyhMapper' and 'com.tofly.feesapi.bmgl.mapper.BmDbhysyhMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.261 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmFffsMapper' and 'com.tofly.feesapi.bmgl.mapper.BmFffsMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.261 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmFylxMapper' and 'com.tofly.feesapi.bmgl.mapper.BmFylxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.261 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmGsMapper' and 'com.tofly.feesapi.bmgl.mapper.BmGsMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.262 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSblbMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSblbMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.262 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSbsccjMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSbsccjMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.262 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSbxhMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSbxhMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.262 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSearchMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSearchMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.262 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSflxMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSflxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.262 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSfqdMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSfqdMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.262 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSjMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSjMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.262 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSjlsMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSjlsMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.262 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmYmjzConfigLsMapper' and 'com.tofly.feesapi.bmgl.mapper.BmYmjzConfigLsMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.262 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmYmjzConfigMapper' and 'com.tofly.feesapi.bmgl.mapper.BmYmjzConfigMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.262 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmYslxMapper' and 'com.tofly.feesapi.bmgl.mapper.BmYslxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.262 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'cbbConfigMapper' and 'com.tofly.feesapi.bmgl.mapper.CbbConfigMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.263 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysChildCodeMapper' and 'com.tofly.feesapi.bmgl.mapper.SysChildCodeMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.263 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysParentCodeMapper' and 'com.tofly.feesapi.bmgl.mapper.SysParentCodeMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.263 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyCblrLsMapper' and 'com.tofly.feesapi.cbgl.mapper.YyCblrLsMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.263 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyCblrMapper' and 'com.tofly.feesapi.cbgl.mapper.YyCblrMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.263 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbCbDayMapper' and 'com.tofly.feesapi.cbgl.mapper.ZnbCbDayMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.263 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbCbLogMapper' and 'com.tofly.feesapi.cbgl.mapper.ZnbCbLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.263 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbZlLogMapper' and 'com.tofly.feesapi.cbgl.mapper.ZnbZlLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.263 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'commonMapper' and 'com.tofly.feesapi.common.mapper.CommonMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.263 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiFpkjMxMapper' and 'com.tofly.feesapi.dzfp.mapper.EiFpkjMxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.263 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiFpkjRequestMapper' and 'com.tofly.feesapi.dzfp.mapper.EiFpkjRequestMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.263 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiSalerConfigMapper' and 'com.tofly.feesapi.dzfp.mapper.EiSalerConfigMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.264 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiSpbmMapper' and 'com.tofly.feesapi.dzfp.mapper.EiSpbmMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.264 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiYkfpLogMapper' and 'com.tofly.feesapi.dzfp.mapper.EiYkfpLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.264 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'htFilesMapper' and 'com.tofly.feesapi.dzht.mapper.HtFilesMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.264 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'htTemplateMapper' and 'com.tofly.feesapi.dzht.mapper.HtTemplateMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.264 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'fileMapper' and 'com.tofly.feesapi.file.mapper.FileMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.264 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'flowMapper' and 'com.tofly.feesapi.flowdb.mapper.FlowMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.264 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyBgLogMapper' and 'com.tofly.feesapi.mxcx.mapper.YyBgLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.264 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bankDsdzhzMapper' and 'com.tofly.feesapi.sfds.mapper.BankDsdzhzMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.264 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bankDsdzxxMapper' and 'com.tofly.feesapi.sfds.mapper.BankDsdzxxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.264 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'plsfkhxxMapper' and 'com.tofly.feesapi.sfgl.mapper.PlsfkhxxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.264 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyPjbhMapper' and 'com.tofly.feesapi.sfgl.mapper.YyPjbhMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.264 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyQfmxCzlsMapper' and 'com.tofly.feesapi.sfgl.mapper.YyQfmxCzlsMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.264 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyQfmxDzmxMapper' and 'com.tofly.feesapi.sfgl.mapper.YyQfmxDzmxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.264 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyQfmxGdMapper' and 'com.tofly.feesapi.sfgl.mapper.YyQfmxGdMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.264 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyQfmxMapper' and 'com.tofly.feesapi.sfgl.mapper.YyQfmxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.264 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yySspjxxMapper' and 'com.tofly.feesapi.sfgl.mapper.YySspjxxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.264 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yySspjxxReportMapper' and 'com.tofly.feesapi.sfgl.mapper.YySspjxxReportMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.264 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyWyjjmrqMapper' and 'com.tofly.feesapi.sfgl.mapper.YyWyjjmrqMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.264 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyWyjtzMapper' and 'com.tofly.feesapi.sfgl.mapper.YyWyjtzMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.264 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbCsjsLogMapper' and 'com.tofly.feesapi.sfgl.mapper.ZnbCsjsLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.264 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'smsMessageMapper' and 'com.tofly.feesapi.sms.mapper.SmsMessageMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.264 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'smsTxlxMapper' and 'com.tofly.feesapi.sms.mapper.SmsTxlxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.264 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'companyMapper' and 'com.tofly.feesapi.udb.mapper.CompanyMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.264 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.tofly.feesapi.udb.mapper.UserMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.264 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userRoleMapper' and 'com.tofly.feesapi.udb.mapper.UserRoleMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.264 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxDtbmMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxDtbmMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.264 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxFwtzMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxFwtzMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.264 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxMessageMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxMessageMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.264 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxTokenMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxTokenMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.264 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxTstzMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxTstzMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.264 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxUserLsMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxUserLsMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.264 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxUserMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxUserMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.264 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxYwxzMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxYwxzMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.265 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxYwxzbmMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxYwxzbmMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.266 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxBtsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxBtsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.266 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxBzsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxBzsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.266 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxDbsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxDbsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.266 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxGhsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxGhsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.266 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxGsdtMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxGsdtMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.266 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxHfsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxHfsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.266 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxLwsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxLwsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.266 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxLxdhsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxLxdhsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.266 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxRkssqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxRkssqMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.266 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxWdMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxWdMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.266 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxWdbmMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxWdbmMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.266 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxWzjbsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxWzjbsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.266 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxXbsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxXbsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.266 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxXhsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxXhsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.266 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'paySelectMapper' and 'com.tofly.feesapi.wxgl.wechatpay.mapper.PaySelectMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.266 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysGdcsbMapper' and 'com.tofly.feesapi.xtgl.mapper.SysGdcsbMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.266 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'syscommlogMapper' and 'com.tofly.feesapi.xtgl.mapper.SyscommlogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.266 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhBtLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhBtLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.266 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhFfgxMapper' and 'com.tofly.feesapi.yhgl.mapper.YhFfgxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.266 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhGhLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhGhLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.266 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhGroupAccountsMapper' and 'com.tofly.feesapi.yhgl.mapper.YhGroupAccountsMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.266 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhGroupMapper' and 'com.tofly.feesapi.yhgl.mapper.YhGroupMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.266 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhHfysLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhHfysLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.267 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhKhjbxxDbhlsMapper' and 'com.tofly.feesapi.yhgl.mapper.YhKhjbxxDbhlsMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.267 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhKhjbxxLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhKhjbxxLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.267 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhKhjbxxMapper' and 'com.tofly.feesapi.yhgl.mapper.YhKhjbxxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.267 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhXzbgLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhXzbgLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.267 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhhLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhhLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.267 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhsjqxMapper' and 'com.tofly.feesapi.yhgl.mapper.YhsjqxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.267 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyZjzhMapper' and 'com.tofly.feesapi.yhgl.mapper.YyZjzhMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.267 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbDaLogMapper' and 'com.tofly.feesapi.znbgl.mapper.ZnbDaLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.267 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbYhdaMapper' and 'com.tofly.feesapi.znbgl.mapper.ZnbYhdaMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:13:13.267 [main] WARN o.m.s.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.tofly.feesapi.**.mapper]' package. Please check your configuration.
- 2026-04-15 19:13:13.487 [main] INFO o.s.cloud.context.scope.GenericScope - BeanFactory id=b96e5894-f128-35d3-aafc-41fccadba59b
- 2026-04-15 19:13:13.570 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.tofly.feesapi.common.feign.UserClient' of type [org.springframework.cloud.openfeign.FeignClientFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-04-15 19:13:13.888 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.datasource.dynamic-com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-04-15 19:13:13.899 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$dff961c6] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-04-15 19:13:13.918 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'dsProcessor' of type [com.baomidou.dynamic.datasource.processor.DsHeaderProcessor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-04-15 19:13:13.943 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@73bb573d' of type [org.springframework.security.oauth2.provider.expression.OAuth2MethodSecurityExpressionHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-04-15 19:13:13.955 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'methodSecurityMetadataSource' of type [org.springframework.security.access.method.DelegatingMethodSecurityMetadataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-04-15 19:13:14.221 [main] WARN io.undertow.websockets.jsr - UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
- 2026-04-15 19:13:14.250 [main] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
- 2026-04-15 19:13:14.250 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 4171 ms
- 2026-04-15 19:13:18.172 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1,master} inited
- 2026-04-15 19:13:23.694 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-2,udb} inited
- 2026-04-15 19:13:29.945 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-3,flowDB} inited
- 2026-04-15 19:13:29.946 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [udb] success
- 2026-04-15 19:13:29.946 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [flowDB] success
- 2026-04-15 19:13:29.946 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
- 2026-04-15 19:13:29.946 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [3] datasource,primary datasource named [master]
- 2026-04-15 19:13:31.253 [main] WARN c.b.m.core.injector.AbstractMethod - [com.tofly.feesapi.bmgl.mapper.SysParentCodeMapper.selectCount] Has been loaded by XML or SqlProvider or Mybatis's Annotation, so ignoring this injection for [class com.baomidou.mybatisplus.core.injector.methods.SelectCount]
- 2026-04-15 19:13:31.553 [main] WARN c.b.m.core.injector.AbstractMethod - [com.tofly.feesapi.flowdb.mapper.FlowMapper.updateById] Has been loaded by XML or SqlProvider or Mybatis's Annotation, so ignoring this injection for [class com.baomidou.mybatisplus.core.injector.methods.UpdateById]
- 2026-04-15 19:13:32.388 [main] WARN c.b.m.core.metadata.TableInfoHelper - Can not find table primary key in Class: "com.tofly.feesapi.wxgl.wechatpay.entity.PaySelect".
- 2026-04-15 19:13:32.388 [main] WARN c.b.m.c.injector.DefaultSqlInjector - class com.tofly.feesapi.wxgl.wechatpay.entity.PaySelect ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method.
- 2026-04-15 19:13:32.398 [main] WARN c.b.m.core.metadata.TableInfoHelper - Can not find table primary key in Class: "com.tofly.feesapi.xtgl.entity.SysGdcsb".
- 2026-04-15 19:13:32.399 [main] WARN c.b.m.c.injector.DefaultSqlInjector - class com.tofly.feesapi.xtgl.entity.SysGdcsb ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method.
- 2026-04-15 19:13:36.368 [main] INFO org.redisson.Version - Redisson 3.23.2
- 2026-04-15 19:13:37.242 [redisson-netty-2-4] INFO o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 127.0.0.1/127.0.0.1:6379
- 2026-04-15 19:13:37.287 [redisson-netty-2-19] INFO o.r.c.pool.MasterConnectionPool - 24 connections initialized for 127.0.0.1/127.0.0.1:6379
- 2026-04-15 19:13:42.858 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 19 endpoint(s) beneath base path '/actuator'
- 2026-04-15 19:13:42.954 [main] INFO s.d.s.w.WebMvcPropertySourcedRequestMappingHandlerMapping - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
- 2026-04-15 19:13:43.114 [main] INFO c.n.c.sources.URLConfigurationSource - URLs to be used as dynamic configuration source: [file:/D:/work/tf/%e5%b1%b1%e4%b8%9c%e8%8e%b1%e9%98%b3%e6%b0%b4%e5%8f%b8/%e8%8e%b1%e9%98%b3%e6%99%ba%e6%85%a7%e6%b0%b4%e5%8a%a1JAVA%e8%90%a5%e9%94%80/20260403/lywebmis/collect_fees_ly_api/fees-ly-api/target/classes/config.properties]
- 2026-04-15 19:13:43.122 [main] INFO c.n.c.sources.URLConfigurationSource - URLs to be used as dynamic configuration source: [file:/D:/work/tf/%e5%b1%b1%e4%b8%9c%e8%8e%b1%e9%98%b3%e6%b0%b4%e5%8f%b8/%e8%8e%b1%e9%98%b3%e6%99%ba%e6%85%a7%e6%b0%b4%e5%8a%a1JAVA%e8%90%a5%e9%94%80/20260403/lywebmis/collect_fees_ly_api/fees-ly-api/target/classes/config.properties]
- 2026-04-15 19:13:43.360 [main] INFO o.s.s.c.ThreadPoolTaskScheduler - Initializing ExecutorService 'taskScheduler'
- 2026-04-15 19:13:43.531 [main] INFO o.s.b.a.s.s.UserDetailsServiceAutoConfiguration -
- Using generated security password: 853009e1-4723-4238-b6ed-454fe830ebd2
- 2026-04-15 19:13:43.619 [main] INFO o.s.s.web.DefaultSecurityFilterChain - Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@3077e4aa, org.springframework.security.web.context.SecurityContextPersistenceFilter@45dc4d1a, org.springframework.security.web.header.HeaderWriterFilter@43bda665, org.springframework.security.web.authentication.logout.LogoutFilter@7537f638, org.springframework.security.oauth2.provider.authentication.OAuth2AuthenticationProcessingFilter@4f1fb8fc, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@60a98fa6, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@2495a351, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@3518882c, org.springframework.security.web.session.SessionManagementFilter@2dc4b58a, org.springframework.security.web.access.ExceptionTranslationFilter@6988dc14, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@5bb1c104]
- 2026-04-15 19:13:44.151 [main] WARN o.s.c.s.o.SpringCloudSecurityAutoConfiguration - All Spring Cloud Security modules and starters are deprecated. They will be moved to individual projects in the next major release.
- 2026-04-15 19:13:44.287 [main] INFO s.d.s.w.p.DocumentationPluginsBootstrapper - Documentation plugins bootstrapped
- 2026-04-15 19:13:44.289 [main] INFO s.d.s.w.p.DocumentationPluginsBootstrapper - Found 1 custom documentation plugin(s)
- 2026-04-15 19:13:44.416 [main] INFO s.d.s.w.s.ApiListingReferenceScanner - Scanning for api listing references
- 2026-04-15 19:13:44.812 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_1
- 2026-04-15 19:13:44.817 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_1
- 2026-04-15 19:13:44.818 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_1
- 2026-04-15 19:13:44.819 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_1
- 2026-04-15 19:13:44.823 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_1
- 2026-04-15 19:13:44.824 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_1
- 2026-04-15 19:13:44.850 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: addCustomerUsingPOST_1
- 2026-04-15 19:13:44.851 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: deleteCustomerUsingPOST_1
- 2026-04-15 19:13:44.852 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getBindCustomerUsingGET_1
- 2026-04-15 19:13:44.852 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: selectCustomerUsingGET_1
- 2026-04-15 19:13:44.854 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getBindCustomerAndQfUsingGET_1
- 2026-04-15 19:13:44.855 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerBasicInFoUsingGET_1
- 2026-04-15 19:13:44.856 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerChargeInFoUsingGET_1
- 2026-04-15 19:13:44.857 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerInFoUsingGET_1
- 2026-04-15 19:13:44.858 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerQfInFoUsingGET_1
- 2026-04-15 19:13:44.859 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerReadMeterInFoUsingGET_1
- 2026-04-15 19:13:44.872 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_2
- 2026-04-15 19:13:44.901 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_2
- 2026-04-15 19:13:44.903 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_2
- 2026-04-15 19:13:44.905 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_2
- 2026-04-15 19:13:44.913 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_2
- 2026-04-15 19:13:44.916 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_2
- 2026-04-15 19:13:44.938 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_3
- 2026-04-15 19:13:44.940 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_3
- 2026-04-15 19:13:44.940 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_3
- 2026-04-15 19:13:44.943 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_3
- 2026-04-15 19:13:44.944 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_3
- 2026-04-15 19:13:44.950 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_3
- 2026-04-15 19:13:44.957 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_4
- 2026-04-15 19:13:44.958 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_4
- 2026-04-15 19:13:44.959 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_4
- 2026-04-15 19:13:44.962 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_4
- 2026-04-15 19:13:44.963 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_4
- 2026-04-15 19:13:44.966 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_5
- 2026-04-15 19:13:44.967 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_5
- 2026-04-15 19:13:44.968 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_5
- 2026-04-15 19:13:44.972 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_5
- 2026-04-15 19:13:44.973 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_5
- 2026-04-15 19:13:44.983 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_4
- 2026-04-15 19:13:44.989 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_6
- 2026-04-15 19:13:44.996 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_5
- 2026-04-15 19:13:44.997 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_6
- 2026-04-15 19:13:44.998 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_6
- 2026-04-15 19:13:45.002 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_6
- 2026-04-15 19:13:45.004 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_6
- 2026-04-15 19:13:45.007 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_1
- 2026-04-15 19:13:45.015 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_7
- 2026-04-15 19:13:45.016 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_7
- 2026-04-15 19:13:45.018 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_7
- 2026-04-15 19:13:45.023 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_7
- 2026-04-15 19:13:45.025 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_7
- 2026-04-15 19:13:45.029 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_8
- 2026-04-15 19:13:45.030 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getFffsListUsingGET_1
- 2026-04-15 19:13:45.031 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_8
- 2026-04-15 19:13:45.033 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_9
- 2026-04-15 19:13:45.036 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_8
- 2026-04-15 19:13:45.038 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_8
- 2026-04-15 19:13:45.045 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_2
- 2026-04-15 19:13:45.050 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_9
- 2026-04-15 19:13:45.052 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_10
- 2026-04-15 19:13:45.053 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_11
- 2026-04-15 19:13:45.056 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_9
- 2026-04-15 19:13:45.057 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_9
- 2026-04-15 19:13:45.062 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_10
- 2026-04-15 19:13:45.064 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_12
- 2026-04-15 19:13:45.065 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_13
- 2026-04-15 19:13:45.070 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_10
- 2026-04-15 19:13:45.071 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_10
- 2026-04-15 19:13:45.076 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_11
- 2026-04-15 19:13:45.077 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_14
- 2026-04-15 19:13:45.079 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_15
- 2026-04-15 19:13:45.083 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_11
- 2026-04-15 19:13:45.084 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_11
- 2026-04-15 19:13:45.092 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_12
- 2026-04-15 19:13:45.093 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_16
- 2026-04-15 19:13:45.094 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_8
- 2026-04-15 19:13:45.096 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_12
- 2026-04-15 19:13:45.096 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_12
- 2026-04-15 19:13:45.104 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_13
- 2026-04-15 19:13:45.106 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_17
- 2026-04-15 19:13:45.107 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_9
- 2026-04-15 19:13:45.111 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_13
- 2026-04-15 19:13:45.112 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_13
- 2026-04-15 19:13:45.117 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_14
- 2026-04-15 19:13:45.120 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_18
- 2026-04-15 19:13:45.121 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_19
- 2026-04-15 19:13:45.127 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_14
- 2026-04-15 19:13:45.129 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_14
- 2026-04-15 19:13:45.138 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_15
- 2026-04-15 19:13:45.155 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_6
- 2026-04-15 19:13:45.181 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_15
- 2026-04-15 19:13:45.188 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_3
- 2026-04-15 19:13:45.194 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_16
- 2026-04-15 19:13:45.195 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_20
- 2026-04-15 19:13:45.196 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_10
- 2026-04-15 19:13:45.198 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_16
- 2026-04-15 19:13:45.199 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_15
- 2026-04-15 19:13:45.205 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_17
- 2026-04-15 19:13:45.213 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_7
- 2026-04-15 19:13:45.214 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_21
- 2026-04-15 19:13:45.215 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_11
- 2026-04-15 19:13:45.217 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_17
- 2026-04-15 19:13:45.218 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_16
- 2026-04-15 19:13:45.234 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_8
- 2026-04-15 19:13:45.237 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveBatchUsingPOST_1
- 2026-04-15 19:13:45.365 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_18
- 2026-04-15 19:13:45.369 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_22
- 2026-04-15 19:13:45.370 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_12
- 2026-04-15 19:13:45.372 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_18
- 2026-04-15 19:13:45.373 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_17
- 2026-04-15 19:13:45.374 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_19
- 2026-04-15 19:13:45.376 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_23
- 2026-04-15 19:13:45.378 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_19
- 2026-04-15 19:13:45.379 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_18
- 2026-04-15 19:13:45.386 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_20
- 2026-04-15 19:13:45.387 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_24
- 2026-04-15 19:13:45.388 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_13
- 2026-04-15 19:13:45.390 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_20
- 2026-04-15 19:13:45.413 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: Xh_WordToPdfUsingPOST_1
- 2026-04-15 19:13:45.416 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_21
- 2026-04-15 19:13:45.425 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_25
- 2026-04-15 19:13:45.427 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_14
- 2026-04-15 19:13:45.431 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_21
- 2026-04-15 19:13:45.432 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_26
- 2026-04-15 19:13:45.433 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_15
- 2026-04-15 19:13:45.436 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_22
- 2026-04-15 19:13:45.437 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_19
- 2026-04-15 19:13:45.454 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_22
- 2026-04-15 19:13:45.541 [main] WARN s.d.s.w.r.p.ParameterTypeReader - @ModelAttribute annotated parameters should have already been expanded via the ExpandedParameterBuilderPlugin
- 2026-04-15 19:13:45.541 [main] WARN s.d.s.w.r.p.ParameterTypeReader - @ModelAttribute annotated parameters should have already been expanded via the ExpandedParameterBuilderPlugin
- 2026-04-15 19:13:45.549 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportYsqdUsingGET_1
- 2026-04-15 19:13:45.597 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_23
- 2026-04-15 19:13:45.598 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_27
- 2026-04-15 19:13:45.599 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_16
- 2026-04-15 19:13:45.618 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_24
- 2026-04-15 19:13:45.619 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_28
- 2026-04-15 19:13:45.620 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_17
- 2026-04-15 19:13:45.622 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_23
- 2026-04-15 19:13:45.624 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_20
- 2026-04-15 19:13:45.633 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_25
- 2026-04-15 19:13:45.638 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_29
- 2026-04-15 19:13:45.639 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_18
- 2026-04-15 19:13:45.641 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_24
- 2026-04-15 19:13:45.642 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_21
- 2026-04-15 19:13:45.644 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_26
- 2026-04-15 19:13:45.648 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_30
- 2026-04-15 19:13:45.649 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_19
- 2026-04-15 19:13:45.650 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_25
- 2026-04-15 19:13:45.651 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_22
- 2026-04-15 19:13:45.661 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_27
- 2026-04-15 19:13:45.666 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_31
- 2026-04-15 19:13:45.667 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_20
- 2026-04-15 19:13:45.670 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_26
- 2026-04-15 19:13:45.671 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_23
- 2026-04-15 19:13:45.679 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxBtsqPageUsingGET_1
- 2026-04-15 19:13:45.681 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_28
- 2026-04-15 19:13:45.685 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_32
- 2026-04-15 19:13:45.687 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_21
- 2026-04-15 19:13:45.690 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_27
- 2026-04-15 19:13:45.691 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_24
- 2026-04-15 19:13:45.694 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxBzsqPageUsingGET_1
- 2026-04-15 19:13:45.700 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_29
- 2026-04-15 19:13:45.704 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_33
- 2026-04-15 19:13:45.705 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_22
- 2026-04-15 19:13:45.708 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_28
- 2026-04-15 19:13:45.709 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_25
- 2026-04-15 19:13:45.715 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxDbsqPageUsingGET_1
- 2026-04-15 19:13:45.717 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPOST_1
- 2026-04-15 19:13:45.719 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_30
- 2026-04-15 19:13:45.723 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_34
- 2026-04-15 19:13:45.724 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_23
- 2026-04-15 19:13:45.725 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_29
- 2026-04-15 19:13:45.726 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_26
- 2026-04-15 19:13:45.728 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_31
- 2026-04-15 19:13:45.730 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_35
- 2026-04-15 19:13:45.731 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_24
- 2026-04-15 19:13:45.734 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_30
- 2026-04-15 19:13:45.736 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_27
- 2026-04-15 19:13:45.739 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_32
- 2026-04-15 19:13:45.740 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_36
- 2026-04-15 19:13:45.741 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_25
- 2026-04-15 19:13:45.744 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_31
- 2026-04-15 19:13:45.745 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_28
- 2026-04-15 19:13:45.754 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_33
- 2026-04-15 19:13:45.757 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_37
- 2026-04-15 19:13:45.758 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_38
- 2026-04-15 19:13:45.760 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_32
- 2026-04-15 19:13:45.761 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_29
- 2026-04-15 19:13:45.763 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_34
- 2026-04-15 19:13:45.769 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_39
- 2026-04-15 19:13:45.770 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_26
- 2026-04-15 19:13:45.773 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_33
- 2026-04-15 19:13:45.774 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_30
- 2026-04-15 19:13:45.781 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxHfsqPageUsingGET_1
- 2026-04-15 19:13:45.783 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_35
- 2026-04-15 19:13:45.787 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_40
- 2026-04-15 19:13:45.788 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_27
- 2026-04-15 19:13:45.791 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_34
- 2026-04-15 19:13:45.792 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_31
- 2026-04-15 19:13:45.799 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxLwsqPageUsingGET_1
- 2026-04-15 19:13:45.801 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_36
- 2026-04-15 19:13:45.807 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_41
- 2026-04-15 19:13:45.808 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_28
- 2026-04-15 19:13:45.811 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_35
- 2026-04-15 19:13:45.812 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_32
- 2026-04-15 19:13:45.818 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxLxdhsqPageUsingGET_1
- 2026-04-15 19:13:45.820 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_37
- 2026-04-15 19:13:45.826 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_42
- 2026-04-15 19:13:45.827 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_29
- 2026-04-15 19:13:45.832 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_36
- 2026-04-15 19:13:45.833 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_33
- 2026-04-15 19:13:45.844 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_38
- 2026-04-15 19:13:45.849 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_43
- 2026-04-15 19:13:45.850 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_30
- 2026-04-15 19:13:45.853 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_37
- 2026-04-15 19:13:45.854 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_34
- 2026-04-15 19:13:45.860 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxDbsqPageUsingGET_2
- 2026-04-15 19:13:45.868 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_1
- 2026-04-15 19:13:45.870 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_39
- 2026-04-15 19:13:45.874 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_44
- 2026-04-15 19:13:45.874 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_31
- 2026-04-15 19:13:45.879 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_38
- 2026-04-15 19:13:45.887 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_35
- 2026-04-15 19:13:45.888 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_40
- 2026-04-15 19:13:45.891 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_45
- 2026-04-15 19:13:45.892 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_32
- 2026-04-15 19:13:45.895 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_39
- 2026-04-15 19:13:45.896 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_36
- 2026-04-15 19:13:45.897 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_41
- 2026-04-15 19:13:45.900 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_46
- 2026-04-15 19:13:45.900 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_33
- 2026-04-15 19:13:45.904 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_40
- 2026-04-15 19:13:45.905 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_37
- 2026-04-15 19:13:45.906 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_42
- 2026-04-15 19:13:45.909 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_47
- 2026-04-15 19:13:45.910 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_48
- 2026-04-15 19:13:45.913 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_41
- 2026-04-15 19:13:45.914 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_38
- 2026-04-15 19:13:45.916 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_43
- 2026-04-15 19:13:45.920 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_49
- 2026-04-15 19:13:45.921 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_50
- 2026-04-15 19:13:45.923 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_42
- 2026-04-15 19:13:45.924 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_39
- 2026-04-15 19:13:45.926 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_44
- 2026-04-15 19:13:45.931 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_51
- 2026-04-15 19:13:45.932 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_34
- 2026-04-15 19:13:45.935 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_43
- 2026-04-15 19:13:45.936 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_40
- 2026-04-15 19:13:45.942 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxWzjbsqPageUsingGET_1
- 2026-04-15 19:13:45.944 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_45
- 2026-04-15 19:13:45.949 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_52
- 2026-04-15 19:13:45.950 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_35
- 2026-04-15 19:13:45.953 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_44
- 2026-04-15 19:13:45.954 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_41
- 2026-04-15 19:13:45.959 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxXbsqPageUsingGET_1
- 2026-04-15 19:13:45.961 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_46
- 2026-04-15 19:13:45.966 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_53
- 2026-04-15 19:13:45.967 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_36
- 2026-04-15 19:13:45.971 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_45
- 2026-04-15 19:13:45.972 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_42
- 2026-04-15 19:13:45.978 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxXhsqPageUsingGET_1
- 2026-04-15 19:13:45.979 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPOST_2
- 2026-04-15 19:13:45.980 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_47
- 2026-04-15 19:13:45.983 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_54
- 2026-04-15 19:13:45.984 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_37
- 2026-04-15 19:13:45.986 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_46
- 2026-04-15 19:13:45.987 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_43
- 2026-04-15 19:13:45.989 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_48
- 2026-04-15 19:13:45.993 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_55
- 2026-04-15 19:13:45.994 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_38
- 2026-04-15 19:13:45.996 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_47
- 2026-04-15 19:13:45.997 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_44
- 2026-04-15 19:13:46.003 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_9
- 2026-04-15 19:13:46.005 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_56
- 2026-04-15 19:13:46.005 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_39
- 2026-04-15 19:13:46.008 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_48
- 2026-04-15 19:13:46.009 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_57
- 2026-04-15 19:13:46.010 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_40
- 2026-04-15 19:13:46.012 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_49
- 2026-04-15 19:13:46.017 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_10
- 2026-04-15 19:13:46.019 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_49
- 2026-04-15 19:13:46.023 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_58
- 2026-04-15 19:13:46.024 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_41
- 2026-04-15 19:13:46.027 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_50
- 2026-04-15 19:13:46.030 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_45
- 2026-04-15 19:13:46.031 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_2
- 2026-04-15 19:13:46.048 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_51
- 2026-04-15 19:13:46.056 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_50
- 2026-04-15 19:13:46.064 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_11
- 2026-04-15 19:13:46.073 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_1
- 2026-04-15 19:13:46.082 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_51
- 2026-04-15 19:13:46.082 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_42
- 2026-04-15 19:13:46.101 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_52
- 2026-04-15 19:13:46.106 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_59
- 2026-04-15 19:13:46.107 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_43
- 2026-04-15 19:13:46.109 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_52
- 2026-04-15 19:13:46.110 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_46
- 2026-04-15 19:13:46.112 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_53
- 2026-04-15 19:13:46.115 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_60
- 2026-04-15 19:13:46.116 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_44
- 2026-04-15 19:13:46.121 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_53
- 2026-04-15 19:13:46.131 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_47
- 2026-04-15 19:13:46.133 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_3
- 2026-04-15 19:13:46.136 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_61
- 2026-04-15 19:13:46.137 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_45
- 2026-04-15 19:13:46.143 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_54
- 2026-04-15 19:13:46.151 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_12
- 2026-04-15 19:13:46.154 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_62
- 2026-04-15 19:13:46.155 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_46
- 2026-04-15 19:13:46.157 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_55
- 2026-04-15 19:13:46.162 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_13
- 2026-04-15 19:13:46.165 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_54
- 2026-04-15 19:13:46.172 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_63
- 2026-04-15 19:13:46.174 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_47
- 2026-04-15 19:13:46.179 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_56
- 2026-04-15 19:13:46.184 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_48
- 2026-04-15 19:13:46.185 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_4
- 2026-04-15 19:13:46.201 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getDaCustomerPageUsingGET_1
- 2026-04-15 19:13:46.226 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_1
- 2026-04-15 19:13:46.236 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_14
- 2026-04-15 19:13:46.257 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_55
- 2026-04-15 19:13:46.293 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: delByIdUsingDELETE_1
- 2026-04-15 19:13:46.295 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: delByIdsUsingDELETE_1
- 2026-04-15 19:13:46.296 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: disableUsingPUT_1
- 2026-04-15 19:13:46.297 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: enableUsingPUT_1
- 2026-04-15 19:13:46.299 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: importExcelUsingPOST_1
- 2026-04-15 19:13:46.300 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_2
- 2026-04-15 19:13:46.305 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_3
- 2026-04-15 19:13:46.320 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_5
- 2026-04-15 19:13:46.322 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_6
- 2026-04-15 19:13:46.323 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_7
- 2026-04-15 19:13:46.326 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_56
- 2026-04-15 19:13:46.334 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_48
- 2026-04-15 19:13:46.352 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: addUsingPOST_1
- 2026-04-15 19:13:46.358 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_57
- 2026-04-15 19:13:46.364 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_64
- 2026-04-15 19:13:46.365 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_49
- 2026-04-15 19:13:46.367 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_57
- 2026-04-15 19:13:46.370 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: save_gdUsingPOST_1
- 2026-04-15 19:13:46.378 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_49
- 2026-04-15 19:13:46.389 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_58
- 2026-04-15 19:13:46.393 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_65
- 2026-04-15 19:13:46.394 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_50
- 2026-04-15 19:13:46.397 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_58
- 2026-04-15 19:13:46.398 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_50
- 2026-04-15 19:13:46.401 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_59
- 2026-04-15 19:13:46.405 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_66
- 2026-04-15 19:13:46.406 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_51
- 2026-04-15 19:13:46.409 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_59
- 2026-04-15 19:13:46.411 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: save_gdUsingPOST_2
- 2026-04-15 19:13:46.415 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_51
- 2026-04-15 19:13:46.416 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_8
- 2026-04-15 19:13:46.425 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_9
- 2026-04-15 19:13:46.437 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_60
- 2026-04-15 19:13:46.479 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_2
- 2026-04-15 19:13:46.483 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_61
- 2026-04-15 19:13:46.487 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_15
- 2026-04-15 19:13:46.516 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_4
- 2026-04-15 19:13:46.521 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_10
- 2026-04-15 19:13:46.528 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_62
- 2026-04-15 19:13:46.534 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_67
- 2026-04-15 19:13:46.537 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_52
- 2026-04-15 19:13:46.544 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_60
- 2026-04-15 19:13:46.546 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_52
- 2026-04-15 19:13:46.595 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_53
- 2026-04-15 19:13:46.677 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_16
- 2026-04-15 19:13:46.731 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getListUsingGET_1
- 2026-04-15 19:13:46.784 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_63
- 2026-04-15 19:13:46.856 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: statUsingGET_1
- 2026-04-15 19:13:46.954 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_11
- 2026-04-15 19:13:46.974 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_64
- 2026-04-15 19:13:47.013 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_68
- 2026-04-15 19:13:47.019 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_53
- 2026-04-15 19:13:47.131 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_61
- 2026-04-15 19:13:47.141 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_54
- 2026-04-15 19:13:47.149 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_65
- 2026-04-15 19:13:47.164 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_62
- 2026-04-15 19:13:47.172 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_55
- 2026-04-15 19:13:47.201 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_12
- 2026-04-15 19:13:47.324 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_63
- 2026-04-15 19:13:47.411 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_17
- 2026-04-15 19:13:47.474 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: monthlyStatUsingGET_1
- 2026-04-15 19:13:47.483 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: monthlyStatSummaryUsingGET_1
- 2026-04-15 19:13:47.499 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getListUsingGET_2
- 2026-04-15 19:13:47.743 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_66
- 2026-04-15 19:13:47.769 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageListUsingGET_1
- 2026-04-15 19:13:47.771 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: statUsingGET_2
- 2026-04-15 19:13:47.796 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_13
- 2026-04-15 19:13:47.797 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_14
- 2026-04-15 19:13:47.830 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_64
- 2026-04-15 19:13:47.837 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_67
- 2026-04-15 19:13:47.876 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getYyWyjtzPageUsingGET_1
- 2026-04-15 19:13:47.878 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_15
- 2026-04-15 19:13:47.881 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_5
- 2026-04-15 19:13:47.889 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_18
- 2026-04-15 19:13:47.890 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_16
- 2026-04-15 19:13:47.902 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_19
- 2026-04-15 19:13:47.904 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_17
- 2026-04-15 19:13:47.952 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_20
- 2026-04-15 19:13:47.953 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_18
- 2026-04-15 19:13:47.957 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_68
- 2026-04-15 19:13:47.966 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_69
- 2026-04-15 19:13:47.968 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_54
- 2026-04-15 19:13:47.976 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_65
- 2026-04-15 19:13:47.979 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_56
- 2026-04-15 19:13:47.982 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_69
- 2026-04-15 19:13:47.984 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_70
- 2026-04-15 19:13:47.986 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_55
- 2026-04-15 19:13:47.993 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_66
- 2026-04-15 19:13:47.996 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_57
- 2026-04-15 19:13:47.999 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_21
- 2026-04-15 19:13:48.001 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_3
- 2026-04-15 19:13:48.007 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_67
- 2026-04-15 19:13:48.017 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_22
- 2026-04-15 19:13:48.059 [main] INFO io.undertow - starting server: Undertow - 2.0.31.Final
- 2026-04-15 19:13:48.068 [main] INFO org.xnio - XNIO version 3.3.8.Final
- 2026-04-15 19:13:48.075 [main] INFO org.xnio.nio - XNIO NIO Implementation Version 3.3.8.Final
- 2026-04-15 19:13:48.124 [main] INFO o.s.b.w.e.u.UndertowServletWebServer - Undertow started on port(s) 10506 (http) with context path ''
- 2026-04-15 19:13:48.165 [main] INFO c.a.c.n.r.NacosServiceRegistry - nacos registry, DEFAULT_GROUP collect-fees-api 192.168.200.104:10506 register finished
- 2026-04-15 19:13:48.528 [main] INFO com.tofly.feesapi.FeesApiApplication - Started FeesApiApplication in 39.93 seconds (JVM running for 41.158)
- 2026-04-15 19:13:49.547 [RMI TCP Connection(13)-192.168.200.104] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
- 2026-04-15 19:13:49.547 [RMI TCP Connection(13)-192.168.200.104] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
- 2026-04-15 19:13:49.598 [RMI TCP Connection(13)-192.168.200.104] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 51 ms
- 2026-04-15 19:13:53.836 [XNIO-1 task-1] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/api/yhgl/yhkhjbxx/page2/getPage2】请求开始==================
- 2026-04-15 19:13:53.987 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.getPage2_mpCount - ==> Preparing: SELECT COUNT(*) AS total FROM yh_khjbxx a WHERE 1 = 1 AND a.ssgs = ? AND (a.khbm LIKE 'D%' OR a.yhxm LIKE '%D%' OR LOWER(a.pyjm) LIKE LOWER('%D%')) AND a.ZHBZ = '1' AND a.dxh = ? AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?)
- 2026-04-15 19:13:54.019 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.getPage2_mpCount - ==> Parameters: 1(String), 1(Integer), 10753(String)
- 2026-04-15 19:13:54.099 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.getPage2_mpCount - <== Total: 1
- 2026-04-15 19:13:54.129 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.getPage2 - ==> Preparing: SELECT * FROM ( SELECT TMP.*, ROWNUM ROW_ID FROM ( SELECT a.yhbh, a.ykhbh, a.yhxm, a.yhdz, a.lxdh, a.ssgs, a.sscbpq, a.sscbb, a.xb, a.sj, a.zzdh, a.gzdw, a.bgdh, a.dzyx, a.zjlb, a.zjhm, a.sqrq, a.jdrq, a.yhzt, a.rks, a.hzgx, a.zsjb, a.tsbz, a.tsrq, a.htqd, a.htqdrq, a.htbh, a.bz, a.bz1, a.bz_gcbh, a.bz_pcxlh, a.czrybm, a.czryxm, a.czsj, a.psfz, a.pht, a.pgszz, a.pyyzz, a.pyxzj, a.xydj, a.zw, a.jdrybm, a.jdryxm, a.jdpcxlh, a.sfqz, a.cbryxm, a.xh, a.ssregion, a.xgrybm, a.jtzqljl, a.fplx, (CASE WHEN a.fplx = '1' THEN '普票' WHEN a.fplx = '2' THEN '专票' ELSE '' END) fplxmc, a.fp_name, a.fp_nsrsbh, a.fp_dz, a.fp_lxdh, a.fp_bankname, a.fp_bankcode, a.fp_bz, a.fffs, h.name AS fffsmc, a.khlb, a.pyjm, a.yljl, g.mc AS ssgsmc, e.cbpqmc AS sscbpqmc, f.cbbmc AS sscbbmc, d.name AS sblbmc, b.sbqs, b.sbbh, b.sblb, b.sbsccj, b.sbxh, b.sbkj, b.sblc, b.jddj, b.cbpl, b.bjwz, b.sbccrq, c.name || (SELECT '|' || name FROM bm_sj WHERE code = b.sjbm1) || (SELECT '|' || name FROM bm_sj WHERE code = b.sjbm2) sjmc, k.scds, k.bcds, k.cbxh, nvl(j.yfje, 0) yfje, nvl(j.kjje, 0) kjje, nvl(j.syje, 0) syje, nvl(j.nbsyje, 0) nbsyje, a.khbm, a.ysdz, a.wybz FROM yh_khjbxx a LEFT JOIN yh_cbkxx b ON a.yhbh = b.yhbh AND b.cbkh = '1' LEFT JOIN bm_sj c ON b.sjbm = c.code LEFT JOIN bm_sblb d ON b.sblb = d.code LEFT JOIN bm_cbpq e ON a.sscbpq = e.cbpqbm LEFT JOIN bm_cbb f ON a.sscbb = f.cbbbm LEFT JOIN bm_gs g ON a.ssgs = g.bm LEFT JOIN bm_fffs h ON a.fffs = h.code LEFT JOIN yy_cblr k ON a.yhbh = k.yhbh AND b.cbkh = k.cbkh LEFT JOIN yy_zjzh j ON a.yhbh = j.yhbh WHERE 1 = 1 AND a.ssgs = ? AND (a.khbm LIKE 'D%' OR a.yhxm LIKE '%D%' OR LOWER(a.pyjm) LIKE LOWER('%D%')) AND a.ZHBZ = '1' AND a.dxh = ? AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?) ORDER BY a.yhbh ASC, a.yhbh ASC ) TMP WHERE ROWNUM <=?) WHERE ROW_ID > ?
- 2026-04-15 19:13:54.130 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.getPage2 - ==> Parameters: 1(String), 1(Integer), 10753(String), 20(Long), 0(Long)
- 2026-04-15 19:13:54.395 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.getPage2 - <== Total: 20
- 2026-04-15 19:13:54.397 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:13:54.397 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00000101(String)
- 2026-04-15 19:13:54.420 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:13:54.421 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:13:54.421 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00000101(String)
- 2026-04-15 19:13:54.445 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:13:54.445 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:13:54.446 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00000201(String)
- 2026-04-15 19:13:54.467 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:13:54.468 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:13:54.468 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00000201(String)
- 2026-04-15 19:13:54.490 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:13:54.490 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:13:54.490 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00000301(String)
- 2026-04-15 19:13:54.511 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:13:54.512 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:13:54.512 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00000301(String)
- 2026-04-15 19:13:54.538 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:13:54.539 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:13:54.539 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00000401(String)
- 2026-04-15 19:13:54.561 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:13:54.561 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:13:54.561 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00000401(String)
- 2026-04-15 19:13:54.584 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:13:54.585 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:13:54.585 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00000601(String)
- 2026-04-15 19:13:54.606 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:13:54.607 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:13:54.607 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00000601(String)
- 2026-04-15 19:13:54.630 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:13:54.631 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:13:54.631 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00000701(String)
- 2026-04-15 19:13:54.654 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:13:54.654 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:13:54.656 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00000701(String)
- 2026-04-15 19:13:54.680 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:13:54.681 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:13:54.681 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00000801(String)
- 2026-04-15 19:13:54.703 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:13:54.704 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:13:54.704 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00000801(String)
- 2026-04-15 19:13:54.728 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:13:54.730 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:13:54.730 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00000901(String)
- 2026-04-15 19:13:54.752 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:13:54.753 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:13:54.753 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00000901(String)
- 2026-04-15 19:13:54.775 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:13:54.776 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:13:54.776 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00001001(String)
- 2026-04-15 19:13:54.797 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:13:54.798 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:13:54.798 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00001001(String)
- 2026-04-15 19:13:54.820 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:13:54.821 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:13:54.821 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00001101(String)
- 2026-04-15 19:13:54.843 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:13:54.844 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:13:54.844 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00001101(String)
- 2026-04-15 19:13:54.867 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:13:54.868 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:13:54.868 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00001301(String)
- 2026-04-15 19:13:54.890 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:13:54.891 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:13:54.891 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00001301(String)
- 2026-04-15 19:13:54.918 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:13:54.919 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:13:54.919 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00001401(String)
- 2026-04-15 19:13:54.941 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:13:54.941 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:13:54.941 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00001401(String)
- 2026-04-15 19:13:54.964 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:13:54.965 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:13:54.965 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00001501(String)
- 2026-04-15 19:13:54.986 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:13:54.987 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:13:54.988 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00001501(String)
- 2026-04-15 19:13:55.009 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:13:55.009 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:13:55.010 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00001701(String)
- 2026-04-15 19:13:55.031 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:13:55.031 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:13:55.031 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00001701(String)
- 2026-04-15 19:13:55.053 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:13:55.053 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:13:55.053 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00001901(String)
- 2026-04-15 19:13:55.074 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:13:55.076 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:13:55.076 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00001901(String)
- 2026-04-15 19:13:55.097 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:13:55.098 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:13:55.099 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00002001(String)
- 2026-04-15 19:13:55.121 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:13:55.123 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:13:55.123 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00002001(String)
- 2026-04-15 19:13:55.146 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:13:55.147 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:13:55.147 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00002101(String)
- 2026-04-15 19:13:55.168 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:13:55.168 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:13:55.168 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00002101(String)
- 2026-04-15 19:13:55.190 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:13:55.191 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:13:55.191 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00002301(String)
- 2026-04-15 19:13:55.214 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:13:55.215 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:13:55.215 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00002301(String)
- 2026-04-15 19:13:55.242 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:13:55.244 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:13:55.244 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00002401(String)
- 2026-04-15 19:13:55.267 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:13:55.268 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:13:55.268 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00002401(String)
- 2026-04-15 19:13:55.299 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:13:55.300 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:13:55.300 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00002501(String)
- 2026-04-15 19:13:55.325 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:13:55.326 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:13:55.326 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00002501(String)
- 2026-04-15 19:13:55.357 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:13:55.358 [XNIO-1 task-1] INFO c.t.feesapi.common.LogRecordAspect - =================【getPage2】请求结束==================
- 2026-04-15 19:14:19.186 [XNIO-1 task-2] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/api/yhgl/yhkhjbxx/page2/getPage2】请求开始==================
- 2026-04-15 19:14:19.195 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.getPage2_mpCount - ==> Preparing: SELECT COUNT(*) AS total FROM yh_khjbxx a WHERE 1 = 1 AND a.ssgs = ? AND (a.khbm LIKE 'D%' OR a.yhxm LIKE '%D%' OR LOWER(a.pyjm) LIKE LOWER('%D%')) AND a.ZHBZ = '1' AND a.dxh = ? AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?)
- 2026-04-15 19:14:19.195 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.getPage2_mpCount - ==> Parameters: 1(String), 1(Integer), 10753(String)
- 2026-04-15 19:14:19.255 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.getPage2_mpCount - <== Total: 1
- 2026-04-15 19:14:19.263 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.getPage2 - ==> Preparing: SELECT * FROM ( SELECT TMP.*, ROWNUM ROW_ID FROM ( SELECT a.yhbh, a.ykhbh, a.yhxm, a.yhdz, a.lxdh, a.ssgs, a.sscbpq, a.sscbb, a.xb, a.sj, a.zzdh, a.gzdw, a.bgdh, a.dzyx, a.zjlb, a.zjhm, a.sqrq, a.jdrq, a.yhzt, a.rks, a.hzgx, a.zsjb, a.tsbz, a.tsrq, a.htqd, a.htqdrq, a.htbh, a.bz, a.bz1, a.bz_gcbh, a.bz_pcxlh, a.czrybm, a.czryxm, a.czsj, a.psfz, a.pht, a.pgszz, a.pyyzz, a.pyxzj, a.xydj, a.zw, a.jdrybm, a.jdryxm, a.jdpcxlh, a.sfqz, a.cbryxm, a.xh, a.ssregion, a.xgrybm, a.jtzqljl, a.fplx, (CASE WHEN a.fplx = '1' THEN '普票' WHEN a.fplx = '2' THEN '专票' ELSE '' END) fplxmc, a.fp_name, a.fp_nsrsbh, a.fp_dz, a.fp_lxdh, a.fp_bankname, a.fp_bankcode, a.fp_bz, a.fffs, h.name AS fffsmc, a.khlb, a.pyjm, a.yljl, g.mc AS ssgsmc, e.cbpqmc AS sscbpqmc, f.cbbmc AS sscbbmc, d.name AS sblbmc, b.sbqs, b.sbbh, b.sblb, b.sbsccj, b.sbxh, b.sbkj, b.sblc, b.jddj, b.cbpl, b.bjwz, b.sbccrq, c.name || (SELECT '|' || name FROM bm_sj WHERE code = b.sjbm1) || (SELECT '|' || name FROM bm_sj WHERE code = b.sjbm2) sjmc, k.scds, k.bcds, k.cbxh, nvl(j.yfje, 0) yfje, nvl(j.kjje, 0) kjje, nvl(j.syje, 0) syje, nvl(j.nbsyje, 0) nbsyje, a.khbm, a.ysdz, a.wybz FROM yh_khjbxx a LEFT JOIN yh_cbkxx b ON a.yhbh = b.yhbh AND b.cbkh = '1' LEFT JOIN bm_sj c ON b.sjbm = c.code LEFT JOIN bm_sblb d ON b.sblb = d.code LEFT JOIN bm_cbpq e ON a.sscbpq = e.cbpqbm LEFT JOIN bm_cbb f ON a.sscbb = f.cbbbm LEFT JOIN bm_gs g ON a.ssgs = g.bm LEFT JOIN bm_fffs h ON a.fffs = h.code LEFT JOIN yy_cblr k ON a.yhbh = k.yhbh AND b.cbkh = k.cbkh LEFT JOIN yy_zjzh j ON a.yhbh = j.yhbh WHERE 1 = 1 AND a.ssgs = ? AND (a.khbm LIKE 'D%' OR a.yhxm LIKE '%D%' OR LOWER(a.pyjm) LIKE LOWER('%D%')) AND a.ZHBZ = '1' AND a.dxh = ? AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?) ORDER BY a.yhbh ASC, a.yhbh ASC ) TMP WHERE ROWNUM <=?) WHERE ROW_ID > ?
- 2026-04-15 19:14:19.263 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.getPage2 - ==> Parameters: 1(String), 1(Integer), 10753(String), 20(Long), 0(Long)
- 2026-04-15 19:14:19.396 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.getPage2 - <== Total: 20
- 2026-04-15 19:14:19.396 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:14:19.397 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00000101(String)
- 2026-04-15 19:14:19.421 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:14:19.422 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:14:19.422 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00000101(String)
- 2026-04-15 19:14:19.445 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:14:19.445 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:14:19.445 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00000201(String)
- 2026-04-15 19:14:19.467 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:14:19.468 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:14:19.468 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00000201(String)
- 2026-04-15 19:14:19.490 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:14:19.491 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:14:19.491 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00000301(String)
- 2026-04-15 19:14:19.513 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:14:19.514 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:14:19.514 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00000301(String)
- 2026-04-15 19:14:19.536 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:14:19.536 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:14:19.537 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00000401(String)
- 2026-04-15 19:14:19.559 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:14:19.559 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:14:19.559 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00000401(String)
- 2026-04-15 19:14:19.580 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:14:19.581 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:14:19.581 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00000601(String)
- 2026-04-15 19:14:19.602 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:14:19.603 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:14:19.603 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00000601(String)
- 2026-04-15 19:14:19.625 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:14:19.626 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:14:19.626 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00000701(String)
- 2026-04-15 19:14:19.647 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:14:19.648 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:14:19.648 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00000701(String)
- 2026-04-15 19:14:19.670 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:14:19.671 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:14:19.671 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00000801(String)
- 2026-04-15 19:14:19.693 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:14:19.694 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:14:19.694 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00000801(String)
- 2026-04-15 19:14:19.717 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:14:19.718 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:14:19.718 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00000901(String)
- 2026-04-15 19:14:19.742 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:14:19.743 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:14:19.743 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00000901(String)
- 2026-04-15 19:14:19.767 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:14:19.768 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:14:19.768 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00001001(String)
- 2026-04-15 19:14:19.790 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:14:19.791 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:14:19.791 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00001001(String)
- 2026-04-15 19:14:19.812 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:14:19.814 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:14:19.814 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00001101(String)
- 2026-04-15 19:14:19.836 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:14:19.836 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:14:19.836 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00001101(String)
- 2026-04-15 19:14:19.858 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:14:19.858 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:14:19.859 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00001301(String)
- 2026-04-15 19:14:19.881 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:14:19.882 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:14:19.882 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00001301(String)
- 2026-04-15 19:14:19.903 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:14:19.904 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:14:19.904 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00001401(String)
- 2026-04-15 19:14:19.924 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:14:19.926 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:14:19.926 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00001401(String)
- 2026-04-15 19:14:19.948 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:14:19.949 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:14:19.949 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00001501(String)
- 2026-04-15 19:14:19.970 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:14:19.971 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:14:19.971 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00001501(String)
- 2026-04-15 19:14:19.992 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:14:19.992 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:14:19.992 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00001701(String)
- 2026-04-15 19:14:20.014 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:14:20.014 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:14:20.014 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00001701(String)
- 2026-04-15 19:14:20.036 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:14:20.036 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:14:20.036 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00001901(String)
- 2026-04-15 19:14:20.058 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:14:20.058 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:14:20.058 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00001901(String)
- 2026-04-15 19:14:20.081 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:14:20.081 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:14:20.081 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00002001(String)
- 2026-04-15 19:14:20.106 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:14:20.106 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:14:20.107 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00002001(String)
- 2026-04-15 19:14:20.128 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:14:20.129 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:14:20.129 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00002101(String)
- 2026-04-15 19:14:20.151 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:14:20.151 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:14:20.151 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00002101(String)
- 2026-04-15 19:14:20.173 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:14:20.174 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:14:20.174 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00002301(String)
- 2026-04-15 19:14:20.195 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:14:20.196 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:14:20.197 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00002301(String)
- 2026-04-15 19:14:20.218 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:14:20.219 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:14:20.219 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00002401(String)
- 2026-04-15 19:14:20.241 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:14:20.242 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:14:20.242 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00002401(String)
- 2026-04-15 19:14:20.266 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:14:20.267 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:14:20.267 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00002501(String)
- 2026-04-15 19:14:20.293 [XNIO-1 task-2] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:14:20.294 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:14:20.294 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00002501(String)
- 2026-04-15 19:14:20.317 [XNIO-1 task-2] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:14:20.317 [XNIO-1 task-2] INFO c.t.feesapi.common.LogRecordAspect - =================【getPage2】请求结束==================
- 2026-04-15 19:14:45.689 [XNIO-1 task-3] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/api/yhgl/yhkhjbxx/page2/getPage2】请求开始==================
- 2026-04-15 19:14:45.696 [XNIO-1 task-3] DEBUG c.t.f.y.m.Y.getPage2_mpCount - ==> Preparing: SELECT COUNT(*) AS total FROM yh_khjbxx a WHERE 1 = 1 AND a.ssgs = ? AND (a.khbm LIKE 'D000451%' OR a.yhxm LIKE '%D000451%' OR LOWER(a.pyjm) LIKE LOWER('%D000451%')) AND a.ZHBZ = '1' AND a.dxh = ? AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?)
- 2026-04-15 19:14:45.696 [XNIO-1 task-3] DEBUG c.t.f.y.m.Y.getPage2_mpCount - ==> Parameters: 1(String), 1(Integer), 10753(String)
- 2026-04-15 19:14:45.759 [XNIO-1 task-3] DEBUG c.t.f.y.m.Y.getPage2_mpCount - <== Total: 1
- 2026-04-15 19:14:45.763 [XNIO-1 task-3] DEBUG c.t.f.y.m.YhKhjbxxMapper.getPage2 - ==> Preparing: SELECT * FROM ( SELECT TMP.*, ROWNUM ROW_ID FROM ( SELECT a.yhbh, a.ykhbh, a.yhxm, a.yhdz, a.lxdh, a.ssgs, a.sscbpq, a.sscbb, a.xb, a.sj, a.zzdh, a.gzdw, a.bgdh, a.dzyx, a.zjlb, a.zjhm, a.sqrq, a.jdrq, a.yhzt, a.rks, a.hzgx, a.zsjb, a.tsbz, a.tsrq, a.htqd, a.htqdrq, a.htbh, a.bz, a.bz1, a.bz_gcbh, a.bz_pcxlh, a.czrybm, a.czryxm, a.czsj, a.psfz, a.pht, a.pgszz, a.pyyzz, a.pyxzj, a.xydj, a.zw, a.jdrybm, a.jdryxm, a.jdpcxlh, a.sfqz, a.cbryxm, a.xh, a.ssregion, a.xgrybm, a.jtzqljl, a.fplx, (CASE WHEN a.fplx = '1' THEN '普票' WHEN a.fplx = '2' THEN '专票' ELSE '' END) fplxmc, a.fp_name, a.fp_nsrsbh, a.fp_dz, a.fp_lxdh, a.fp_bankname, a.fp_bankcode, a.fp_bz, a.fffs, h.name AS fffsmc, a.khlb, a.pyjm, a.yljl, g.mc AS ssgsmc, e.cbpqmc AS sscbpqmc, f.cbbmc AS sscbbmc, d.name AS sblbmc, b.sbqs, b.sbbh, b.sblb, b.sbsccj, b.sbxh, b.sbkj, b.sblc, b.jddj, b.cbpl, b.bjwz, b.sbccrq, c.name || (SELECT '|' || name FROM bm_sj WHERE code = b.sjbm1) || (SELECT '|' || name FROM bm_sj WHERE code = b.sjbm2) sjmc, k.scds, k.bcds, k.cbxh, nvl(j.yfje, 0) yfje, nvl(j.kjje, 0) kjje, nvl(j.syje, 0) syje, nvl(j.nbsyje, 0) nbsyje, a.khbm, a.ysdz, a.wybz FROM yh_khjbxx a LEFT JOIN yh_cbkxx b ON a.yhbh = b.yhbh AND b.cbkh = '1' LEFT JOIN bm_sj c ON b.sjbm = c.code LEFT JOIN bm_sblb d ON b.sblb = d.code LEFT JOIN bm_cbpq e ON a.sscbpq = e.cbpqbm LEFT JOIN bm_cbb f ON a.sscbb = f.cbbbm LEFT JOIN bm_gs g ON a.ssgs = g.bm LEFT JOIN bm_fffs h ON a.fffs = h.code LEFT JOIN yy_cblr k ON a.yhbh = k.yhbh AND b.cbkh = k.cbkh LEFT JOIN yy_zjzh j ON a.yhbh = j.yhbh WHERE 1 = 1 AND a.ssgs = ? AND (a.khbm LIKE 'D000451%' OR a.yhxm LIKE '%D000451%' OR LOWER(a.pyjm) LIKE LOWER('%D000451%')) AND a.ZHBZ = '1' AND a.dxh = ? AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?) ORDER BY a.yhbh ASC, a.yhbh ASC ) TMP WHERE ROWNUM <=?) WHERE ROW_ID > ?
- 2026-04-15 19:14:45.764 [XNIO-1 task-3] DEBUG c.t.f.y.m.YhKhjbxxMapper.getPage2 - ==> Parameters: 1(String), 1(Integer), 10753(String), 20(Long), 0(Long)
- 2026-04-15 19:14:45.934 [XNIO-1 task-3] DEBUG c.t.f.y.m.YhKhjbxxMapper.getPage2 - <== Total: 1
- 2026-04-15 19:14:45.935 [XNIO-1 task-3] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:14:45.935 [XNIO-1 task-3] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00045101(String)
- 2026-04-15 19:14:45.957 [XNIO-1 task-3] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:14:45.957 [XNIO-1 task-3] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:14:45.957 [XNIO-1 task-3] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00045101(String)
- 2026-04-15 19:14:45.979 [XNIO-1 task-3] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:14:45.980 [XNIO-1 task-3] INFO c.t.feesapi.common.LogRecordAspect - =================【getPage2】请求结束==================
- 2026-04-15 19:16:31.933 [XNIO-1 task-4] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/api/yhgl/yhkhjbxx/page2/getPage2】请求开始==================
- 2026-04-15 19:16:31.965 [XNIO-1 task-4] DEBUG c.t.f.y.m.Y.getPage2_mpCount - ==> Preparing: SELECT COUNT(*) AS total FROM yh_khjbxx a WHERE 1 = 1 AND a.ssgs = ? AND (a.khbm LIKE 'D000451%' OR a.yhxm LIKE '%D000451%' OR LOWER(a.pyjm) LIKE LOWER('%D000451%')) AND a.ZHBZ = '1' AND a.dxh = ? AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?)
- 2026-04-15 19:16:31.965 [XNIO-1 task-4] DEBUG c.t.f.y.m.Y.getPage2_mpCount - ==> Parameters: 1(String), 1(Integer), 10753(String)
- 2026-04-15 19:16:32.027 [XNIO-1 task-4] DEBUG c.t.f.y.m.Y.getPage2_mpCount - <== Total: 1
- 2026-04-15 19:16:32.031 [XNIO-1 task-4] DEBUG c.t.f.y.m.YhKhjbxxMapper.getPage2 - ==> Preparing: SELECT * FROM ( SELECT TMP.*, ROWNUM ROW_ID FROM ( SELECT a.yhbh, a.ykhbh, a.yhxm, a.yhdz, a.lxdh, a.ssgs, a.sscbpq, a.sscbb, a.xb, a.sj, a.zzdh, a.gzdw, a.bgdh, a.dzyx, a.zjlb, a.zjhm, a.sqrq, a.jdrq, a.yhzt, a.rks, a.hzgx, a.zsjb, a.tsbz, a.tsrq, a.htqd, a.htqdrq, a.htbh, a.bz, a.bz1, a.bz_gcbh, a.bz_pcxlh, a.czrybm, a.czryxm, a.czsj, a.psfz, a.pht, a.pgszz, a.pyyzz, a.pyxzj, a.xydj, a.zw, a.jdrybm, a.jdryxm, a.jdpcxlh, a.sfqz, a.cbryxm, a.xh, a.ssregion, a.xgrybm, a.jtzqljl, a.fplx, (CASE WHEN a.fplx = '1' THEN '普票' WHEN a.fplx = '2' THEN '专票' ELSE '' END) fplxmc, a.fp_name, a.fp_nsrsbh, a.fp_dz, a.fp_lxdh, a.fp_bankname, a.fp_bankcode, a.fp_bz, a.fffs, h.name AS fffsmc, a.khlb, a.pyjm, a.yljl, g.mc AS ssgsmc, e.cbpqmc AS sscbpqmc, f.cbbmc AS sscbbmc, d.name AS sblbmc, b.sbqs, b.sbbh, b.sblb, b.sbsccj, b.sbxh, b.sbkj, b.sblc, b.jddj, b.cbpl, b.bjwz, b.sbccrq, c.name || (SELECT '|' || name FROM bm_sj WHERE code = b.sjbm1) || (SELECT '|' || name FROM bm_sj WHERE code = b.sjbm2) sjmc, k.scds, k.bcds, k.cbxh, nvl(j.yfje, 0) yfje, nvl(j.kjje, 0) kjje, nvl(j.syje, 0) syje, nvl(j.nbsyje, 0) nbsyje, a.khbm, a.ysdz, a.wybz FROM yh_khjbxx a LEFT JOIN yh_cbkxx b ON a.yhbh = b.yhbh AND b.cbkh = '1' LEFT JOIN bm_sj c ON b.sjbm = c.code LEFT JOIN bm_sblb d ON b.sblb = d.code LEFT JOIN bm_cbpq e ON a.sscbpq = e.cbpqbm LEFT JOIN bm_cbb f ON a.sscbb = f.cbbbm LEFT JOIN bm_gs g ON a.ssgs = g.bm LEFT JOIN bm_fffs h ON a.fffs = h.code LEFT JOIN yy_cblr k ON a.yhbh = k.yhbh AND b.cbkh = k.cbkh LEFT JOIN yy_zjzh j ON a.yhbh = j.yhbh WHERE 1 = 1 AND a.ssgs = ? AND (a.khbm LIKE 'D000451%' OR a.yhxm LIKE '%D000451%' OR LOWER(a.pyjm) LIKE LOWER('%D000451%')) AND a.ZHBZ = '1' AND a.dxh = ? AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?) ORDER BY a.yhbh ASC, a.yhbh ASC ) TMP WHERE ROWNUM <=?) WHERE ROW_ID > ?
- 2026-04-15 19:16:32.032 [XNIO-1 task-4] DEBUG c.t.f.y.m.YhKhjbxxMapper.getPage2 - ==> Parameters: 1(String), 1(Integer), 10753(String), 20(Long), 0(Long)
- 2026-04-15 19:16:32.098 [XNIO-1 task-4] DEBUG c.t.f.y.m.YhKhjbxxMapper.getPage2 - <== Total: 1
- 2026-04-15 19:16:32.099 [XNIO-1 task-4] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:16:32.099 [XNIO-1 task-4] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00045101(String)
- 2026-04-15 19:16:32.120 [XNIO-1 task-4] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:16:32.120 [XNIO-1 task-4] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:16:32.120 [XNIO-1 task-4] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00045101(String)
- 2026-04-15 19:16:32.142 [XNIO-1 task-4] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:16:32.142 [XNIO-1 task-4] INFO c.t.feesapi.common.LogRecordAspect - =================【getPage2】请求结束==================
- 2026-04-15 19:16:58.639 [XNIO-1 task-5] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/api/yhgl/yhkhjbxx/page2/getPage2】请求开始==================
- 2026-04-15 19:16:58.645 [XNIO-1 task-5] DEBUG c.t.f.y.m.Y.getPage2_mpCount - ==> Preparing: SELECT COUNT(*) AS total FROM yh_khjbxx a WHERE 1 = 1 AND a.ssgs = ? AND (a.khbm LIKE 'D000451%' OR a.yhxm LIKE '%D000451%' OR LOWER(a.pyjm) LIKE LOWER('%D000451%')) AND a.ZHBZ = '1' AND a.dxh = ? AND a.sscbb IN (SELECT cbbbm FROM yh_sjqx WHERE user_id = ?)
- 2026-04-15 19:16:58.645 [XNIO-1 task-5] DEBUG c.t.f.y.m.Y.getPage2_mpCount - ==> Parameters: 1(String), 1(Integer), (String)
- 2026-04-15 19:16:58.708 [XNIO-1 task-5] DEBUG c.t.f.y.m.Y.getPage2_mpCount - <== Total: 1
- 2026-04-15 19:16:58.708 [XNIO-1 task-5] INFO c.t.feesapi.common.LogRecordAspect - =================【getPage2】请求结束==================
- 2026-04-15 19:18:38.766 [SpringContextShutdownHook] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'taskScheduler'
- 2026-04-15 19:18:38.774 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registering from Nacos Server now...
- 2026-04-15 19:18:38.777 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registration finished.
- 2026-04-15 19:18:38.780 [SpringContextShutdownHook] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'taskScheduler'
- 2026-04-15 19:18:54.625 [background-preinit] INFO o.h.validator.internal.util.Version - HV000001: Hibernate Validator 6.0.20.Final
- 2026-04-15 19:18:54.977 [background-preinit] WARN o.s.h.c.j.Jackson2ObjectMapperBuilder - For Jackson Kotlin classes support please add "com.fasterxml.jackson.module:jackson-module-kotlin" to the classpath
- 2026-04-15 19:18:55.667 [main] WARN c.a.c.n.c.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[collect-fees-api] & group[DEFAULT_GROUP]
- 2026-04-15 19:18:55.681 [main] WARN c.a.c.n.c.NacosPropertySourceBuilder - Ignore the empty nacos configuration and get it based on dataId[collect-fees-api-gs.yaml] & group[DEFAULT_GROUP]
- 2026-04-15 19:18:55.681 [main] INFO o.s.c.b.c.PropertySourceBootstrapConfiguration - Located property source: [BootstrapPropertySource {name='bootstrapProperties-collect-fees-api-gs.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-collect-fees-api.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-collect-fees-api,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-public_config_redis.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-public_config_oracle.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-public_config_public.yaml,DEFAULT_GROUP'}]
- 2026-04-15 19:18:55.687 [main] INFO com.tofly.feesapi.FeesApiApplication - The following profiles are active: gs
- 2026-04-15 19:18:57.588 [main] WARN o.s.boot.actuate.endpoint.EndpointId - Endpoint ID 'nacos-config' contains invalid characters, please migrate to a valid format.
- 2026-04-15 19:18:57.593 [main] WARN o.s.boot.actuate.endpoint.EndpointId - Endpoint ID 'nacos-discovery' contains invalid characters, please migrate to a valid format.
- 2026-04-15 19:18:57.830 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode!
- 2026-04-15 19:18:57.832 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode.
- 2026-04-15 19:18:58.075 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 181ms. Found 0 Redis repository interfaces.
- 2026-04-15 19:18:58.142 [main] WARN o.s.boot.actuate.endpoint.EndpointId - Endpoint ID 'service-registry' contains invalid characters, please migrate to a valid format.
- 2026-04-15 19:18:58.215 [main] DEBUG org.apache.ibatis.logging.LogFactory - Logging initialized using 'class org.apache.ibatis.logging.slf4j.Slf4jImpl' adapter.
- 2026-04-15 19:18:58.350 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhBjflFbMapper' and 'com.tofly.feesapi.bjgl.mapper.YhBjflFbMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.350 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhBjflZbMapper' and 'com.tofly.feesapi.bjgl.mapper.YhBjflZbMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.350 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhCbkxxLogMapper' and 'com.tofly.feesapi.bjgl.mapper.YhCbkxxLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.350 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhCbkxxMapper' and 'com.tofly.feesapi.bjgl.mapper.YhCbkxxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.350 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhbglMapper' and 'com.tofly.feesapi.bjgl.mapper.YhbglMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.350 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'ykHbLogMapper' and 'com.tofly.feesapi.bjgl.mapper.YkHbLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.350 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'ykYhbgHbMapper' and 'com.tofly.feesapi.bjgl.mapper.YkYhbgHbMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.350 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmCbbMapper' and 'com.tofly.feesapi.bmgl.mapper.BmCbbMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.350 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmCbfsMapper' and 'com.tofly.feesapi.bmgl.mapper.BmCbfsMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.350 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmCblxMapper' and 'com.tofly.feesapi.bmgl.mapper.BmCblxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.350 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmCbplMapper' and 'com.tofly.feesapi.bmgl.mapper.BmCbplMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.350 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmCbpqMapper' and 'com.tofly.feesapi.bmgl.mapper.BmCbpqMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.350 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmDbhysyhMapper' and 'com.tofly.feesapi.bmgl.mapper.BmDbhysyhMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.350 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmFffsMapper' and 'com.tofly.feesapi.bmgl.mapper.BmFffsMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.350 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmFylxMapper' and 'com.tofly.feesapi.bmgl.mapper.BmFylxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.350 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmGsMapper' and 'com.tofly.feesapi.bmgl.mapper.BmGsMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.350 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSblbMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSblbMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.350 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSbsccjMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSbsccjMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.350 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSbxhMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSbxhMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.351 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSearchMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSearchMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.351 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSflxMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSflxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.351 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSfqdMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSfqdMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.351 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSjMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSjMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.351 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmSjlsMapper' and 'com.tofly.feesapi.bmgl.mapper.BmSjlsMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.351 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmYmjzConfigLsMapper' and 'com.tofly.feesapi.bmgl.mapper.BmYmjzConfigLsMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.351 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmYmjzConfigMapper' and 'com.tofly.feesapi.bmgl.mapper.BmYmjzConfigMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.351 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bmYslxMapper' and 'com.tofly.feesapi.bmgl.mapper.BmYslxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.351 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'cbbConfigMapper' and 'com.tofly.feesapi.bmgl.mapper.CbbConfigMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.351 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysChildCodeMapper' and 'com.tofly.feesapi.bmgl.mapper.SysChildCodeMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.351 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysParentCodeMapper' and 'com.tofly.feesapi.bmgl.mapper.SysParentCodeMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.351 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyCblrLsMapper' and 'com.tofly.feesapi.cbgl.mapper.YyCblrLsMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.352 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyCblrMapper' and 'com.tofly.feesapi.cbgl.mapper.YyCblrMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.352 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbCbDayMapper' and 'com.tofly.feesapi.cbgl.mapper.ZnbCbDayMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.352 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbCbLogMapper' and 'com.tofly.feesapi.cbgl.mapper.ZnbCbLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.352 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbZlLogMapper' and 'com.tofly.feesapi.cbgl.mapper.ZnbZlLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.352 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'commonMapper' and 'com.tofly.feesapi.common.mapper.CommonMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.352 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiFpkjMxMapper' and 'com.tofly.feesapi.dzfp.mapper.EiFpkjMxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.352 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiFpkjRequestMapper' and 'com.tofly.feesapi.dzfp.mapper.EiFpkjRequestMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.352 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiSalerConfigMapper' and 'com.tofly.feesapi.dzfp.mapper.EiSalerConfigMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.352 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiSpbmMapper' and 'com.tofly.feesapi.dzfp.mapper.EiSpbmMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.352 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'eiYkfpLogMapper' and 'com.tofly.feesapi.dzfp.mapper.EiYkfpLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.352 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'htFilesMapper' and 'com.tofly.feesapi.dzht.mapper.HtFilesMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.352 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'htTemplateMapper' and 'com.tofly.feesapi.dzht.mapper.HtTemplateMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.353 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'fileMapper' and 'com.tofly.feesapi.file.mapper.FileMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.353 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'flowMapper' and 'com.tofly.feesapi.flowdb.mapper.FlowMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.353 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyBgLogMapper' and 'com.tofly.feesapi.mxcx.mapper.YyBgLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.353 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bankDsdzhzMapper' and 'com.tofly.feesapi.sfds.mapper.BankDsdzhzMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.353 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'bankDsdzxxMapper' and 'com.tofly.feesapi.sfds.mapper.BankDsdzxxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.353 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'plsfkhxxMapper' and 'com.tofly.feesapi.sfgl.mapper.PlsfkhxxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.353 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyPjbhMapper' and 'com.tofly.feesapi.sfgl.mapper.YyPjbhMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.353 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyQfmxCzlsMapper' and 'com.tofly.feesapi.sfgl.mapper.YyQfmxCzlsMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.353 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyQfmxDzmxMapper' and 'com.tofly.feesapi.sfgl.mapper.YyQfmxDzmxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.353 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyQfmxGdMapper' and 'com.tofly.feesapi.sfgl.mapper.YyQfmxGdMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.353 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyQfmxMapper' and 'com.tofly.feesapi.sfgl.mapper.YyQfmxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.353 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yySspjxxMapper' and 'com.tofly.feesapi.sfgl.mapper.YySspjxxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.353 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yySspjxxReportMapper' and 'com.tofly.feesapi.sfgl.mapper.YySspjxxReportMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.353 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyWyjjmrqMapper' and 'com.tofly.feesapi.sfgl.mapper.YyWyjjmrqMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.353 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyWyjtzMapper' and 'com.tofly.feesapi.sfgl.mapper.YyWyjtzMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.353 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbCsjsLogMapper' and 'com.tofly.feesapi.sfgl.mapper.ZnbCsjsLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.353 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'smsMessageMapper' and 'com.tofly.feesapi.sms.mapper.SmsMessageMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.353 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'smsTxlxMapper' and 'com.tofly.feesapi.sms.mapper.SmsTxlxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.353 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'companyMapper' and 'com.tofly.feesapi.udb.mapper.CompanyMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.353 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userMapper' and 'com.tofly.feesapi.udb.mapper.UserMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.353 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'userRoleMapper' and 'com.tofly.feesapi.udb.mapper.UserRoleMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.353 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxDtbmMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxDtbmMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.353 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxFwtzMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxFwtzMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.353 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxMessageMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxMessageMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.353 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxTokenMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxTokenMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.353 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxTstzMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxTstzMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.353 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxUserLsMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxUserLsMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.353 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxUserMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxUserMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.353 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxYwxzMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxYwxzMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.353 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxYwxzbmMapper' and 'com.tofly.feesapi.wxgl.wechatbasicmgt.mapper.WxYwxzbmMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.353 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxBtsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxBtsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.353 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxBzsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxBzsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.353 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxDbsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxDbsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.353 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxGhsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxGhsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.353 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxGsdtMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxGsdtMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.353 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxHfsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxHfsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.353 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxLwsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxLwsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.353 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxLxdhsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxLxdhsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.353 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxRkssqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxRkssqMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.353 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxWdMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxWdMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.353 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxWdbmMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxWdbmMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.354 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxWzjbsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxWzjbsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.354 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxXbsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxXbsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.354 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'wxXhsqMapper' and 'com.tofly.feesapi.wxgl.wechatofficalacctmgt.mapper.WxXhsqMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.354 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'paySelectMapper' and 'com.tofly.feesapi.wxgl.wechatpay.mapper.PaySelectMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.354 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'sysGdcsbMapper' and 'com.tofly.feesapi.xtgl.mapper.SysGdcsbMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.354 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'syscommlogMapper' and 'com.tofly.feesapi.xtgl.mapper.SyscommlogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.354 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhBtLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhBtLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.354 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhFfgxMapper' and 'com.tofly.feesapi.yhgl.mapper.YhFfgxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.354 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhGhLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhGhLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.354 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhGroupAccountsMapper' and 'com.tofly.feesapi.yhgl.mapper.YhGroupAccountsMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.354 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhGroupMapper' and 'com.tofly.feesapi.yhgl.mapper.YhGroupMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.354 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhHfysLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhHfysLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.354 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhKhjbxxDbhlsMapper' and 'com.tofly.feesapi.yhgl.mapper.YhKhjbxxDbhlsMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.354 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhKhjbxxLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhKhjbxxLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.354 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhKhjbxxMapper' and 'com.tofly.feesapi.yhgl.mapper.YhKhjbxxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.354 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhXzbgLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhXzbgLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.354 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhhLogMapper' and 'com.tofly.feesapi.yhgl.mapper.YhhLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.354 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yhsjqxMapper' and 'com.tofly.feesapi.yhgl.mapper.YhsjqxMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.354 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'yyZjzhMapper' and 'com.tofly.feesapi.yhgl.mapper.YyZjzhMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.354 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbDaLogMapper' and 'com.tofly.feesapi.znbgl.mapper.ZnbDaLogMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.354 [main] WARN o.m.s.mapper.ClassPathMapperScanner - Skipping MapperFactoryBean with name 'znbYhdaMapper' and 'com.tofly.feesapi.znbgl.mapper.ZnbYhdaMapper' mapperInterface. Bean already defined with the same name!
- 2026-04-15 19:18:58.354 [main] WARN o.m.s.mapper.ClassPathMapperScanner - No MyBatis mapper was found in '[com.tofly.feesapi.**.mapper]' package. Please check your configuration.
- 2026-04-15 19:18:58.428 [main] INFO o.s.cloud.context.scope.GenericScope - BeanFactory id=b96e5894-f128-35d3-aafc-41fccadba59b
- 2026-04-15 19:18:58.473 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.tofly.feesapi.common.feign.UserClient' of type [org.springframework.cloud.openfeign.FeignClientFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-04-15 19:18:58.683 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'spring.datasource.dynamic-com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-04-15 19:18:58.691 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$9953a159] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-04-15 19:18:58.706 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'dsProcessor' of type [com.baomidou.dynamic.datasource.processor.DsHeaderProcessor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-04-15 19:18:58.731 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@2b0454d2' of type [org.springframework.security.oauth2.provider.expression.OAuth2MethodSecurityExpressionHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-04-15 19:18:58.739 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'methodSecurityMetadataSource' of type [org.springframework.security.access.method.DelegatingMethodSecurityMetadataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
- 2026-04-15 19:18:59.550 [main] WARN io.undertow.websockets.jsr - UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
- 2026-04-15 19:18:59.621 [main] INFO io.undertow.servlet - Initializing Spring embedded WebApplicationContext
- 2026-04-15 19:18:59.622 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 3914 ms
- 2026-04-15 19:19:03.695 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-1,master} inited
- 2026-04-15 19:19:10.403 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-2,udb} inited
- 2026-04-15 19:19:16.566 [main] INFO c.alibaba.druid.pool.DruidDataSource - {dataSource-3,flowDB} inited
- 2026-04-15 19:19:16.566 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [udb] success
- 2026-04-15 19:19:16.566 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [flowDB] success
- 2026-04-15 19:19:16.566 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource - add a datasource named [master] success
- 2026-04-15 19:19:16.566 [main] INFO c.b.d.d.DynamicRoutingDataSource - dynamic-datasource initial loaded [3] datasource,primary datasource named [master]
- 2026-04-15 19:19:17.703 [main] WARN c.b.m.core.injector.AbstractMethod - [com.tofly.feesapi.bmgl.mapper.SysParentCodeMapper.selectCount] Has been loaded by XML or SqlProvider or Mybatis's Annotation, so ignoring this injection for [class com.baomidou.mybatisplus.core.injector.methods.SelectCount]
- 2026-04-15 19:19:18.023 [main] WARN c.b.m.core.injector.AbstractMethod - [com.tofly.feesapi.flowdb.mapper.FlowMapper.updateById] Has been loaded by XML or SqlProvider or Mybatis's Annotation, so ignoring this injection for [class com.baomidou.mybatisplus.core.injector.methods.UpdateById]
- 2026-04-15 19:19:18.788 [main] WARN c.b.m.core.metadata.TableInfoHelper - Can not find table primary key in Class: "com.tofly.feesapi.wxgl.wechatpay.entity.PaySelect".
- 2026-04-15 19:19:18.788 [main] WARN c.b.m.c.injector.DefaultSqlInjector - class com.tofly.feesapi.wxgl.wechatpay.entity.PaySelect ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method.
- 2026-04-15 19:19:18.800 [main] WARN c.b.m.core.metadata.TableInfoHelper - Can not find table primary key in Class: "com.tofly.feesapi.xtgl.entity.SysGdcsb".
- 2026-04-15 19:19:18.800 [main] WARN c.b.m.c.injector.DefaultSqlInjector - class com.tofly.feesapi.xtgl.entity.SysGdcsb ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method.
- 2026-04-15 19:19:22.825 [main] INFO org.redisson.Version - Redisson 3.23.2
- 2026-04-15 19:19:23.575 [redisson-netty-2-4] INFO o.r.c.p.MasterPubSubConnectionPool - 1 connections initialized for 127.0.0.1/127.0.0.1:6379
- 2026-04-15 19:19:23.616 [redisson-netty-2-19] INFO o.r.c.pool.MasterConnectionPool - 24 connections initialized for 127.0.0.1/127.0.0.1:6379
- 2026-04-15 19:19:28.852 [main] INFO o.s.b.a.e.web.EndpointLinksResolver - Exposing 19 endpoint(s) beneath base path '/actuator'
- 2026-04-15 19:19:28.951 [main] INFO s.d.s.w.WebMvcPropertySourcedRequestMappingHandlerMapping - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
- 2026-04-15 19:19:29.115 [main] INFO c.n.c.sources.URLConfigurationSource - URLs to be used as dynamic configuration source: [file:/D:/work/tf/%e5%b1%b1%e4%b8%9c%e8%8e%b1%e9%98%b3%e6%b0%b4%e5%8f%b8/%e8%8e%b1%e9%98%b3%e6%99%ba%e6%85%a7%e6%b0%b4%e5%8a%a1JAVA%e8%90%a5%e9%94%80/20260403/lywebmis/collect_fees_ly_api/fees-ly-api/target/classes/config.properties]
- 2026-04-15 19:19:29.123 [main] INFO c.n.c.sources.URLConfigurationSource - URLs to be used as dynamic configuration source: [file:/D:/work/tf/%e5%b1%b1%e4%b8%9c%e8%8e%b1%e9%98%b3%e6%b0%b4%e5%8f%b8/%e8%8e%b1%e9%98%b3%e6%99%ba%e6%85%a7%e6%b0%b4%e5%8a%a1JAVA%e8%90%a5%e9%94%80/20260403/lywebmis/collect_fees_ly_api/fees-ly-api/target/classes/config.properties]
- 2026-04-15 19:19:29.393 [main] INFO o.s.s.c.ThreadPoolTaskScheduler - Initializing ExecutorService 'taskScheduler'
- 2026-04-15 19:19:29.576 [main] INFO o.s.b.a.s.s.UserDetailsServiceAutoConfiguration -
- Using generated security password: 63975bcc-7d70-4377-976a-541c7de6dfdd
- 2026-04-15 19:19:29.684 [main] INFO o.s.s.web.DefaultSecurityFilterChain - Creating filter chain: any request, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@5b12157b, org.springframework.security.web.context.SecurityContextPersistenceFilter@45ec9b22, org.springframework.security.web.header.HeaderWriterFilter@11101f62, org.springframework.security.web.authentication.logout.LogoutFilter@3ffa3cdb, org.springframework.security.oauth2.provider.authentication.OAuth2AuthenticationProcessingFilter@cea6297, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@7537f638, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@b632594, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@73760b13, org.springframework.security.web.session.SessionManagementFilter@328446e1, org.springframework.security.web.access.ExceptionTranslationFilter@3644d305, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@595713f3]
- 2026-04-15 19:19:30.204 [main] WARN o.s.c.s.o.SpringCloudSecurityAutoConfiguration - All Spring Cloud Security modules and starters are deprecated. They will be moved to individual projects in the next major release.
- 2026-04-15 19:19:30.323 [main] INFO s.d.s.w.p.DocumentationPluginsBootstrapper - Documentation plugins bootstrapped
- 2026-04-15 19:19:30.326 [main] INFO s.d.s.w.p.DocumentationPluginsBootstrapper - Found 1 custom documentation plugin(s)
- 2026-04-15 19:19:30.438 [main] INFO s.d.s.w.s.ApiListingReferenceScanner - Scanning for api listing references
- 2026-04-15 19:19:30.773 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_1
- 2026-04-15 19:19:30.776 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_1
- 2026-04-15 19:19:30.777 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_1
- 2026-04-15 19:19:30.778 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_1
- 2026-04-15 19:19:30.781 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_1
- 2026-04-15 19:19:30.782 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_1
- 2026-04-15 19:19:30.800 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: addCustomerUsingPOST_1
- 2026-04-15 19:19:30.800 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: deleteCustomerUsingPOST_1
- 2026-04-15 19:19:30.801 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getBindCustomerUsingGET_1
- 2026-04-15 19:19:30.802 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: selectCustomerUsingGET_1
- 2026-04-15 19:19:30.803 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getBindCustomerAndQfUsingGET_1
- 2026-04-15 19:19:30.804 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerBasicInFoUsingGET_1
- 2026-04-15 19:19:30.804 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerChargeInFoUsingGET_1
- 2026-04-15 19:19:30.805 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerInFoUsingGET_1
- 2026-04-15 19:19:30.806 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerQfInFoUsingGET_1
- 2026-04-15 19:19:30.807 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getCustomerReadMeterInFoUsingGET_1
- 2026-04-15 19:19:30.816 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_2
- 2026-04-15 19:19:30.835 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_2
- 2026-04-15 19:19:30.836 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_2
- 2026-04-15 19:19:30.837 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_2
- 2026-04-15 19:19:30.841 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_2
- 2026-04-15 19:19:30.842 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_2
- 2026-04-15 19:19:30.855 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_3
- 2026-04-15 19:19:30.856 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_3
- 2026-04-15 19:19:30.857 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_3
- 2026-04-15 19:19:30.859 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_3
- 2026-04-15 19:19:30.860 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_3
- 2026-04-15 19:19:30.866 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_3
- 2026-04-15 19:19:30.871 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_4
- 2026-04-15 19:19:30.872 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_4
- 2026-04-15 19:19:30.873 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_4
- 2026-04-15 19:19:30.874 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_4
- 2026-04-15 19:19:30.875 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_4
- 2026-04-15 19:19:30.876 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_5
- 2026-04-15 19:19:30.877 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_5
- 2026-04-15 19:19:30.878 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_5
- 2026-04-15 19:19:30.881 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_5
- 2026-04-15 19:19:30.881 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_5
- 2026-04-15 19:19:30.886 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_4
- 2026-04-15 19:19:30.890 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_6
- 2026-04-15 19:19:30.896 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_5
- 2026-04-15 19:19:30.896 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_6
- 2026-04-15 19:19:30.897 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_6
- 2026-04-15 19:19:30.899 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_6
- 2026-04-15 19:19:30.900 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_6
- 2026-04-15 19:19:30.902 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_1
- 2026-04-15 19:19:30.907 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_7
- 2026-04-15 19:19:30.907 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_7
- 2026-04-15 19:19:30.908 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_7
- 2026-04-15 19:19:30.911 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_7
- 2026-04-15 19:19:30.912 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_7
- 2026-04-15 19:19:30.914 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_8
- 2026-04-15 19:19:30.915 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getFffsListUsingGET_1
- 2026-04-15 19:19:30.916 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_8
- 2026-04-15 19:19:30.916 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_9
- 2026-04-15 19:19:30.919 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_8
- 2026-04-15 19:19:30.920 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_8
- 2026-04-15 19:19:30.924 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_2
- 2026-04-15 19:19:30.928 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_9
- 2026-04-15 19:19:30.929 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_10
- 2026-04-15 19:19:30.929 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_11
- 2026-04-15 19:19:30.931 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_9
- 2026-04-15 19:19:30.932 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_9
- 2026-04-15 19:19:30.934 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_10
- 2026-04-15 19:19:30.936 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_12
- 2026-04-15 19:19:30.936 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_13
- 2026-04-15 19:19:30.939 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_10
- 2026-04-15 19:19:30.940 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_10
- 2026-04-15 19:19:30.942 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_11
- 2026-04-15 19:19:30.943 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_14
- 2026-04-15 19:19:30.944 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_15
- 2026-04-15 19:19:30.946 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_11
- 2026-04-15 19:19:30.947 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_11
- 2026-04-15 19:19:30.951 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_12
- 2026-04-15 19:19:30.952 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_16
- 2026-04-15 19:19:30.952 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_8
- 2026-04-15 19:19:30.954 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_12
- 2026-04-15 19:19:30.954 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_12
- 2026-04-15 19:19:30.959 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_13
- 2026-04-15 19:19:30.960 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_17
- 2026-04-15 19:19:30.960 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_9
- 2026-04-15 19:19:30.962 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_13
- 2026-04-15 19:19:30.962 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_13
- 2026-04-15 19:19:30.965 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_14
- 2026-04-15 19:19:30.966 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_18
- 2026-04-15 19:19:30.967 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_19
- 2026-04-15 19:19:30.970 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_14
- 2026-04-15 19:19:30.971 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_14
- 2026-04-15 19:19:30.977 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_15
- 2026-04-15 19:19:30.986 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_6
- 2026-04-15 19:19:31.005 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_15
- 2026-04-15 19:19:31.009 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getAllUsingGET_3
- 2026-04-15 19:19:31.014 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_16
- 2026-04-15 19:19:31.014 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_20
- 2026-04-15 19:19:31.015 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_10
- 2026-04-15 19:19:31.017 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_16
- 2026-04-15 19:19:31.018 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_15
- 2026-04-15 19:19:31.021 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_17
- 2026-04-15 19:19:31.027 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_7
- 2026-04-15 19:19:31.028 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_21
- 2026-04-15 19:19:31.029 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_11
- 2026-04-15 19:19:31.031 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_17
- 2026-04-15 19:19:31.032 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_16
- 2026-04-15 19:19:31.045 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_8
- 2026-04-15 19:19:31.046 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveBatchUsingPOST_1
- 2026-04-15 19:19:31.150 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_18
- 2026-04-15 19:19:31.154 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_22
- 2026-04-15 19:19:31.154 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_12
- 2026-04-15 19:19:31.156 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_18
- 2026-04-15 19:19:31.157 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_17
- 2026-04-15 19:19:31.159 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_19
- 2026-04-15 19:19:31.160 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_23
- 2026-04-15 19:19:31.162 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_19
- 2026-04-15 19:19:31.163 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_18
- 2026-04-15 19:19:31.169 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_20
- 2026-04-15 19:19:31.171 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_24
- 2026-04-15 19:19:31.171 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_13
- 2026-04-15 19:19:31.174 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_20
- 2026-04-15 19:19:31.191 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: Xh_WordToPdfUsingPOST_1
- 2026-04-15 19:19:31.194 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_21
- 2026-04-15 19:19:31.198 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_25
- 2026-04-15 19:19:31.199 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_14
- 2026-04-15 19:19:31.202 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_21
- 2026-04-15 19:19:31.204 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_26
- 2026-04-15 19:19:31.205 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_15
- 2026-04-15 19:19:31.209 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_22
- 2026-04-15 19:19:31.210 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_19
- 2026-04-15 19:19:31.224 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_22
- 2026-04-15 19:19:31.305 [main] WARN s.d.s.w.r.p.ParameterTypeReader - @ModelAttribute annotated parameters should have already been expanded via the ExpandedParameterBuilderPlugin
- 2026-04-15 19:19:31.305 [main] WARN s.d.s.w.r.p.ParameterTypeReader - @ModelAttribute annotated parameters should have already been expanded via the ExpandedParameterBuilderPlugin
- 2026-04-15 19:19:31.311 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportYsqdUsingGET_1
- 2026-04-15 19:19:31.355 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_23
- 2026-04-15 19:19:31.356 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_27
- 2026-04-15 19:19:31.357 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_16
- 2026-04-15 19:19:31.375 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_24
- 2026-04-15 19:19:31.376 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_28
- 2026-04-15 19:19:31.376 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_17
- 2026-04-15 19:19:31.378 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_23
- 2026-04-15 19:19:31.380 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_20
- 2026-04-15 19:19:31.389 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_25
- 2026-04-15 19:19:31.393 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_29
- 2026-04-15 19:19:31.394 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_18
- 2026-04-15 19:19:31.397 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_24
- 2026-04-15 19:19:31.398 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_21
- 2026-04-15 19:19:31.399 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_26
- 2026-04-15 19:19:31.403 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_30
- 2026-04-15 19:19:31.404 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_19
- 2026-04-15 19:19:31.406 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_25
- 2026-04-15 19:19:31.407 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_22
- 2026-04-15 19:19:31.418 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_27
- 2026-04-15 19:19:31.422 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_31
- 2026-04-15 19:19:31.423 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_20
- 2026-04-15 19:19:31.427 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_26
- 2026-04-15 19:19:31.429 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_23
- 2026-04-15 19:19:31.437 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxBtsqPageUsingGET_1
- 2026-04-15 19:19:31.440 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_28
- 2026-04-15 19:19:31.445 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_32
- 2026-04-15 19:19:31.446 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_21
- 2026-04-15 19:19:31.449 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_27
- 2026-04-15 19:19:31.450 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_24
- 2026-04-15 19:19:31.453 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxBzsqPageUsingGET_1
- 2026-04-15 19:19:31.459 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_29
- 2026-04-15 19:19:31.464 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_33
- 2026-04-15 19:19:31.465 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_22
- 2026-04-15 19:19:31.468 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_28
- 2026-04-15 19:19:31.469 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_25
- 2026-04-15 19:19:31.474 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxDbsqPageUsingGET_1
- 2026-04-15 19:19:31.476 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPOST_1
- 2026-04-15 19:19:31.478 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_30
- 2026-04-15 19:19:31.482 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_34
- 2026-04-15 19:19:31.483 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_23
- 2026-04-15 19:19:31.484 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_29
- 2026-04-15 19:19:31.485 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_26
- 2026-04-15 19:19:31.486 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_31
- 2026-04-15 19:19:31.488 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_35
- 2026-04-15 19:19:31.489 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_24
- 2026-04-15 19:19:31.493 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_30
- 2026-04-15 19:19:31.494 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_27
- 2026-04-15 19:19:31.497 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_32
- 2026-04-15 19:19:31.498 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_36
- 2026-04-15 19:19:31.499 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_25
- 2026-04-15 19:19:31.502 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_31
- 2026-04-15 19:19:31.504 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_28
- 2026-04-15 19:19:31.513 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_33
- 2026-04-15 19:19:31.515 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_37
- 2026-04-15 19:19:31.516 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_38
- 2026-04-15 19:19:31.518 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_32
- 2026-04-15 19:19:31.519 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_29
- 2026-04-15 19:19:31.521 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_34
- 2026-04-15 19:19:31.525 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_39
- 2026-04-15 19:19:31.526 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_26
- 2026-04-15 19:19:31.529 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_33
- 2026-04-15 19:19:31.530 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_30
- 2026-04-15 19:19:31.536 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxHfsqPageUsingGET_1
- 2026-04-15 19:19:31.537 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_35
- 2026-04-15 19:19:31.541 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_40
- 2026-04-15 19:19:31.542 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_27
- 2026-04-15 19:19:31.545 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_34
- 2026-04-15 19:19:31.546 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_31
- 2026-04-15 19:19:31.553 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxLwsqPageUsingGET_1
- 2026-04-15 19:19:31.555 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_36
- 2026-04-15 19:19:31.558 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_41
- 2026-04-15 19:19:31.559 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_28
- 2026-04-15 19:19:31.562 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_35
- 2026-04-15 19:19:31.563 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_32
- 2026-04-15 19:19:31.567 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxLxdhsqPageUsingGET_1
- 2026-04-15 19:19:31.569 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_37
- 2026-04-15 19:19:31.574 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_42
- 2026-04-15 19:19:31.575 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_29
- 2026-04-15 19:19:31.579 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_36
- 2026-04-15 19:19:31.580 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_33
- 2026-04-15 19:19:31.589 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_38
- 2026-04-15 19:19:31.594 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_43
- 2026-04-15 19:19:31.595 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_30
- 2026-04-15 19:19:31.599 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_37
- 2026-04-15 19:19:31.600 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_34
- 2026-04-15 19:19:31.607 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxDbsqPageUsingGET_2
- 2026-04-15 19:19:31.615 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_1
- 2026-04-15 19:19:31.619 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_39
- 2026-04-15 19:19:31.622 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_44
- 2026-04-15 19:19:31.623 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_31
- 2026-04-15 19:19:31.628 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_38
- 2026-04-15 19:19:31.635 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_35
- 2026-04-15 19:19:31.637 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_40
- 2026-04-15 19:19:31.639 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_45
- 2026-04-15 19:19:31.640 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_32
- 2026-04-15 19:19:31.644 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_39
- 2026-04-15 19:19:31.645 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_36
- 2026-04-15 19:19:31.647 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_41
- 2026-04-15 19:19:31.650 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_46
- 2026-04-15 19:19:31.651 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_33
- 2026-04-15 19:19:31.656 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_40
- 2026-04-15 19:19:31.658 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_37
- 2026-04-15 19:19:31.660 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_42
- 2026-04-15 19:19:31.662 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_47
- 2026-04-15 19:19:31.663 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_48
- 2026-04-15 19:19:31.666 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_41
- 2026-04-15 19:19:31.667 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_38
- 2026-04-15 19:19:31.669 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_43
- 2026-04-15 19:19:31.673 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_49
- 2026-04-15 19:19:31.674 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_50
- 2026-04-15 19:19:31.677 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_42
- 2026-04-15 19:19:31.678 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_39
- 2026-04-15 19:19:31.680 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_44
- 2026-04-15 19:19:31.685 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_51
- 2026-04-15 19:19:31.686 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_34
- 2026-04-15 19:19:31.688 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_43
- 2026-04-15 19:19:31.689 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_40
- 2026-04-15 19:19:31.694 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxWzjbsqPageUsingGET_1
- 2026-04-15 19:19:31.696 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_45
- 2026-04-15 19:19:31.702 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_52
- 2026-04-15 19:19:31.702 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_35
- 2026-04-15 19:19:31.705 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_44
- 2026-04-15 19:19:31.706 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_41
- 2026-04-15 19:19:31.712 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxXbsqPageUsingGET_1
- 2026-04-15 19:19:31.715 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_46
- 2026-04-15 19:19:31.719 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_53
- 2026-04-15 19:19:31.720 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_36
- 2026-04-15 19:19:31.723 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_45
- 2026-04-15 19:19:31.724 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_42
- 2026-04-15 19:19:31.729 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getWxXhsqPageUsingGET_1
- 2026-04-15 19:19:31.730 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPOST_2
- 2026-04-15 19:19:31.731 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_47
- 2026-04-15 19:19:31.734 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_54
- 2026-04-15 19:19:31.735 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_37
- 2026-04-15 19:19:31.738 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_46
- 2026-04-15 19:19:31.739 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_43
- 2026-04-15 19:19:31.740 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_48
- 2026-04-15 19:19:31.744 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_55
- 2026-04-15 19:19:31.746 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_38
- 2026-04-15 19:19:31.747 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_47
- 2026-04-15 19:19:31.749 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_44
- 2026-04-15 19:19:31.755 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_9
- 2026-04-15 19:19:31.757 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_56
- 2026-04-15 19:19:31.758 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_39
- 2026-04-15 19:19:31.760 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_48
- 2026-04-15 19:19:31.761 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_57
- 2026-04-15 19:19:31.762 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_40
- 2026-04-15 19:19:31.764 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_49
- 2026-04-15 19:19:31.769 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_10
- 2026-04-15 19:19:31.771 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_49
- 2026-04-15 19:19:31.775 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_58
- 2026-04-15 19:19:31.777 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_41
- 2026-04-15 19:19:31.780 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_50
- 2026-04-15 19:19:31.783 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_45
- 2026-04-15 19:19:31.784 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_2
- 2026-04-15 19:19:31.799 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_51
- 2026-04-15 19:19:31.806 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_50
- 2026-04-15 19:19:31.814 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_11
- 2026-04-15 19:19:31.824 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_1
- 2026-04-15 19:19:31.835 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_51
- 2026-04-15 19:19:31.836 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_42
- 2026-04-15 19:19:31.856 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_52
- 2026-04-15 19:19:31.861 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_59
- 2026-04-15 19:19:31.862 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_43
- 2026-04-15 19:19:31.864 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_52
- 2026-04-15 19:19:31.865 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_46
- 2026-04-15 19:19:31.867 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_53
- 2026-04-15 19:19:31.870 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_60
- 2026-04-15 19:19:31.871 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_44
- 2026-04-15 19:19:31.876 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_53
- 2026-04-15 19:19:31.881 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_47
- 2026-04-15 19:19:31.883 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_3
- 2026-04-15 19:19:31.885 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_61
- 2026-04-15 19:19:31.885 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_45
- 2026-04-15 19:19:31.888 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_54
- 2026-04-15 19:19:31.894 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_12
- 2026-04-15 19:19:31.897 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_62
- 2026-04-15 19:19:31.898 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_46
- 2026-04-15 19:19:31.900 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_55
- 2026-04-15 19:19:31.905 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_13
- 2026-04-15 19:19:31.907 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_54
- 2026-04-15 19:19:31.913 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_63
- 2026-04-15 19:19:31.915 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_47
- 2026-04-15 19:19:31.919 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_56
- 2026-04-15 19:19:31.924 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_48
- 2026-04-15 19:19:31.925 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_4
- 2026-04-15 19:19:31.941 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getDaCustomerPageUsingGET_1
- 2026-04-15 19:19:31.965 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_1
- 2026-04-15 19:19:31.974 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_14
- 2026-04-15 19:19:31.991 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_55
- 2026-04-15 19:19:32.027 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: delByIdUsingDELETE_1
- 2026-04-15 19:19:32.029 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: delByIdsUsingDELETE_1
- 2026-04-15 19:19:32.031 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: disableUsingPUT_1
- 2026-04-15 19:19:32.032 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: enableUsingPUT_1
- 2026-04-15 19:19:32.034 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: importExcelUsingPOST_1
- 2026-04-15 19:19:32.037 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_2
- 2026-04-15 19:19:32.042 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_3
- 2026-04-15 19:19:32.058 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_5
- 2026-04-15 19:19:32.060 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_6
- 2026-04-15 19:19:32.062 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_7
- 2026-04-15 19:19:32.066 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_56
- 2026-04-15 19:19:32.074 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_48
- 2026-04-15 19:19:32.094 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: addUsingPOST_1
- 2026-04-15 19:19:32.101 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_57
- 2026-04-15 19:19:32.108 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_64
- 2026-04-15 19:19:32.109 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_49
- 2026-04-15 19:19:32.111 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_57
- 2026-04-15 19:19:32.114 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: save_gdUsingPOST_1
- 2026-04-15 19:19:32.121 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_49
- 2026-04-15 19:19:32.132 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_58
- 2026-04-15 19:19:32.136 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_65
- 2026-04-15 19:19:32.137 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_50
- 2026-04-15 19:19:32.140 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_58
- 2026-04-15 19:19:32.142 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_50
- 2026-04-15 19:19:32.145 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_59
- 2026-04-15 19:19:32.148 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_66
- 2026-04-15 19:19:32.149 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_51
- 2026-04-15 19:19:32.152 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_59
- 2026-04-15 19:19:32.155 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: save_gdUsingPOST_2
- 2026-04-15 19:19:32.158 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_51
- 2026-04-15 19:19:32.159 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_8
- 2026-04-15 19:19:32.165 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_9
- 2026-04-15 19:19:32.175 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_60
- 2026-04-15 19:19:32.209 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_2
- 2026-04-15 19:19:32.212 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_61
- 2026-04-15 19:19:32.215 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_15
- 2026-04-15 19:19:32.241 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_4
- 2026-04-15 19:19:32.247 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_10
- 2026-04-15 19:19:32.253 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_62
- 2026-04-15 19:19:32.260 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_67
- 2026-04-15 19:19:32.262 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_52
- 2026-04-15 19:19:32.269 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_60
- 2026-04-15 19:19:32.271 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_52
- 2026-04-15 19:19:32.316 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_53
- 2026-04-15 19:19:32.396 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_16
- 2026-04-15 19:19:32.442 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getListUsingGET_1
- 2026-04-15 19:19:32.487 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_63
- 2026-04-15 19:19:32.525 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: statUsingGET_1
- 2026-04-15 19:19:32.559 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_11
- 2026-04-15 19:19:32.563 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_64
- 2026-04-15 19:19:32.574 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_68
- 2026-04-15 19:19:32.575 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_53
- 2026-04-15 19:19:32.608 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_61
- 2026-04-15 19:19:32.610 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_54
- 2026-04-15 19:19:32.613 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_65
- 2026-04-15 19:19:32.618 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_62
- 2026-04-15 19:19:32.621 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_55
- 2026-04-15 19:19:32.630 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_12
- 2026-04-15 19:19:32.665 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_63
- 2026-04-15 19:19:32.699 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_17
- 2026-04-15 19:19:32.720 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: monthlyStatUsingGET_1
- 2026-04-15 19:19:32.722 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: monthlyStatSummaryUsingGET_1
- 2026-04-15 19:19:32.727 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getListUsingGET_2
- 2026-04-15 19:19:32.794 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_66
- 2026-04-15 19:19:32.821 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageListUsingGET_1
- 2026-04-15 19:19:32.824 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: statUsingGET_2
- 2026-04-15 19:19:32.858 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_13
- 2026-04-15 19:19:32.860 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_14
- 2026-04-15 19:19:32.885 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_64
- 2026-04-15 19:19:32.892 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_67
- 2026-04-15 19:19:32.932 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getYyWyjtzPageUsingGET_1
- 2026-04-15 19:19:32.933 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_15
- 2026-04-15 19:19:32.937 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateUsingPUT_5
- 2026-04-15 19:19:32.944 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_18
- 2026-04-15 19:19:32.945 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_16
- 2026-04-15 19:19:32.956 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_19
- 2026-04-15 19:19:32.957 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_17
- 2026-04-15 19:19:33.001 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_20
- 2026-04-15 19:19:33.002 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: exportUsingGET_18
- 2026-04-15 19:19:33.004 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_68
- 2026-04-15 19:19:33.011 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_69
- 2026-04-15 19:19:33.013 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_54
- 2026-04-15 19:19:33.019 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_65
- 2026-04-15 19:19:33.021 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_56
- 2026-04-15 19:19:33.024 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getByIdUsingGET_69
- 2026-04-15 19:19:33.025 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdUsingDELETE_70
- 2026-04-15 19:19:33.027 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: removeByIdsUsingDELETE_55
- 2026-04-15 19:19:33.033 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_66
- 2026-04-15 19:19:33.035 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: updateByIdUsingPUT_57
- 2026-04-15 19:19:33.037 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_21
- 2026-04-15 19:19:33.040 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPage2UsingGET_3
- 2026-04-15 19:19:33.045 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: saveUsingPOST_67
- 2026-04-15 19:19:33.054 [main] INFO s.d.s.w.r.o.CachingOperationNameGenerator - Generating unique operation named: getPageUsingGET_22
- 2026-04-15 19:19:33.086 [main] INFO io.undertow - starting server: Undertow - 2.0.31.Final
- 2026-04-15 19:19:33.092 [main] INFO org.xnio - XNIO version 3.3.8.Final
- 2026-04-15 19:19:33.099 [main] INFO org.xnio.nio - XNIO NIO Implementation Version 3.3.8.Final
- 2026-04-15 19:19:33.146 [main] INFO o.s.b.w.e.u.UndertowServletWebServer - Undertow started on port(s) 10506 (http) with context path ''
- 2026-04-15 19:19:33.188 [main] INFO c.a.c.n.r.NacosServiceRegistry - nacos registry, DEFAULT_GROUP collect-fees-api 192.168.200.104:10506 register finished
- 2026-04-15 19:19:33.484 [main] INFO com.tofly.feesapi.FeesApiApplication - Started FeesApiApplication in 39.515 seconds (JVM running for 40.761)
- 2026-04-15 19:19:34.152 [RMI TCP Connection(11)-192.168.200.104] INFO io.undertow.servlet - Initializing Spring DispatcherServlet 'dispatcherServlet'
- 2026-04-15 19:19:34.152 [RMI TCP Connection(11)-192.168.200.104] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
- 2026-04-15 19:19:34.388 [RMI TCP Connection(11)-192.168.200.104] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 235 ms
- 2026-04-15 19:19:45.034 [XNIO-1 task-1] INFO c.t.feesapi.common.LogRecordAspect - =================Request ControllerName【/api/yhgl/yhkhjbxx/page2/getPage2】请求开始==================
- 2026-04-15 19:19:45.160 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.getPage2_mpCount - ==> Preparing: SELECT COUNT(*) AS total FROM yh_khjbxx a WHERE 1 = 1 AND a.ssgs = ? AND (a.khbm LIKE 'D000451%' OR a.yhxm LIKE '%D000451%' OR LOWER(a.pyjm) LIKE LOWER('%D000451%')) AND a.ZHBZ = '1' AND a.dxh = ?
- 2026-04-15 19:19:45.188 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.getPage2_mpCount - ==> Parameters: 1(String), 1(Integer)
- 2026-04-15 19:19:45.259 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.getPage2_mpCount - <== Total: 1
- 2026-04-15 19:19:45.288 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.getPage2 - ==> Preparing: SELECT * FROM ( SELECT TMP.*, ROWNUM ROW_ID FROM ( SELECT a.yhbh, a.ykhbh, a.yhxm, a.yhdz, a.lxdh, a.ssgs, a.sscbpq, a.sscbb, a.xb, a.sj, a.zzdh, a.gzdw, a.bgdh, a.dzyx, a.zjlb, a.zjhm, a.sqrq, a.jdrq, a.yhzt, a.rks, a.hzgx, a.zsjb, a.tsbz, a.tsrq, a.htqd, a.htqdrq, a.htbh, a.bz, a.bz1, a.bz_gcbh, a.bz_pcxlh, a.czrybm, a.czryxm, a.czsj, a.psfz, a.pht, a.pgszz, a.pyyzz, a.pyxzj, a.xydj, a.zw, a.jdrybm, a.jdryxm, a.jdpcxlh, a.sfqz, a.cbryxm, a.xh, a.ssregion, a.xgrybm, a.jtzqljl, a.fplx, (CASE WHEN a.fplx = '1' THEN '普票' WHEN a.fplx = '2' THEN '专票' ELSE '' END) fplxmc, a.fp_name, a.fp_nsrsbh, a.fp_dz, a.fp_lxdh, a.fp_bankname, a.fp_bankcode, a.fp_bz, a.fffs, h.name AS fffsmc, a.khlb, a.pyjm, a.yljl, g.mc AS ssgsmc, e.cbpqmc AS sscbpqmc, f.cbbmc AS sscbbmc, d.name AS sblbmc, b.sbqs, b.sbbh, b.sblb, b.sbsccj, b.sbxh, b.sbkj, b.sblc, b.jddj, b.cbpl, b.bjwz, b.sbccrq, c.name || (SELECT '|' || name FROM bm_sj WHERE code = b.sjbm1) || (SELECT '|' || name FROM bm_sj WHERE code = b.sjbm2) sjmc, k.scds, k.bcds, k.cbxh, nvl(j.yfje, 0) yfje, nvl(j.kjje, 0) kjje, nvl(j.syje, 0) syje, nvl(j.nbsyje, 0) nbsyje, a.khbm, a.ysdz, a.wybz FROM yh_khjbxx a LEFT JOIN yh_cbkxx b ON a.yhbh = b.yhbh AND b.cbkh = '1' LEFT JOIN bm_sj c ON b.sjbm = c.code LEFT JOIN bm_sblb d ON b.sblb = d.code LEFT JOIN bm_cbpq e ON a.sscbpq = e.cbpqbm LEFT JOIN bm_cbb f ON a.sscbb = f.cbbbm LEFT JOIN bm_gs g ON a.ssgs = g.bm LEFT JOIN bm_fffs h ON a.fffs = h.code LEFT JOIN yy_cblr k ON a.yhbh = k.yhbh AND b.cbkh = k.cbkh LEFT JOIN yy_zjzh j ON a.yhbh = j.yhbh WHERE 1 = 1 AND a.ssgs = ? AND (a.khbm LIKE 'D000451%' OR a.yhxm LIKE '%D000451%' OR LOWER(a.pyjm) LIKE LOWER('%D000451%')) AND a.ZHBZ = '1' AND a.dxh = ? ORDER BY a.yhbh ASC, a.yhbh ASC ) TMP WHERE ROWNUM <=?) WHERE ROW_ID > ?
- 2026-04-15 19:19:45.289 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.getPage2 - ==> Parameters: 1(String), 1(Integer), 20(Long), 0(Long)
- 2026-04-15 19:19:45.456 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.getPage2 - <== Total: 1
- 2026-04-15 19:19:45.457 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Preparing: SELECT COUNT(0) sl FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:19:45.457 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - ==> Parameters: D00045101(String)
- 2026-04-15 19:19:45.474 [XNIO-1 task-1] DEBUG c.t.f.y.m.Y.selectExistCbkxx - <== Total: 1
- 2026-04-15 19:19:45.475 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Preparing: SELECT cbkh, cbkid, jfzt FROM yh_cbkxx WHERE yhbh = ?
- 2026-04-15 19:19:45.475 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - ==> Parameters: D00045101(String)
- 2026-04-15 19:19:45.493 [XNIO-1 task-1] DEBUG c.t.f.y.m.YhKhjbxxMapper.selectCbkh - <== Total: 1
- 2026-04-15 19:19:45.494 [XNIO-1 task-1] INFO c.t.feesapi.common.LogRecordAspect - =================【getPage2】请求结束==================
- 2026-04-15 19:20:13.138 [SpringContextShutdownHook] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'taskScheduler'
- 2026-04-15 19:20:13.183 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registering from Nacos Server now...
- 2026-04-15 19:20:13.271 [SpringContextShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - De-registration finished.
- 2026-04-15 19:20:13.273 [SpringContextShutdownHook] INFO o.s.s.c.ThreadPoolTaskScheduler - Shutting down ExecutorService 'taskScheduler'
|