|
@@ -2,6 +2,7 @@ package com.lantone.qc.kernel.catalogue.threelevelward;
|
|
|
|
|
|
import com.lantone.qc.dbanaly.util.KernelConstants;
|
|
import com.lantone.qc.dbanaly.util.KernelConstants;
|
|
import com.lantone.qc.dbanaly.util.RedisUtil;
|
|
import com.lantone.qc.dbanaly.util.RedisUtil;
|
|
|
|
+import com.lantone.qc.dbanaly.util.SpecialStorageUtil;
|
|
import com.lantone.qc.kernel.catalogue.QCCatalogue;
|
|
import com.lantone.qc.kernel.catalogue.QCCatalogue;
|
|
import com.lantone.qc.kernel.util.CatalogueUtil;
|
|
import com.lantone.qc.kernel.util.CatalogueUtil;
|
|
import com.lantone.qc.pub.Content;
|
|
import com.lantone.qc.pub.Content;
|
|
@@ -79,8 +80,8 @@ public class THR0126 extends QCCatalogue {
|
|
if (StringUtil.isBlank(doctorSign)){
|
|
if (StringUtil.isBlank(doctorSign)){
|
|
return professor;
|
|
return professor;
|
|
}
|
|
}
|
|
- RedisUtil redisUtil = SpringContextUtil.getBean("redisUtil");
|
|
|
|
- Map<String, Object> surgeon = redisUtil.getJsonStringValue(KernelConstants.HOSPITAL_DOCTOR_MAP);
|
|
|
|
|
|
+ SpecialStorageUtil specialStorageUtil = SpringContextUtil.getBean("specialStorageUtil");
|
|
|
|
+ Map<String, Object> surgeon = specialStorageUtil.getJsonStringValue(KernelConstants.HOSPITAL_DOCTOR_MAP);
|
|
if (surgeon != null) {
|
|
if (surgeon != null) {
|
|
Map<String, String> doctor = (Map) surgeon.get(doctorSign);
|
|
Map<String, String> doctor = (Map) surgeon.get(doctorSign);
|
|
if (doctor != null) {
|
|
if (doctor != null) {
|