管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2022-10-13 e8a5942bd0ac1188281cda29c882bb0e107896dc
src/main/java/com/lf/server/mapper/sys/AuthMapper.java
@@ -33,6 +33,24 @@
    public List<AuthEntity> selectByPage(String name, Integer limit, Integer offset);
    /**
     * 根据菜单查询记录数
     *
     * @param menuid
     * @return
     */
    public Integer selectCountForMenu(Integer menuid);
    /**
     * 根据菜单分页查询
     *
     * @param menuid
     * @param limit
     * @param offset
     * @return
     */
    public List<AuthEntity> selectByPageForMenu(Integer menuid, Integer limit, Integer offset);
    /**
     * 插入一条
     *
     * @param authEntity
@@ -86,5 +104,4 @@
     * @return
     */
    public List<AuthEntity> selectAuthAll();
}