提交roll日创建

This commit is contained in:
2026-07-14 18:46:20 +08:00
parent 6971daf9a7
commit 01444937bd
6 changed files with 66 additions and 11 deletions
@@ -1,6 +1,7 @@
package com.ruoyi.system.mapper;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import com.ruoyi.system.domain.SysRoleMenu;
/**
@@ -34,6 +35,14 @@ public interface SysRoleMenuMapper
*/
public int deleteRoleMenu(Long[] ids);
/**
* 通过菜单ID集合删除角色和菜单关联
*
* @param menuIds 菜单ID集合
* @return 结果
*/
public int deleteRoleMenuByMenuIds(@Param("menuIds") List<Long> menuIds);
/**
* 批量新增角色菜单信息
*