|
@@ -7,6 +7,7 @@ import com.gxzc.zen.api.sys.mapper.SysRoleMapper
|
|
|
import com.gxzc.zen.api.sys.model.SysRole
|
|
|
import com.gxzc.zen.api.sys.service.ISysPermissionService
|
|
|
import com.gxzc.zen.api.sys.service.ISysRoleService
|
|
|
+import com.gxzc.zen.api.sys.service.ISysUserRoleService
|
|
|
import com.gxzc.zen.common.exception.ZenException
|
|
|
import com.gxzc.zen.common.exception.ZenExceptionEnum
|
|
|
import com.gxzc.zen.orm.annotation.ZenTransactional
|
|
@@ -27,6 +28,9 @@ class SysRoleServiceImpl : ServiceImpl<SysRoleMapper, SysRole>(), ISysRoleServic
|
|
|
@Autowired
|
|
|
private lateinit var sysPermissionService: ISysPermissionService
|
|
|
|
|
|
+ @Autowired
|
|
|
+ private lateinit var sysUserRoleService: ISysUserRoleService
|
|
|
+
|
|
|
override fun getListByParam(name: String?, code: String?, enable: Boolean?): MutableList<SysRole> {
|
|
|
val wrapper = EntityWrapper<SysRole>().apply {
|
|
|
if (!name.isNullOrEmpty()) {
|
|
@@ -65,17 +69,21 @@ class SysRoleServiceImpl : ServiceImpl<SysRoleMapper, SysRole>(), ISysRoleServic
|
|
|
override fun modify(entity: SysRole): SysRole {
|
|
|
// baseMapper.updateById(entity)
|
|
|
baseMapper.updateWOLogic(entity, EntityWrapper<SysRole>().eq("id", entity.id))
|
|
|
+
|
|
|
+ val userIdSet = sysUserRoleService.getUserIdListByRoleId(entity.id!!)
|
|
|
+ sysUserRoleService.evictCache(userIdSet)
|
|
|
// 修改role表需要直接清理所有缓存项
|
|
|
- sysPermissionService.clearCache()
|
|
|
+// sysPermissionService.evictCache(userIdSet)
|
|
|
return entity
|
|
|
}
|
|
|
|
|
|
@ZenTransactional
|
|
|
override fun physicalDelete(id: Long) {
|
|
|
+ val userIdSet = sysUserRoleService.getUserIdListByRoleId(id)
|
|
|
if (baseMapper.physicalDeleteById(id) <= 0) {
|
|
|
throw ZenException(ZenExceptionEnum.BIZ_DELETE_ERROR)
|
|
|
}
|
|
|
// 修改role表需要直接清理所有缓存项
|
|
|
- sysPermissionService.clearCache()
|
|
|
+ sysUserRoleService.evictCache(userIdSet)
|
|
|
}
|
|
|
}
|