SysDictMapper.java
3.0 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package com.skua.modules.system.mapper;
import java.util.List;
import java.util.Map;
import com.skua.core.api.vo.DictModel;
import com.skua.modules.system.entity.SysDict;
import com.skua.modules.system.entity.SysUserDepart;
import com.skua.modules.system.entity.SysUserRole;
import com.skua.modules.system.model.DuplicateCheckVo;
import com.skua.modules.system.model.TreeSelectModel;
import org.apache.ibatis.annotations.Param;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Select;
/**
* 字典表 Mapper 接口
*/
public interface SysDictMapper extends BaseMapper<SysDict> {
/**
* 重复检查SQL
* @return
*/
public Long duplicateCheckCountSql(DuplicateCheckVo duplicateCheckVo);
public Long duplicateCheckCountSqlNoDataId(DuplicateCheckVo duplicateCheckVo);
public List<DictModel> queryDictItemsByCode(@Param("code") String code);
public List<DictModel> queryTableDictItemsByCode(@Param("table") String table,@Param("text") String text,@Param("code") String code);
public List<DictModel> queryTableDictItemsByCodeAndFilter(@Param("table") String table,@Param("text") String text,@Param("code") String code,@Param("filterSql") String filterSql);
public String queryDictTextByKey(@Param("code") String code,@Param("key") String key);
public String queryTableDictTextByKey(@Param("table") String table,@Param("text") String text,@Param("code") String code,@Param("key") String key);
/**
* 查询所有部门 作为字典信息 id -->value,departName -->text
* @return
*/
public List<DictModel> queryAllDepartBackDictModel();
/**
* 查询所有用户 作为字典信息 username -->value,realname -->text
* @return
*/
public List<DictModel> queryAllUserBackDictModel();
/**
* 通过关键字查询出字典表
* @param table
* @param text
* @param code
* @param keyword
* @return
*/
public List<DictModel> queryTableDictItems(@Param("table") String table,@Param("text") String text,@Param("code") String code,@Param("keyword") String keyword);
/**
* 根据表名、显示字段名、存储字段名 查询树
* @param table
* @param text
* @param code
* @param pid
* @param hasChildField
* @return
*/
List<TreeSelectModel> queryTreeList(@Param("table") String table, @Param("text") String text, @Param("code") String code, @Param("pidField") String pidField, @Param("pid") String pid, @Param("hasChildField") String hasChildField);
@Select("select * from sys_user_role where role_id = #{roleId} and user_id = #{userId}")
SysUserRole getSysUserRole(@Param("roleId")String roleId, @Param("userId")String userId);
@Select("select * from sys_user_depart where dep_id = #{depId} and user_id = #{userId}")
SysUserDepart getSysUserDepart(@Param("depId")String depId, @Param("userId")String userId);
String queryDictIdByCode(@Param("code")String code);
List<Map<String, String>> getBusinessMapByTable(@Param("code")String code, @Param("table")String table, @Param("text")String text);
List<Map<String, String>> getDictMapByCode(@Param("code")String code);
}