管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2022-11-02 e54ef5e185c46a35641dce47b792c4f20b98879a
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
53
54
55
56
57
58
59
package com.lf.server.mapper.all;
 
import com.lf.server.entity.ctrl.IdNameEntity;
import com.lf.server.entity.ctrl.TabEntity;
import com.lf.server.entity.data.DictEntity;
import com.lf.server.entity.data.DomainEntity;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
 
import java.util.List;
 
/**
 * 父查询Mapper
 * @author WWW
 */
@Mapper
@Repository
public interface BaseQueryMapper {
    /**
     * 模糊搜索用户
     *
     * @param name 用户名
     * @return 实体类集合
     */
    public List<IdNameEntity> selectUserFuzzy(String name);
 
    /**
     * 模糊搜索单位
     *
     * @param name 单位名
     * @return 实体类集合
     */
    public List<IdNameEntity> selectDepFuzzy(String name);
 
    /**
     * 查询所有表
     *
     * @return
     */
    public List<TabEntity> selectTabs();
 
    /**
     * 查询字段信息
     *
     * @param ns  名称空间
     * @param tab 表名
     * @return 实体类集合
     */
    public List<DictEntity> selectFields(String ns, String tab);
 
    /**
     * 查询值域信息
     *
     * @param ns  名称空间
     * @param tab 表名
     * @return 实体类集合
     */
    public List<DomainEntity> selectDomains(String ns, String tab);
}