ICustomDictService.java
1003 字节
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
package com.skua.modules.system.service;
import java.util.List;
import com.baomidou.mybatisplus.extension.service.IService;
import com.skua.core.api.vo.TreeData;
import com.skua.modules.system.entity.CustomDictVO;
/**
* <pre>
* 公共字典自定义服务类
* </pre>
* @author Li Yuanyuan
* @version V0.1, 2022年4月13日 下午5:03:00
*/
public interface ICustomDictService extends IService<CustomDictVO> {
/**
* <pre>
* 根据字典类型获取字典项
* </pre>
* @param code 字典编码
* @return
* @author Li Yuanyuan, 2022年4月13日 下午5:03:11
* @Description: TODO(这里描述这个方法的需求变更情况)
*/
public List<CustomDictVO> queryDictItemsByCode(String code);
/**
* <pre>
* 字典树形结构
* </pre>
* @param code 字典编码
* @return
* @author Li Yuanyuan, 2022年4月13日 下午5:03:35
* @Description: TODO(这里描述这个方法的需求变更情况)
*/
public List<TreeData> queryDictItemsTreeByCode(String code);
}