|
@@ -273,7 +273,7 @@ public class SysMenuServiceImpl implements ISysMenuService {
|
|
|
* @return 结果
|
|
|
*/
|
|
|
@Override
|
|
|
- public boolean hasChildByMenuIdBatchRemove(List menuIds) {
|
|
|
+ public boolean hasChildByMenuIdBatchRemove(List<Long> menuIds) {
|
|
|
int result = menuMapper.hasChildByMenuIdBatchRemove(menuIds);
|
|
|
return result > 0;
|
|
|
}
|
|
@@ -297,7 +297,7 @@ public class SysMenuServiceImpl implements ISysMenuService {
|
|
|
* @return 结果
|
|
|
*/
|
|
|
@Override
|
|
|
- public boolean checkMenuExistRoleBatchRemove(List menuIds) {
|
|
|
+ public boolean checkMenuExistRoleBatchRemove(List<Long> menuIds) {
|
|
|
int result = roleMenuMapper.checkMenuExistRoleBatchRemove(menuIds);
|
|
|
return result > 0;
|
|
|
}
|
|
@@ -341,7 +341,7 @@ public class SysMenuServiceImpl implements ISysMenuService {
|
|
|
* @return 结果
|
|
|
*/
|
|
|
@Override
|
|
|
- public int batchDeleteMenuByIds(List menuIds) {
|
|
|
+ public int batchDeleteMenuByIds(List<Long> menuIds) {
|
|
|
return menuMapper.batchDeleteMenuById(menuIds);
|
|
|
}
|
|
|
|