管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2022-10-11 24776e7ffb4815202fbe0035da4198103469e706
src/main/java/com/lf/server/mapper/sys/AuthMapper.java
@@ -33,7 +33,7 @@
    public List<AuthEntity> selectByPage(String name, Integer limit, Integer offset);
    /**
     * 添加数据
     * 插入一条
     *
     * @param authEntity
     * @return
@@ -41,7 +41,7 @@
    public Integer insertAuth(AuthEntity authEntity);
    /**
     * 批量添加
     * 插入多条
     *
     * @param authEntity
     * @return
@@ -49,7 +49,7 @@
    public Integer insertAuths(List<AuthEntity> authEntity);
    /**
     * 刪除数据
     * 删除一条
     *
     * @param id
     * @return
@@ -57,7 +57,7 @@
    public Integer deleteAuth(int id);
    /**
     * 批量删除
     * 删除多条
     *
     * @param ids
     * @return
@@ -65,7 +65,7 @@
    public Integer deleteAuths(List<Integer> ids);
    /**
     * 修改数据
     * 更新一条
     *
     * @param authEntity
     * @return