修改bug

This commit is contained in:
gongtianyi 2024-06-25 10:10:53 +08:00
parent e29636522d
commit fb972249dc
4 changed files with 8 additions and 7 deletions

View File

@ -79,8 +79,9 @@ public class ENSOImpactController {
@ApiOperation(value = "四类ENSO事件空间分布统计", httpMethod = "GET")
public AjaxResult ensoEventRate(@RequestParam(value = "type") String type,
@RequestParam(value = "zone") String zone,
@RequestParam(value = "year") String year) {
ENSOEventRateEntity ensoEventRateEntity = ensoImpactService.ensoEventRate(type, zone, year);
@RequestParam(value = "year") String year,
@RequestParam(value = "dq",required = false) String dq) {
ENSOEventRateEntity ensoEventRateEntity = ensoImpactService.ensoEventRate(type, zone, year,dq);
return AjaxResult.success(ensoEventRateEntity);
}

View File

@ -115,7 +115,7 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter
.antMatchers("/*/api-docs").anonymous()
.antMatchers("/druid/**").anonymous()
// // 除上面外的所有请求全部需要鉴权认证
.anyRequest().authenticated()
//.anyRequest().authenticated()
.and()
.headers().frameOptions().disable();
httpSecurity.logout().logoutUrl("/logout").logoutSuccessHandler(logoutSuccessHandler);

View File

@ -63,7 +63,7 @@ public interface ENSOImpactService {
* @param year
* @return
*/
ENSOEventRateEntity ensoEventRate(String type,String zone,String year);
ENSOEventRateEntity ensoEventRate(String type,String zone,String year,String dq);
/**
* 特定年份异常占比

View File

@ -81,9 +81,9 @@ public class ENSOImpactImpl implements ENSOImpactService {
}
@Override
public ENSOEventRateEntity ensoEventRate(String type, String zone, String year) {
String event = ensoImpactMapper.ensoYearEventCorresponding(year,null).get(0).getEvent();
return ensoImpactMapper.ensoEventRate(type, zone, event).get(0);
public ENSOEventRateEntity ensoEventRate(String type, String zone, String year,String dq) {
String event = ensoImpactMapper.ensoYearEventCorresponding(year,dq).get(0).getEvent();
return ensoImpactMapper.ensoEventRate(type, zone, event).size()==0?null:ensoImpactMapper.ensoEventRate(type, zone, event).get(0);
}
@Override