完成 FileConfig 的前端模块

This commit is contained in:
YunaiV
2022-03-16 00:21:49 +08:00
parent 18a5c46284
commit 659023bb35
10 changed files with 411 additions and 17 deletions

View File

@ -25,8 +25,7 @@ public interface RoleMenuMapper extends BaseMapperX<RoleMenuDO> {
entity.setMenuId(menuId);
return entity;
}).collect(Collectors.toList());
// TODO 芋艿mybatis plus 增加批量插入的功能
list.forEach(this::insert);
insertBatch(list);
}
default void deleteListByRoleIdAndMenuIds(Long roleId, Collection<Long> menuIds) {