管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2022-12-30 afb74b6bb1dbb3ea0c0f4eb206d803f30c60ffc2
src/main/java/com/lf/server/mapper/data/MetaFileMapper.java
@@ -25,7 +25,7 @@
     * 分页查询
     *
     * @param name   文件名
     * @param limit  记录表
     * @param limit  记录数
     * @param offset 偏移量
     * @return 列表
     */
@@ -47,7 +47,15 @@
    public MetaFileEntity selectById(int id);
    /**
     * 添加数据
     * 根据GUID查询
     *
     * @param guid
     * @return
     */
    public MetaFileEntity selectByGuid(String guid);
    /**
     * 插入一条
     *
     * @param entity
     * @return
@@ -55,7 +63,7 @@
    public Integer insert(MetaFileEntity entity);
    /**
     * 批量添加
     * 插入多条
     *
     * @param list
     * @return
@@ -63,7 +71,7 @@
    public Integer inserts(List<MetaFileEntity> list);
    /**
     * 刪除数据
     * 删除一条
     *
     * @param id
     * @return
@@ -71,7 +79,7 @@
    public Integer delete(int id);
    /**
     * 批量删除
     * 删除多条
     *
     * @param ids
     * @return
@@ -79,7 +87,7 @@
    public Integer deletes(List<Integer> ids);
    /**
     * 修改数据
     * 更新一条
     *
     * @param entity
     * @return
@@ -87,7 +95,7 @@
    public Integer update(MetaFileEntity entity);
    /**
     * 批量修改
     * 更新多条
     *
     * @param list
     * @return