| | |
| | | @ApiOperation(value = "中台水库-分页列表查询", notes = "中台水库-分页列表查询") |
| | | @GetMapping(value = "/queryPageResList") |
| | | public R queryPageResList(AttResBaseGeneralInvestigationVO attResBase, Query query) { |
| | | IPage<AttResBaseGeneralInvestigationVO> pageList = attResBaseService.selectAttResBaseGeneralInvestigation(Condition.getPage(query), attResBase); |
| | | Object pageList = attResBaseService.selectAttResBaseGeneralInvestigation(Condition.getPage(query), attResBase); |
| | | return R.data(pageList); |
| | | } |
| | | |
| | |
| | | @PostMapping("/remove") |
| | | @ApiOperation(value = "物理删除", notes = "传入id") |
| | | public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) { |
| | | return R.status(tbDykeInvestigationService.removeBatchByIds(Arrays.asList(ids))); |
| | | |
| | | // return R.status(tbDykeInvestigationService.removeBatchByIds(Arrays.asList(ids.split(",")))); |
| | | return R.status(tbDykeInvestigationService.removeByIds(Arrays.asList(ids.split(",")))); |
| | | } |
| | | |
| | | @PostMapping("/getInvestigationListByStateId") |