This commit is contained in:
2023-06-05 16:01:00 +08:00
parent 951a08a0a1
commit f2457ff1d8
20 changed files with 156 additions and 100 deletions

View File

@ -71,7 +71,7 @@ public interface SysConfigApiService {
* 根据参数键名查询参数值
*
* @param configKey configKey
* @return
* @return value
*/
String selectConfigByKey(String configKey);
}

View File

@ -19,5 +19,5 @@ public interface SysDictApiService {
* @param dictType 字典类型
* @return 字典数据集合信息
*/
List<SysDictData> selectByDictType(String dictType);
List<SysDictData> selectFromCache(String dictType);
}