月球大数据地理空间分析展示平台-【后端】-月球后台服务
1
13693261870
2024-11-13 e16f5fdfbc1c49f4c519f05b190e96e497253b51
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package com.moon.server.mapper.sys;
 
import com.moon.server.entity.data.FmeLogEntity;
import com.moon.server.entity.sys.AttachEntity;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
 
import java.util.List;
 
@Mapper
@Repository
@SuppressWarnings("ALL")
public interface AttachMapper {
    public Integer selectCount(String name);
 
    public List<AttachEntity> selectByPage(String name, Integer limit, Integer offset);
 
    public List<AttachEntity> selectAll();
 
    public AttachEntity selectById(int id);
 
    public AttachEntity selectByGuid(String guid);
 
    public List<AttachEntity> selectByGuids(List<String> guids);
 
    public AttachEntity selectByTabAndGuid(String tab, String tabGuid, String guid);
 
    public List<AttachEntity> selectByTabGuids(String tab, List<String> guids);
 
    public List<AttachEntity> selectByTab(String tab, String guid);
 
    public Integer insert(AttachEntity entity);
 
    public Integer inserts(List<AttachEntity> list);
 
    public Integer delete(int id);
 
    public Integer deletes(List<Integer> ids);
 
    public Integer update(AttachEntity entity);
 
    public Integer updates(List<AttachEntity> list);
 
    public List<FmeLogEntity> selectFmeLogs(String tabs);
 
    public Integer updateFmeLog(Integer id);
 
    public Integer insertAttachByMeta(String tab, String tabGuid, String metaName, String dirid);
}