You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tobacco/bs-system/src/main/java/com/bs/system/mapper/SysRoleMenuMapper.java

45 lines
897 B

1 year ago
package com.bs.system.mapper;
import java.util.List;
2 months ago
import com.bs.system.domain.SysRoleMenu;
1 year ago
/**
*
*
* @author bs
*/
2 months ago
public interface SysRoleMenuMapper
1 year ago
{
/**
* 使
*
* @param menuId ID
* @return
*/
public int checkMenuExistRole(Long menuId);
/**
* ID
*
* @param roleId ID
* @return
*/
public int deleteRoleMenuByRoleId(Long roleId);
/**
*
*
* @param ids ID
* @return
*/
public int deleteRoleMenu(Long[] ids);
/**
*
*
* @param roleMenuList
* @return
*/
public int batchRoleMenu(List<SysRoleMenu> roleMenuList);
}