管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2022-11-01 b1bdad2ff512e73a2dd9049f2ccbddd4634969f7
src/main/java/com/lf/server/mapper/data/DownloadMapper.java
@@ -1,6 +1,7 @@
package com.lf.server.mapper.data;
import com.lf.server.entity.data.DownloadEntity;
import com.lf.server.entity.sys.AttachEntity;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
@@ -47,7 +48,15 @@
    public DownloadEntity selectById(int id);
    /**
     * 添加数据
     * 根据Guid查询
     *
     * @param guid
     * @return
     */
    public DownloadEntity selectByGuid(String guid);
    /**
     * 插入一条
     *
     * @param entity
     * @return
@@ -55,7 +64,7 @@
    public Integer insert(DownloadEntity entity);
    /**
     * 批量添加
     * 插入多条
     *
     * @param list
     * @return
@@ -63,7 +72,7 @@
    public Integer inserts(List<DownloadEntity> list);
    /**
     * 刪除数据
     * 删除一条
     *
     * @param id
     * @return
@@ -71,7 +80,7 @@
    public Integer delete(int id);
    /**
     * 批量删除
     * 删除多条
     *
     * @param ids
     * @return
@@ -79,7 +88,7 @@
    public Integer deletes(List<Integer> ids);
    /**
     * 修改数据
     * 更新一条
     *
     * @param entity
     * @return
@@ -87,7 +96,7 @@
    public Integer update(DownloadEntity entity);
    /**
     * 批量修改
     * 更新多条
     *
     * @param list
     * @return