设备上电审核基本信息上报接口,逻辑完善

This commit is contained in:
mi9688
2024-12-10 09:13:00 +08:00
parent 71f4f3b139
commit 81e5429ee9
9 changed files with 398 additions and 36 deletions

View File

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