zzw
2023-12-01 e023474fc9bcc726ed558a0623f1316dddc13152
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
/**
 * Copyright (c) 2018 人人开源 All rights reserved.
 *
 * https://www.renren.io
 *
 * 版权所有,侵权必究!
 */
 
package com.zt.core.sys.service;
 
import com.zt.core.sys.dto.DictDto;
import com.zt.core.sys.dto.DictItemDto;
 
import java.util.List;
 
/**
 * 字典类型管理
 *
 * @author hehz
 * @since 1.0.0
 */
public interface IDictTypeService {
 
    /**
     * 获取字典类型
     *
     * @param dictType
     * @return
     */
    DictDto getByDictType(String dictType);
 
    /**
     * 获取字典值
     *
     * @param dictType
     * @return
     */
    List<DictItemDto> getDictItemsByDictType(String dictType);
 
}