修复类型不对导致无法回推成功

This commit is contained in:
lulz1 2024-03-17 15:09:03 +08:00
parent 283dc8502b
commit 0ff9b994da
1 changed files with 3 additions and 2 deletions

View File

@ -29,12 +29,13 @@ public class WebConfig implements WebMvcConfigurer {
registry.addInterceptor(new JwtTokenAdminInterceptor())
.addPathPatterns("/**")
.excludePathPatterns("/public/**", "/login");
registry.addInterceptor(new SupplierResponseInterceptor())
.addPathPatterns("/public/CTrip/status");
//调用bean
registry.addInterceptor(getMyRequestLoggingInterceptor())
.addPathPatterns("/**")
.excludePathPatterns("/public/log/pageQuery", "/order/pageQuery", "/OrderDetail/query/page", "/order/query/**", "/location/**");
registry.addInterceptor(new SupplierResponseInterceptor())
.addPathPatterns("/public/CTrip/status");
}