SysDictMapper.java 3.0 KB
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);
}