| | |
| | | @PostMapping("/remove") |
| | | @ApiOperationSupport(order = 8) |
| | | @ApiOperation(value = "删除", notes = "传入ids") |
| | | public R remove(String creditcode) { |
| | | informationService.deleteIn(creditcode); |
| | | informationService.deleteSh(creditcode); |
| | | informationService.deleteMe(creditcode); |
| | | public R remove(String ids) { |
| | | informationService.deleteIn(ids); |
| | | informationService.deleteSh(ids); |
| | | informationService.deleteMe(ids); |
| | | return R.success("删除成功"); |
| | | } |
| | | |
| | |
| | | List<Map<Object, Object>> maps = informationService.selectIn(jurisdiction); |
| | | return R.data(maps); |
| | | } |
| | | |
| | | } |