管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2022-10-13 e8a5942bd0ac1188281cda29c882bb0e107896dc
src/main/java/com/lf/server/mapper/sys/AuthMapper.java
@@ -25,12 +25,30 @@
    /**
     * 分页查询
     *
     * @param name 名称
     * @param name   名称
     * @param limit  记录表
     * @param offset 偏移量
     * @return 列表
     */
    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);
    /**
     * 插入一条
@@ -86,5 +104,4 @@
     * @return
     */
    public List<AuthEntity> selectAuthAll();
}