slideshow
This commit is contained in:
parent
851297436b
commit
69795a9617
|
|
@ -41,7 +41,7 @@ public class BmSlideShowController extends BaseController {
|
|||
* 查询【请填写功能名称】列表
|
||||
*/
|
||||
@ApiOperation(value = "查询【请填写功能名称】列表")
|
||||
@RequiresPermissions("basic:show:list")
|
||||
//@RequiresPermissions("basic:show:list")
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(BmSlideShow bmSlideShow) {
|
||||
startPage();
|
||||
|
|
@ -54,7 +54,7 @@ public class BmSlideShowController extends BaseController {
|
|||
*/
|
||||
@ApiOperation(value = "导出【请填写功能名称】列表")
|
||||
@PreventRepeatSubmit
|
||||
@RequiresPermissions("basic:show:export")
|
||||
//@RequiresPermissions("basic:show:export")
|
||||
@SysLog(title = "【请填写功能名称】", businessType = OperaType.EXPORT, logType = 1,module = "仓储管理->导出【请填写功能名称】")
|
||||
@PostMapping("/export")
|
||||
public void export(HttpServletResponse response, BmSlideShow bmSlideShow) {
|
||||
|
|
@ -67,7 +67,7 @@ public class BmSlideShowController extends BaseController {
|
|||
* 获取【请填写功能名称】详细信息
|
||||
*/
|
||||
@ApiOperation(value = "获取【请填写功能名称】详细信息")
|
||||
@RequiresPermissions("basic:show:query")
|
||||
//@RequiresPermissions("basic:show:query")
|
||||
@GetMapping(value = "/{id}")
|
||||
public AjaxResult getInfo(@PathVariable("id") Long id) {
|
||||
return success(bmSlideShowService.selectBmSlideShowById(id));
|
||||
|
|
@ -78,7 +78,7 @@ public class BmSlideShowController extends BaseController {
|
|||
*/
|
||||
@ApiOperation(value = "新增【请填写功能名称】")
|
||||
@PreventRepeatSubmit
|
||||
@RequiresPermissions("basic:show:add")
|
||||
//@RequiresPermissions("basic:show:add")
|
||||
@SysLog(title = "【请填写功能名称】", businessType = OperaType.INSERT, logType = 1,module = "仓储管理->新增【请填写功能名称】")
|
||||
@PostMapping
|
||||
public AjaxResult add(@RequestBody BmSlideShow bmSlideShow) {
|
||||
|
|
@ -94,7 +94,7 @@ public class BmSlideShowController extends BaseController {
|
|||
*/
|
||||
@ApiOperation(value = "修改【请填写功能名称】")
|
||||
@PreventRepeatSubmit
|
||||
@RequiresPermissions("basic:show:edit")
|
||||
//@RequiresPermissions("basic:show:edit")
|
||||
@SysLog(title = "【请填写功能名称】", businessType = OperaType.UPDATE, logType = 1,module = "仓储管理->修改【请填写功能名称】")
|
||||
@PostMapping("/edit")
|
||||
public AjaxResult edit(@RequestBody BmSlideShow bmSlideShow) {
|
||||
|
|
@ -110,7 +110,7 @@ public class BmSlideShowController extends BaseController {
|
|||
*/
|
||||
@ApiOperation(value = "删除【请填写功能名称】")
|
||||
@PreventRepeatSubmit
|
||||
@RequiresPermissions("basic:show:remove")
|
||||
//@RequiresPermissions("basic:show:remove")
|
||||
@SysLog(title = "【请填写功能名称】", businessType = OperaType.DELETE, logType = 1,module = "仓储管理->删除【请填写功能名称】")
|
||||
@PostMapping("/del/{ids}")
|
||||
public AjaxResult remove(@PathVariable Long[] ids) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue