|
|
@ -9,10 +9,7 @@ import com.elink.esua.epdc.dto.analysis.pc.screen.form.EpdcScreenVaccinationAgeV |
|
|
|
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; |
|
|
|
import org.springframework.web.bind.annotation.*; |
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
|
|
|
@ -300,4 +297,18 @@ public class ApiScreenController { |
|
|
|
ValidatorUtils.validateEntity(formDto); |
|
|
|
return epdcScreenService.issueProgress(formDto); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* 网格治理-项目列表 |
|
|
|
* |
|
|
|
* @param formDto |
|
|
|
* @return com.elink.esua.epdc.commons.tools.utils.Result<java.util.List<com.elink.esua.epdc.dto.analysis.pc.screen.result.EpdcScreenItemListResultDTO>> |
|
|
|
* @author lc |
|
|
|
* @since 2021/8/23 19:02 |
|
|
|
*/ |
|
|
|
@GetMapping("gridGovernance/mapItemList") |
|
|
|
public Result<List<EpdcScreenItemListResultDTO>> itemList(EpdcScreenItemListFormDTO formDto) { |
|
|
|
ValidatorUtils.validateEntity(formDto); |
|
|
|
return epdcScreenService.itemList(formDto); |
|
|
|
} |
|
|
|
} |
|
|
|