fix: 优化逻辑

This commit is contained in:
tangwei 2026-06-29 09:30:40 +08:00
parent 78eb7f9b87
commit 6e4ff0a33f
3 changed files with 12 additions and 1 deletions

View File

@ -65,6 +65,7 @@ public class SecurityConfig {
.requestMatchers("/eq/**").permitAll()
.requestMatchers("/env/**").permitAll()
.requestMatchers("/warn/**").permitAll()
.requestMatchers("/overview/**").permitAll()
.requestMatchers("/wt/**").permitAll()
.requestMatchers("/fb/**").permitAll()
.requestMatchers("/zq/**").permitAll()

View File

@ -151,6 +151,15 @@ public class SwaggerConfig {
.build();
}
@Bean
public GroupedOpenApi groupEnvOverviewApi() {
return GroupedOpenApi.builder()
.group("3.10 全过程-生态环保数据服务-首页(overview)")
.packagesToScan("com.yfd.platform.qgc_env.overview.controller")
.build();
}

View File

@ -5746,7 +5746,8 @@ public class EngEqDataServiceImpl implements EngEqDataService {
}
return switch (field) {
case "id" -> "t.id";
case "stcd" -> "t.stcd";
case "rstcd" -> "t.stcd";
// case "rstcd" -> "t.rstcd";
case "stnm", "ennm" -> "t.ennm";
case "baseId" -> "t.baseId";
case "baseName" -> "t.baseName";