|
|
@ -10,6 +10,7 @@ import com.elink.esua.epdc.dto.analysis.pc.screen.result.*; |
|
|
|
import com.elink.esua.epdc.service.EpdcScreenService; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.web.bind.annotation.GetMapping; |
|
|
|
import org.springframework.web.bind.annotation.PathVariable; |
|
|
|
import org.springframework.web.bind.annotation.RequestMapping; |
|
|
|
import org.springframework.web.bind.annotation.RestController; |
|
|
|
|
|
|
@ -271,4 +272,17 @@ public class ApiScreenController { |
|
|
|
ValidatorUtils.validateEntity(formDto); |
|
|
|
return epdcScreenService.vaccinationPersonVaccinationStatistics(formDto); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* 网格治理项目详情 |
|
|
|
* |
|
|
|
* @param id |
|
|
|
* @return com.elink.esua.epdc.commons.tools.utils.Result<com.elink.esua.epdc.dto.item.result.EpdcScreenItemDetailResultDTO> |
|
|
|
* @author lc |
|
|
|
* @since 2021/8/20 19:35 |
|
|
|
*/ |
|
|
|
@GetMapping("gridGovernance/itemDetail/{id}") |
|
|
|
public Result<EpdcScreenItemDetailResultDTO> itemDetail(@PathVariable("id") String id) { |
|
|
|
return epdcScreenService.itemDetail(id); |
|
|
|
} |
|
|
|
} |
|
|
|