支付模块-下单接口修改以及支付结果回溯接口修改

This commit is contained in:
2024-12-26 10:20:18 +08:00
parent 4760dba312
commit efd0fa1e44
18 changed files with 498 additions and 222 deletions

View File

@ -135,6 +135,7 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter {
.antMatchers("/system/district/tree").permitAll()
.antMatchers("/sse/**").permitAll()
.antMatchers("/common/upload").permitAll()
.antMatchers("/pay/getresult").permitAll()
// 除上面外的所有请求全部需要鉴权认证
.anyRequest().authenticated()