package com.xcong.farmer.cms.modules.system.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.xcong.farmer.cms.modules.system.entity.RoleMenuEntity; import org.apache.ibatis.annotations.Param; import java.util.List; public interface RoleMenuMapper extends BaseMapper { List selectListByRoleId(@Param("roleId") Long id); void deleteByMenuId(@Param("menuId")Long id); }