| | |
| | | @ApiResponses({@ApiResponse(code = 200, message = "ok", response = AdminNavigationBarVo.class)}) |
| | | @PostMapping(value = "/barInPage") |
| | | public Result getBarInPage(@RequestBody @Valid AdminNavigationBarDto adminNavigationBarDto) { |
| | | log.info("--->{}", SecurityContextHolder.getContext().getAuthentication()); |
| | | return iNavigationBarService.getBarInPage(adminNavigationBarDto); |
| | | } |
| | | |
| | |
| | | return iNavigationBarService.updateBar(adminUpdateMenuDto); |
| | | } |
| | | |
| | | @ApiOperation(value = "删除导航栏", notes = "删除导航栏") |
| | | @PostMapping(value = "/delObjs") |
| | | public Result delObjs(@RequestBody @Valid AdminDeleteDto adminDeleteDto) { |
| | | return iNavigationBarService.delObjs(adminDeleteDto); |
| | | } |
| | | |
| | | |
| | | } |