package com.ruoyi.framework.web.service;
|
|
import java.util.List;
|
|
import com.ruoyi.web.server.system.ISysDictDataService;
|
import com.ruoyi.web.server.system.ISysDictTypeService;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.stereotype.Service;
|
import com.ruoyi.common.core.domain.entity.SysDictData;
|
|
/**
|
* RuoYi首创 html调用 thymeleaf 实现字典读取
|
*
|
* @author ruoyi
|
*/
|
@Service("dict")
|
public class DictService
|
{
|
@Autowired
|
private ISysDictTypeService dictTypeService;
|
|
@Autowired
|
private ISysDictDataService dictDataService;
|
|
/**
|
* 根据字典类型查询字典数据信息
|
*
|
* @param dictType 字典类型
|
* @return 参数键值
|
*/
|
public List<SysDictData> getType(String dictType)
|
{
|
return dictTypeService.selectDictDataByType(dictType);
|
}
|
|
/**
|
* 根据字典类型和字典键值查询字典数据信息
|
*
|
* @param dictType 字典类型
|
* @param dictValue 字典键值
|
* @return 字典标签
|
*/
|
public String getLabel(String dictType, String dictValue)
|
{
|
return dictDataService.selectDictLabel(dictType, dictValue);
|
}
|
}
|