管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2023-03-25 eba563608c2d059a8dbbc789dd2c567f2302c088
src/main/java/com/lf/server/mapper/sys/AttachMapper.java
@@ -1,5 +1,6 @@
package com.lf.server.mapper.sys;
import com.lf.server.entity.data.FmeLogEntity;
import com.lf.server.entity.sys.AttachEntity;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
@@ -60,7 +61,7 @@
     * @param guids
     * @return
     */
    public AttachEntity selectByGuids(String[] guids);
    public List<AttachEntity> selectByGuids(List<String> guids);
    /**
     * 根据表名和GUID查询
@@ -71,6 +72,15 @@
     * @return
     */
    public AttachEntity selectByTabAndGuid(String tab, String tabGuid, String guid);
    /**
     * 根据表名和GUID数组查询
     *
     * @param tab
     * @param guids
     * @return
     */
    public List<AttachEntity> selectByTabGuids(String tab, List<String> guids);
    /**
     * 根据表和GUID查询
@@ -128,4 +138,20 @@
     * @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);
}