|
@@ -5,8 +5,8 @@ import com.baomidou.mybatisplus.service.impl.ServiceImpl
|
|
import com.gxzc.zen.api.sys.mapper.SysParamMapper
|
|
import com.gxzc.zen.api.sys.mapper.SysParamMapper
|
|
import com.gxzc.zen.api.sys.model.SysParam
|
|
import com.gxzc.zen.api.sys.model.SysParam
|
|
import com.gxzc.zen.api.sys.service.ISysParamService
|
|
import com.gxzc.zen.api.sys.service.ISysParamService
|
|
-import com.gxzc.zen.common.contants.CACHEKEYS
|
|
|
|
import com.gxzc.zen.common.contants.PLATFORM
|
|
import com.gxzc.zen.common.contants.PLATFORM
|
|
|
|
+import com.gxzc.zen.common.contants.ZenConstants
|
|
import com.gxzc.zen.common.exception.ZenException
|
|
import com.gxzc.zen.common.exception.ZenException
|
|
import com.gxzc.zen.common.exception.ZenExceptionEnum
|
|
import com.gxzc.zen.common.exception.ZenExceptionEnum
|
|
import com.gxzc.zen.common.properties.PlatformProperties
|
|
import com.gxzc.zen.common.properties.PlatformProperties
|
|
@@ -43,13 +43,13 @@ class SysParamServiceImpl : ServiceImpl<SysParamMapper, SysParam>(), ISysParamSe
|
|
}
|
|
}
|
|
|
|
|
|
override fun getListCacheable(): MutableList<SysParam> {
|
|
override fun getListCacheable(): MutableList<SysParam> {
|
|
- val cached = RedisCacheUtil.get(CACHEKEYS.SYS, CACHE_KEY_ALL)?.get() as? MutableList<SysParam>
|
|
|
|
|
|
+ val cached = RedisCacheUtil.get(ZenConstants.CACHE_KEY_SYS, CACHE_KEY_ALL)?.get() as? MutableList<SysParam>
|
|
if (cached != null) {
|
|
if (cached != null) {
|
|
return cached
|
|
return cached
|
|
}
|
|
}
|
|
val ret = baseMapper.selectWOLogic(null)
|
|
val ret = baseMapper.selectWOLogic(null)
|
|
if (PlatformUtil.getPlatform(platformProperties) == PLATFORM.SYSTEM) {
|
|
if (PlatformUtil.getPlatform(platformProperties) == PLATFORM.SYSTEM) {
|
|
- RedisCacheUtil.put(CACHEKEYS.SYS, CACHE_KEY_ALL, ret)
|
|
|
|
|
|
+ RedisCacheUtil.put(ZenConstants.CACHE_KEY_SYS, CACHE_KEY_ALL, ret)
|
|
}
|
|
}
|
|
return ret
|
|
return ret
|
|
}
|
|
}
|
|
@@ -74,13 +74,13 @@ class SysParamServiceImpl : ServiceImpl<SysParamMapper, SysParam>(), ISysParamSe
|
|
if (PlatformUtil.getPlatform() == PLATFORM.SYSTEM) {
|
|
if (PlatformUtil.getPlatform() == PLATFORM.SYSTEM) {
|
|
baseMapper.updateWOLogic(data, EntityWrapper<SysParam>().eq("id", data.id))
|
|
baseMapper.updateWOLogic(data, EntityWrapper<SysParam>().eq("id", data.id))
|
|
// 更新缓存
|
|
// 更新缓存
|
|
- val cached = RedisCacheUtil.get(CACHEKEYS.SYS, CACHE_KEY_ALL)?.get() as? MutableList<SysParam>
|
|
|
|
|
|
+ val cached = RedisCacheUtil.get(ZenConstants.CACHE_KEY_SYS, CACHE_KEY_ALL)?.get() as? MutableList<SysParam>
|
|
cached?.let {
|
|
cached?.let {
|
|
val idx = it.indexOfFirst { it.id == data.id }
|
|
val idx = it.indexOfFirst { it.id == data.id }
|
|
if (idx != -1) {
|
|
if (idx != -1) {
|
|
it[idx] = data
|
|
it[idx] = data
|
|
}
|
|
}
|
|
- RedisCacheUtil.put(CACHEKEYS.SYS, CACHE_KEY_ALL, it)
|
|
|
|
|
|
+ RedisCacheUtil.put(ZenConstants.CACHE_KEY_SYS, CACHE_KEY_ALL, it)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return data
|
|
return data
|
|
@@ -112,10 +112,10 @@ class SysParamServiceImpl : ServiceImpl<SysParamMapper, SysParam>(), ISysParamSe
|
|
if (baseMapper.insert(data) == 0) {
|
|
if (baseMapper.insert(data) == 0) {
|
|
throw ZenException(ZenExceptionEnum.BIZ_INSERT_ERROR)
|
|
throw ZenException(ZenExceptionEnum.BIZ_INSERT_ERROR)
|
|
}
|
|
}
|
|
- val cached = RedisCacheUtil.get(CACHEKEYS.SYS, CACHE_KEY_ALL)?.get() as? MutableList<SysParam>
|
|
|
|
|
|
+ val cached = RedisCacheUtil.get(ZenConstants.CACHE_KEY_SYS, CACHE_KEY_ALL)?.get() as? MutableList<SysParam>
|
|
cached?.let {
|
|
cached?.let {
|
|
it.add(data)
|
|
it.add(data)
|
|
- RedisCacheUtil.put(CACHEKEYS.SYS, CACHE_KEY_ALL, it)
|
|
|
|
|
|
+ RedisCacheUtil.put(ZenConstants.CACHE_KEY_SYS, CACHE_KEY_ALL, it)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -127,12 +127,12 @@ class SysParamServiceImpl : ServiceImpl<SysParamMapper, SysParam>(), ISysParamSe
|
|
throw ZenException(ZenExceptionEnum.BIZ_DELETE_ERROR)
|
|
throw ZenException(ZenExceptionEnum.BIZ_DELETE_ERROR)
|
|
}
|
|
}
|
|
//
|
|
//
|
|
- val cached = RedisCacheUtil.get(CACHEKEYS.SYS, CACHE_KEY_ALL)?.get() as? MutableList<SysParam>
|
|
|
|
|
|
+ val cached = RedisCacheUtil.get(ZenConstants.CACHE_KEY_SYS, CACHE_KEY_ALL)?.get() as? MutableList<SysParam>
|
|
cached?.let {
|
|
cached?.let {
|
|
it.removeIf {
|
|
it.removeIf {
|
|
it.id == id
|
|
it.id == id
|
|
}
|
|
}
|
|
- RedisCacheUtil.put(CACHEKEYS.SYS, CACHE_KEY_ALL, it)
|
|
|
|
|
|
+ RedisCacheUtil.put(ZenConstants.CACHE_KEY_SYS, CACHE_KEY_ALL, it)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|