Commit b38171e5 by guojuxing

权限项操作修复

parent 844ec7b3
......@@ -104,7 +104,7 @@ public class MenuServiceImpl implements MenuService {
@Override
public List<TabSysMenu> selectByIds(List<Integer> menuIdList) {
if (CollectionUtils.isNotEmpty(menuIdList)) {
if (CollectionUtils.isEmpty(menuIdList)) {
return new ArrayList<>();
}
return tabSysMenuMapper.selectByIds(menuIdList);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment