|
@@ -23,6 +23,7 @@ import org.springframework.stereotype.Service
|
|
|
@Suppress("UNCHECKED_CAST")
|
|
|
@Service
|
|
|
class SysDictValueServiceImpl : ServiceImpl<SysDictValueMapper, SysDictValue>(), ISysDictValueService {
|
|
|
+
|
|
|
override fun init() {
|
|
|
getListCacheable()
|
|
|
}
|
|
@@ -30,7 +31,7 @@ class SysDictValueServiceImpl : ServiceImpl<SysDictValueMapper, SysDictValue>(),
|
|
|
override fun getListCacheable(): MutableList<SysDictValue> {
|
|
|
var data = RedisCacheUtil.get(ZenConstants.CACHE_KEY_SYS, CacheKeyConstants.DICT_VALUE_KEY) as? MutableList<SysDictValue>
|
|
|
if (data == null || data.isEmpty()) {
|
|
|
- data = baseMapper.selectWOLogic(null)
|
|
|
+ data = baseMapper.selectWOLogic(EntityWrapper<SysDictValue>().orderBy("sort"))
|
|
|
RedisCacheUtil.put(ZenConstants.CACHE_KEY_SYS, CacheKeyConstants.DICT_VALUE_KEY, data)
|
|
|
}
|
|
|
return data
|
|
@@ -80,6 +81,20 @@ class SysDictValueServiceImpl : ServiceImpl<SysDictValueMapper, SysDictValue>(),
|
|
|
evictCache()
|
|
|
}
|
|
|
|
|
|
+ override fun getDictValueListByTypeCode(typeCode: String): MutableList<SysDictValue> {
|
|
|
+ val cachedList = getListCacheable()
|
|
|
+ return cachedList.filter {
|
|
|
+ it.code!!.startsWith("${typeCode}_")
|
|
|
+ }.toMutableList()
|
|
|
+ }
|
|
|
+
|
|
|
+ override fun getDictValueByCodeAndValue(code: String, value: String): SysDictValue? {
|
|
|
+ val cachedList = getListCacheable()
|
|
|
+ return cachedList.find {
|
|
|
+ it.code == code && it.value == value
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
private fun evictCache() {
|
|
|
RedisCacheUtil.evict(ZenConstants.CACHE_KEY_SYS, CacheKeyConstants.DICT_VALUE_KEY)
|
|
|
}
|