|
|
@ -17,19 +17,15 @@ |
|
|
|
|
|
|
|
package com.epmet.controller; |
|
|
|
|
|
|
|
import com.epmet.common.token.annotation.Login; |
|
|
|
import com.epmet.commons.tools.annotation.LoginUser; |
|
|
|
import com.epmet.commons.tools.security.dto.TokenDto; |
|
|
|
import com.epmet.commons.tools.utils.Result; |
|
|
|
import com.epmet.commons.tools.validator.ValidatorUtils; |
|
|
|
import com.epmet.dto.form.CategoryCountListFormDTO; |
|
|
|
import com.epmet.dto.form.StatsResiListFormDTO; |
|
|
|
import com.epmet.dto.form.StatsResiWarnCountFormDTO; |
|
|
|
import com.epmet.dto.form.StatsResiWarnFormDTO; |
|
|
|
import com.epmet.dto.result.CategoryCountListResultDTO; |
|
|
|
import com.epmet.dto.result.IcStatsResiResultDTO; |
|
|
|
import com.epmet.dto.result.IcStatsResiWarnBuildingResultDTO; |
|
|
|
import com.epmet.dto.result.IcStatsResiWarnUserResultDTO; |
|
|
|
import com.epmet.service.IcStatsResiWarnService; |
|
|
|
import com.epmet.service.StatsResiWarnService; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
@ -80,6 +76,12 @@ public class StatsResiWarnController { |
|
|
|
return new Result<List<IcStatsResiResultDTO>>().ok(statsResiWarnService.list2(formDTO)); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* 可视化分析-人员预警,各类别楼栋数量展示 |
|
|
|
* @param tokenDto |
|
|
|
* @param formDTO 只有agencyId |
|
|
|
* @return |
|
|
|
*/ |
|
|
|
@PostMapping("buildingwarnlist") |
|
|
|
public Result buildingWarnList(@LoginUser TokenDto tokenDto,@RequestBody StatsResiWarnFormDTO formDTO){ |
|
|
|
ValidatorUtils.validateEntity(formDTO, StatsResiWarnFormDTO.ListSelectedBuilding.class); |
|
|
@ -89,6 +91,13 @@ public class StatsResiWarnController { |
|
|
|
return new Result().ok(icStatsResiWarnBuildingResultDTOS); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* 可视化分析-人员预警,楼栋列表展示 |
|
|
|
* @param tokenDto |
|
|
|
* @param formDTO |
|
|
|
* @return |
|
|
|
*/ |
|
|
|
@PostMapping("userwarnlist") |
|
|
|
public Result userWarnList(@LoginUser TokenDto tokenDto,@RequestBody StatsResiWarnFormDTO formDTO){ |
|
|
|
ValidatorUtils.validateEntity(formDTO, StatsResiWarnFormDTO.ListSelectedUser.class); |
|
|
|