|
@@ -72,6 +72,7 @@ class SysDicServiceImpl : ServiceImpl<SysDicMapper, SysDic>(), ISysDicService, C
|
|
|
if (idx != -1) {
|
|
|
it[idx] = data
|
|
|
}
|
|
|
+ CacheUtil.put(CACHEKEYS.SYS, CACHE_KEY_ALL, it)
|
|
|
}
|
|
|
return data
|
|
|
}
|
|
@@ -98,7 +99,10 @@ class SysDicServiceImpl : ServiceImpl<SysDicMapper, SysDic>(), ISysDicService, C
|
|
|
throw ZenException(ZenExceptionEnum.BIZ_INSERT_ERROR)
|
|
|
}
|
|
|
val cached = CacheUtil.get(CACHEKEYS.SYS, CACHE_KEY_ALL)?.get() as? MutableList<SysDic>
|
|
|
- cached?.add(data)
|
|
|
+ cached?.let {
|
|
|
+ it.add(data)
|
|
|
+ CacheUtil.put(CACHEKEYS.SYS, CACHE_KEY_ALL, it)
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
@ZenTransactional
|
|
@@ -112,6 +116,7 @@ class SysDicServiceImpl : ServiceImpl<SysDicMapper, SysDic>(), ISysDicService, C
|
|
|
it.removeIf {
|
|
|
it.id == id
|
|
|
}
|
|
|
+ CacheUtil.put(CACHEKEYS.SYS, CACHE_KEY_ALL, it)
|
|
|
}
|
|
|
}
|
|
|
}
|