| | |
| | | package com.sinata.system.mapper; |
| | | |
| | | import java.util.List; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import com.sinata.common.core.domain.entity.SysMenu; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 菜单表 数据层 |
| | |
| | | * @return 结果 |
| | | */ |
| | | public SysMenu checkMenuNameUnique(@Param("menuName") String menuName, @Param("parentId") Long parentId); |
| | | |
| | | List<SysMenu> selectListByRoleId(@Param("roleId") Long roleId); |
| | | |
| | | List<SysMenu> getAllInIds(@Param("menusId") List<Long> menusId); |
| | | |
| | | /** |
| | | * 菜单列表 |
| | | * |
| | | * @return |
| | | */ |
| | | List<SysMenu> selectList(); |
| | | } |