| | |
| | | /** |
| | | * 获取轮播图管理列表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:banner:list')") |
| | | @PreAuthorize("@ss.hasPermi('system:banner')") |
| | | @ApiOperation(value = "获取轮播图分页列表") |
| | | @PostMapping(value = "/pageList") |
| | | public R<PageInfo<TBanner>> pageList(@RequestBody TBannerQuery query) { |
| | |
| | | /** |
| | | * 修改轮播图 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:banner:update')") |
| | | @PreAuthorize("@ss.hasPermi('system:banner:edit')") |
| | | @Log(title = "轮播图信息-修改轮播图", businessType = BusinessType.UPDATE) |
| | | @ApiOperation(value = "修改轮播图") |
| | | @PostMapping(value = "/update") |