20 lines
475 B
Java
20 lines
475 B
Java
package com.isu.gaswellwatch.dao;
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.isu.gaswellwatch.entity.Menu;
|
|
import com.isu.gaswellwatch.vo.MenuVO;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import org.apache.ibatis.annotations.Param;
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
import java.util.List;
|
|
|
|
@Mapper
|
|
@Repository
|
|
public interface MenuDao extends BaseMapper<Menu> {
|
|
|
|
List<MenuVO> selectRoleMenu(@Param("ids") List<Long> ids);
|
|
|
|
}
|
|
|