!215 使用Spring Cache注解优化缓存

This commit is contained in:
MichelleChung
2022-08-13 15:35:55 +00:00
committed by 疯狂的狮子Li
parent 89c1e4f91d
commit 0936aaccea
13 changed files with 151 additions and 119 deletions

View File

@ -53,7 +53,7 @@ public interface ISysConfigService {
* @param config 参数配置信息
* @return 结果
*/
int insertConfig(SysConfig config);
String insertConfig(SysConfig config);
/**
* 修改参数配置
@ -61,7 +61,7 @@ public interface ISysConfigService {
* @param config 参数配置信息
* @return 结果
*/
int updateConfig(SysConfig config);
String updateConfig(SysConfig config);
/**
* 批量删除参数信息
@ -93,6 +93,4 @@ public interface ISysConfigService {
*/
String checkConfigKeyUnique(SysConfig config);
SysConfig getOne(SysConfig config);
}