管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2023-03-25 e8b508b0c3abe33eed40486a3ae3c73f84ead256
src/main/java/com/lf/server/mapper/sys/AttachMapper.java
@@ -1,5 +1,7 @@
package com.lf.server.mapper.sys;
import com.lf.server.entity.data.FmeLogEntity;
import com.lf.server.entity.data.MetaEntity;
import com.lf.server.entity.sys.AttachEntity;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
@@ -60,7 +62,7 @@
     * @param guids
     * @return
     */
    public List<AttachEntity> selectByGuids(String[] guids);
    public List<AttachEntity> selectByGuids(List<String> guids);
    /**
     * 根据表名和GUID查询
@@ -79,7 +81,7 @@
     * @param guids
     * @return
     */
    public List<AttachEntity> selectByTabGuids(String tab, String[] guids);
    public List<AttachEntity> selectByTabGuids(String tab, List<String> guids);
    /**
     * 根据表和GUID查询
@@ -137,4 +139,28 @@
     * @return
     */
    public Integer updates(List<AttachEntity> list);
    /**
     * 查询FME日志
     *
     * @param tabs
     * @return
     */
    public List<FmeLogEntity> selectFmeLogs(String tabs);
    /**
     * 更新FME日志
     *
     * @param id ID
     * @return
     */
    public Integer updateFmeLog(Integer id);
    /**
     * 根据名称查询元数据
     *
     * @param name
     * @return
     */
    public MetaEntity selectMetaByName(String name);
}