13693261870
2025-07-08 810ad9dbaa8553299a4516790a9f546a9b84905e
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
package com.terra.system.mapper.data;
 
import com.terra.system.entity.data.LayerEntity;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
 
import java.util.List;
 
/**
 * 图层
 * @author WWW
 */
@Mapper
@Repository
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);
}