管道基础大数据平台系统开发-【后端】-Server
1
sws
2023-01-14 5573ab68a6bf98014e6948d0c5ab538a90ce0ada
src/main/java/com/lf/server/mapper/data/MetaMapper.java
@@ -1,7 +1,6 @@
package com.lf.server.mapper.data;
import com.lf.server.entity.data.MetaEntity;
import com.lf.server.entity.data.MetaFileEntity;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
@@ -74,12 +73,20 @@
    public MetaEntity selectById(int id);
    /**
     * 根据GUID查询
     *
     * @param guid 文件GUID
     * @return
     */
    public MetaEntity selectByGuid(String guid);
    /**
     * 查询元数据文件
     *
     * @param ids 元数据ID集合
     * @return 元数据文件集合
     */
    public List<MetaFileEntity> selectMetaFiles(List<Integer> ids);
    public List<MetaEntity> selectMetaFiles(List<Integer> ids);
    /**
     * 插入一条
@@ -112,14 +119,6 @@
     * @return
     */
    public Integer deletes(List<Integer> ids);
    /**
     * 级联删除
     *
     * @param ids
     * @return
     */
    public Integer deleteCascade(String ids);
    /**
     * 更新一条