| | |
| | | |
| | | @ApiOperation(value = "系统所属公司列表", notes = "系统所属公司列表") |
| | | @ApiResponses({@ApiResponse(code = 200, message = "ok", response = AdminBelongVo.class)}) |
| | | @PostMapping(value = "/belongInList") |
| | | @GetMapping(value = "/belongInList") |
| | | public Result getBelongInList() { |
| | | return iBelongService.getBelongInList(); |
| | | } |
| | |
| | | public Result updateBelong(@RequestBody @Valid AdminUpdateBelongDto adminUpdateBelongDto) { |
| | | return iBelongService.updateBelong(adminUpdateBelongDto); |
| | | } |
| | | |
| | | @ApiOperation(value = "删除系统所属公司", notes = "删除系统所属公司") |
| | | @PostMapping(value = "/delObjs") |
| | | public Result delObjs(@RequestBody @Valid AdminDeleteDto adminDeleteDto) { |
| | | return iBelongService.delObjs(adminDeleteDto); |
| | | } |
| | | } |