角色配置按钮权限根据菜单查询按钮修改;
This commit is contained in:
@@ -101,6 +101,21 @@ public class MenuApi extends BaseController {
|
|||||||
return getDataTable(list);
|
return getDataTable(list);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据菜单id查询按钮信息
|
||||||
|
*/
|
||||||
|
@Log(title = "菜单-根据菜单id查询按钮信息", description = "根据菜单id查询按钮信息", businessType = BusinessType.INQUIRE)
|
||||||
|
@GetMapping("/queryOrgButtonlistById")
|
||||||
|
public TableDataInfo queryOrgButtonlistById(MenuDto menuDto)
|
||||||
|
{
|
||||||
|
MenuPo menuPo = new MenuPo();
|
||||||
|
//转换实体
|
||||||
|
BeanUtils.copyProperties(menuDto, menuPo);
|
||||||
|
startPage();
|
||||||
|
List<MenuPo> list = menuApplicationService.queryOrgButtonlistById(menuPo);
|
||||||
|
return getDataTable(list);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 根据id查询菜单信息
|
* 根据id查询菜单信息
|
||||||
*/
|
*/
|
||||||
@@ -562,4 +577,4 @@ public class MenuApi extends BaseController {
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user