| | |
| | | * @return |
| | | */ |
| | | @GetMapping("categoryAdd") |
| | | @RequiresPermissions("categoryAdd:add") |
| | | @RequiresPermissions("categoryBar:add") |
| | | public String helpCenterAdd() { |
| | | return FebsUtil.view("modules/product/categoryAdd"); |
| | | } |
| | |
| | | * @return |
| | | */ |
| | | @GetMapping("categoryUpdate/{id}") |
| | | @RequiresPermissions("categoryUpdate:update") |
| | | @RequiresPermissions("categoryBar:update") |
| | | public String detail(@PathVariable long id, Model model) { |
| | | AdminMallGoodsCategoryVo data = mallGoodsCategoryService.getMallGoodsCategoryInfoById(id); |
| | | model.addAttribute("goodsCategoryVo", data); |
| | | return FebsUtil.view("modules/product/categoryUpdate"); |
| | | } |
| | | |
| | | |
| | | |
| | | /** |
| | | * 商品分类列表 |
| | | * @return |
| | | */ |
| | | @GetMapping("gameRoomList") |
| | | @RequiresPermissions("gameRoomList:view") |
| | | public String gameRoomList() { |
| | | return FebsUtil.view("modules/product/gameRoomList"); |
| | | } |
| | | } |