package com.java2nb.system.dao; import com.java2nb.common.annotation.SanitizeMap; import com.java2nb.system.domain.RoleMenuDO; import java.util.List; import java.util.Map; import org.apache.ibatis.annotations.Mapper; /** * 角色与菜单对应关系 * @author xiongxy * @email 1179705413@qq.com * @date 2019-10-03 11:08:59 */ @Mapper public interface RoleMenuDao { RoleMenuDO get(Long id); List list(@SanitizeMap Map map); int count(Map map); int save(RoleMenuDO roleMenu); int update(RoleMenuDO roleMenu); int remove(Long id); int batchRemove(Long[] ids); List listMenuIdByRoleId(Long roleId); int removeByRoleId(Long roleId); int removeByMenuId(Long menuId); int batchSave(List list); }