月球大数据地理空间分析展示平台-【后端】-月球后台服务
1
13693261870
2024-11-13 024e90554d19c2342f27a26f91bbea378f84da82
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
50
51
52
package com.moon.server.mapper.data;
 
import com.moon.server.entity.data.MetaEntity;
import com.moon.server.entity.data.MetaPubEntity;
import com.moon.server.entity.data.PublishEntity;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
 
import java.util.List;
 
@Mapper
@Repository
@SuppressWarnings("ALL")
public interface PublishMapper {
    public Integer selectCount(String name, String dircode, String type);
 
    public List<PublishEntity> selectByPage(String name, String dircode, String type, Integer limit, Integer offset);
 
    public List<PublishEntity> selectAll();
 
    public PublishEntity selectById(int id);
 
    public List<PublishEntity> selectByIds(String ids);
 
    public List<MetaEntity> selectMetasByPubid(Integer pubid);
 
    public List<PublishEntity> selectRaster();
 
    public PublishEntity selectByLayerId(Integer layerId);
 
    public List<String> selectCodesForDir(String dircode, Integer isDom);
 
    public Integer insert(PublishEntity entity);
 
    public Integer inserts(List<PublishEntity> list);
 
    public Integer insertPubDown(Integer pubid, Integer downid, Integer createUser);
 
    public Integer insertMetaPub(MetaPubEntity mp);
 
    public Integer delete(int id);
 
    public Integer deletes(String ids);
 
    public Integer update(PublishEntity entity);
 
    public Integer updates(List<PublishEntity> list);
 
    public Integer selectMetasByCount(String depcode, String dircode, Integer verid, String types, String name);
 
    public List<MetaEntity> selectMetasByPage(String depcode, String dircode, Integer verid, String types, String name, Integer limit, Integer offset);
}