管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2023-03-29 71726a1cb05790d6841595ef7daef5173f2cddfa
src/main/java/com/lf/server/mapper/data/MetaMapper.java
@@ -7,7 +7,7 @@
import java.util.List;
/**
 * 源数据
 * 元数据
 * @author WWW
 */
@Mapper
@@ -119,19 +119,27 @@
    public MetaEntity selectByGuid(String guid, String tab);
    /**
     * 查询源数据文件
     * 根据多个ID查询元数据(数据表)
     *
     * @param ids 源数据ID集合
     * @return 源数据文件集合
     * @param ids
     * @return
     */
    public List<MetaEntity> selectByIdsForTab(String ids);
    /**
     * 查询元数据文件
     *
     * @param ids 元数据ID集合
     * @return 元数据文件集合
     */
    public List<MetaEntity> selectMetaFiles(List<Integer> ids);
    /**
     * 查询Excel源数据
     * 查询Excel元数据
     *
     * @param ids  源数据ID集合
     * @param ids  元数据ID集合
     * @param tabs 表名字符串
     * @return 源数据文件集合
     * @return 元数据文件集合
     */
    public List<MetaEntity> selectXlsAnnex(Integer[] ids, String tabs);
@@ -152,20 +160,13 @@
    public Integer inserts(List<MetaEntity> list);
    /**
     * 删除一条
     *
     * @param id
     * @return
     */
    public Integer delete(int id);
    /**
     * 删除多条
     *
     * @param sql
     * @param ids
     * @return
     */
    public Integer deletes(List<Integer> ids);
    public Integer deletes(String sql, String ids);
    /**
     * 更新一条