|
|
@ -280,7 +280,7 @@ public class EpdcScreenController { |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* 网格治理-议题详情 |
|
|
|
* 网格治理-议题处理进展 |
|
|
|
* |
|
|
|
* @param formDto |
|
|
|
* @return com.elink.esua.epdc.commons.tools.utils.Result<java.util.List<com.elink.esua.epdc.dto.analysis.pc.screen.result.EpdcScreenIssueProgressResultDTO>> |
|
|
@ -292,4 +292,18 @@ public class EpdcScreenController { |
|
|
|
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(@RequestBody EpdcScreenItemListFormDTO formDto) { |
|
|
|
ValidatorUtils.validateEntity(formDto); |
|
|
|
return epdcScreenService.itemList(formDto); |
|
|
|
} |
|
|
|
} |
|
|
|