xyc
2025-02-21 664db98c9e8595ce4dd636a27f480e3a08b81ff5
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);
 
}