2026-07-01 6b5f7c66fc40d7f6099d561e31a34fbd50dd20d3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package cn.iocoder.yudao.framework.common.biz.system.dict;
 
import cn.iocoder.yudao.framework.common.biz.system.dict.dto.DictDataRespDTO;
 
import java.util.List;
 
/**
 * 字典数据 API 接口
 *
 * @author 芋道源码
 */
public interface DictDataCommonApi {
 
    /**
     * 获得指定字典类型的字典数据列表
     *
     * @param dictType 字典类型
     * @return 字典数据列表
     */
    List<DictDataRespDTO> getDictDataList(String dictType);
 
}