package com.ots.project.system.role.mapper; import com.ots.project.system.role.domain.RoleMenu; import java.util.List; public interface RoleMenuMapper { public int deleteRoleMenuByRoleId(Long roleId); public int deleteRoleMenu(Long[] ids); public int selectCountRoleMenuByMenuId(Long menuId); public int batchRoleMenu(List roleMenuList); }