|
@ -389,4 +389,43 @@ public class ApiScreenController { |
|
|
ValidatorUtils.validateEntity(formDto); |
|
|
ValidatorUtils.validateEntity(formDto); |
|
|
return epdcScreenService.getMapVolunteerServices(formDto); |
|
|
return epdcScreenService.getMapVolunteerServices(formDto); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* @Author zhangfenghe |
|
|
|
|
|
* @Description 多元服务-物业服务列表 |
|
|
|
|
|
* @Date 15:17 2021/9/14 |
|
|
|
|
|
* @Param [formDto] |
|
|
|
|
|
* @return com.elink.esua.epdc.commons.tools.utils.Result<java.util.List < com.elink.esua.epdc.dto.analysis.pc.screen.result.EpdcScreenPropertyListResultDTO>> |
|
|
|
|
|
**/ |
|
|
|
|
|
@GetMapping("multipleService/propertyListServices") |
|
|
|
|
|
public Result<List<EpdcScreenPropertyListResultDTO>> propertyListServices(EpdcScreenBasePageFormDTO formDto){ |
|
|
|
|
|
ValidatorUtils.validateEntity(formDto); |
|
|
|
|
|
return epdcScreenService.getPropertyListServices(formDto); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* @Author zhangfenghe |
|
|
|
|
|
* @Description 多元服务-地图-物业服务列表 |
|
|
|
|
|
* @Date 15:21 2021/9/14 |
|
|
|
|
|
* @Param [formDto] |
|
|
|
|
|
* @return com.elink.esua.epdc.commons.tools.utils.Result<java.util.List < com.elink.esua.epdc.dto.analysis.pc.screen.result.EpdcScreenMapPropertyServicesResultDTO>> |
|
|
|
|
|
**/ |
|
|
|
|
|
@GetMapping("multipleService/mapPropertyServices") |
|
|
|
|
|
public Result<List<EpdcScreenMapPropertyServicesResultDTO>> mapPropertyServices(EpdcScreenBasePageFormDTO formDto){ |
|
|
|
|
|
ValidatorUtils.validateEntity(formDto); |
|
|
|
|
|
return epdcScreenService.getMapPropertyServices(formDto); |
|
|
|
|
|
} |
|
|
|
|
|
/** |
|
|
|
|
|
* 疫情防控 - 监测点列表 |
|
|
|
|
|
* |
|
|
|
|
|
* @param formDto |
|
|
|
|
|
* @return com.elink.esua.epdc.commons.tools.utils.Result<java.util.List<com.elink.esua.epdc.dto.analysis.pc.screen.result.EpdcScreenTestingPointResultDTO>> |
|
|
|
|
|
* @Author zhangyong |
|
|
|
|
|
* @Date 14:13 2021-09-10 |
|
|
|
|
|
**/ |
|
|
|
|
|
@GetMapping("vaccination/testingPoint") |
|
|
|
|
|
public Result<List<EpdcScreenTestingPointResultDTO>> testingPoint(EpdcScreenBasePageFormDTO formDto){ |
|
|
|
|
|
ValidatorUtils.validateEntity(formDto); |
|
|
|
|
|
return epdcScreenService.getTestingPointList(formDto); |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|