月球大数据地理空间分析展示平台-【后端】-月球后台服务
1
13693261870
2024-11-17 796b44ea813a1133beae4f3a67f1c0263510c0c7
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
package com.moon.server.mapper.sys;
 
import com.moon.server.entity.sys.LayerEntity;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
 
import java.util.List;
 
@Mapper
@Repository
@SuppressWarnings("ALL")
public interface LayerMapper {
    public List<LayerEntity> selectLayers(String uid);
 
    public List<LayerEntity> selectProjectLayers(String uid);
 
    public Integer selectCount(String name);
 
    public List<LayerEntity> selectByPage(String name, Integer limit, Integer offset);
 
    public List<LayerEntity> selectAll(Integer flag);
 
    public LayerEntity selectById(int id);
 
    public Integer selectIdByName(String name);
 
    public Integer selectMaxOrderNumByPid(Integer pid);
 
    public LayerEntity selectByResId(Integer resid);
 
    public Integer insert(LayerEntity entity);
 
    public Integer inserts(List<LayerEntity> list);
 
    public Integer delete(int id);
 
    public Integer deletes(List<Integer> ids);
 
    public Integer update(LayerEntity entity);
 
    public Integer updates(List<LayerEntity> list);
}