123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- package org.jeecg.modules.system.mapper;
- import java.util.List;
- import org.apache.ibatis.annotations.Param;
- import org.apache.ibatis.annotations.Select;
- import org.apache.ibatis.annotations.Update;
- import org.jeecg.modules.system.entity.SysPermission;
- import org.jeecg.modules.system.model.TreeModel;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- /**
- * <p>
- * 菜单权限表 Mapper 接口
- * </p>
- *
- * @Author scott
- * @since 2018-12-21
- */
- public interface SysPermissionMapper extends BaseMapper<SysPermission> {
- /**
- * 通过父菜单ID查询子菜单
- * @param parentId
- * @return
- */
- public List<TreeModel> queryListByParentId(@Param("parentId") String parentId);
-
- /**
- * 根据用户查询用户权限
- */
- public List<SysPermission> queryByUser(@Param("username") String username);
-
- /**
- * 修改菜单状态字段: 是否子节点
- */
- @Update("update sys_permission set is_leaf=#{leaf} where id = #{id}")
- public int setMenuLeaf(@Param("id") String id,@Param("leaf") int leaf);
-
- /**
- * 获取模糊匹配规则的数据权限URL
- */
- @Select("SELECT url FROM sys_permission WHERE del_flag = 0 and menu_type = 2 and url like '%*%'")
- public List<String> queryPermissionUrlWithStar();
- /**
- * 根据用户账号查询菜单权限
- * @param sysPermission
- * @param username
- * @return
- */
- public int queryCountByUsername(@Param("username") String username, @Param("permission") SysPermission sysPermission);
- }
|