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