|
|
@ -389,4 +389,18 @@ public class ApiScreenController { |
|
|
|
ValidatorUtils.validateEntity(formDto); |
|
|
|
return epdcScreenService.getMapVolunteerServices(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); |
|
|
|
} |
|
|
|
} |
|
|
|