| | |
| | | * @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); |