|
@@ -55,6 +55,7 @@ import cn.com.qmth.examcloud.commons.util.PathUtil;
|
|
|
import cn.com.qmth.examcloud.commons.util.RegExpUtil;
|
|
|
import cn.com.qmth.examcloud.core.basic.api.controller.bean.OrgDomain;
|
|
|
import cn.com.qmth.examcloud.core.basic.api.controller.bean.SaveOrgPropertiesDomain;
|
|
|
+import cn.com.qmth.examcloud.core.basic.base.constants.SystemProps;
|
|
|
import cn.com.qmth.examcloud.core.basic.dao.OrgPropertyRepo;
|
|
|
import cn.com.qmth.examcloud.core.basic.dao.OrgRepo;
|
|
|
import cn.com.qmth.examcloud.core.basic.dao.entity.OrgEntity;
|
|
@@ -619,7 +620,7 @@ public class OrgController extends ControllerSupport {
|
|
|
}
|
|
|
validateRootOrgIsolation(orgEntity.getRootId());
|
|
|
|
|
|
- String key = "orgPropertyGroup." + propertyGroupId;
|
|
|
+ String key = SystemProps.ORG_PROPERTY_GROUP_PREFIX + propertyGroupId;
|
|
|
String redisKey = "ORG_PROPS_BY_GROUP:" + orgId + ":" + key;
|
|
|
@SuppressWarnings("unchecked")
|
|
|
Map<String, String> properties = redisClient.get(redisKey, Map.class);
|