注释修正

This commit is contained in:
RuoYi 2018-04-24 14:56:13 +08:00
parent b7c123e2d3
commit dacd7155b5

View File

@ -19,7 +19,7 @@ import com.ruoyi.project.system.menu.service.IMenuService;
import com.ruoyi.project.system.role.domain.Role;
/**
* 角色信息
* 菜单信息
*
* @author ruoyi
*/
@ -170,7 +170,7 @@ public class MenuController extends BaseController
* 选择菜单树
*/
@GetMapping("/selectMenuTree/{menuId}")
public String selectDeptTree(@PathVariable("menuId") Long menuId, Model model)
public String selectMenuTree(@PathVariable("menuId") Long menuId, Model model)
{
model.addAttribute("treeName", menuService.selectMenuById(menuId).getMenuName());
return prefix + "/tree";