月球大数据地理空间分析展示平台-【后端】-月球后台服务
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
package com.moon.server.mapper.all;
 
import com.moon.server.entity.ctrl.IdNameEntity;
import com.moon.server.entity.ctrl.KeyValueEntity;
import com.moon.server.entity.ctrl.TabEntity;
import com.moon.server.entity.data.DictEntity;
import com.moon.server.entity.data.DomainEntity;
import com.moon.server.entity.sys.AttachEntity;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
 
import java.util.List;
 
@SuppressWarnings("ALL")
@Mapper
@Repository
public interface BaseQueryMapper {
    public List<IdNameEntity> selectUserFuzzy(String name);
 
    public List<IdNameEntity> selectDepFuzzy(String name);
 
    public Integer selectTabsForCount(String tab, String typesFilter, String field);
 
    public List<TabEntity> selectTabsByPage(String tab, String typesFilter, String field, String filters, Integer limit, Integer offset);
 
    public List<DictEntity> selectFields(String ns, String tab);
 
    public List<DomainEntity> selectDomains(String ns, String tab);
 
    public String selectRoute(double x1, double y1, double x2, double y2);
 
    public List<KeyValueEntity> selectLocation(String wkt);
 
    public List<KeyValueEntity> selectDirTypes(String name);
 
    public List<AttachEntity> selectAnnexByTab(String tab, String gids);
}