|
|
@ -259,7 +259,7 @@ public class SysMenuServiceImpl implements ISysMenuService
|
|
|
|
public boolean hasChildByMenuId(Long menuId)
|
|
|
|
public boolean hasChildByMenuId(Long menuId)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
int result = menuMapper.hasChildByMenuId(menuId);
|
|
|
|
int result = menuMapper.hasChildByMenuId(menuId);
|
|
|
|
return result > 0 ? true : false;
|
|
|
|
return result > 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
@ -272,7 +272,7 @@ public class SysMenuServiceImpl implements ISysMenuService
|
|
|
|
public boolean checkMenuExistRole(Long menuId)
|
|
|
|
public boolean checkMenuExistRole(Long menuId)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
int result = roleMenuMapper.checkMenuExistRole(menuId);
|
|
|
|
int result = roleMenuMapper.checkMenuExistRole(menuId);
|
|
|
|
return result > 0 ? true : false;
|
|
|
|
return result > 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|