分佣: 提现记录

This commit is contained in:
owen
2023-09-22 18:35:43 +08:00
parent c146c98b72
commit 637ae8ce1d
7 changed files with 68 additions and 11 deletions

View File

@ -3,6 +3,8 @@ package cn.iocoder.yudao.module.system.api.dict;
import cn.iocoder.yudao.module.system.api.dict.dto.DictDataRespDTO;
import java.util.Collection;
import java.util.List;
import java.util.Map;
/**
* 字典数据 API 接口
@ -30,6 +32,23 @@ public interface DictDataApi {
*/
DictDataRespDTO getDictData(String type, String value);
/**
* 获得指定类型的字典数据,从缓存中
*
* @param type 字典类型
* @return 字典数据
*/
List<DictDataRespDTO> getDictDataList(String type);
/**
* 获得指定类型的字典数据 标签字典,从缓存中
* keyvalue, value: label
*
* @param type 字典类型
* @return 字典数据
*/
Map<String, String> getDictDataLabelMap(String type);
/**
* 解析获得指定的字典数据,从缓存中
*