|
@@ -8,6 +8,7 @@ import cn.com.qmth.examcloud.support.cache.bean.ExamOrgSettingsCacheBean;
|
|
import cn.com.qmth.examcloud.support.cache.bean.ExamPropertyCacheBean;
|
|
import cn.com.qmth.examcloud.support.cache.bean.ExamPropertyCacheBean;
|
|
import cn.com.qmth.examcloud.support.cache.bean.ExamRecordPropertyCacheBean;
|
|
import cn.com.qmth.examcloud.support.cache.bean.ExamRecordPropertyCacheBean;
|
|
import cn.com.qmth.examcloud.support.cache.bean.ExamSettingsCacheBean;
|
|
import cn.com.qmth.examcloud.support.cache.bean.ExamSettingsCacheBean;
|
|
|
|
+import cn.com.qmth.examcloud.support.cache.bean.ExamStudentCacheBean;
|
|
import cn.com.qmth.examcloud.support.cache.bean.ExamStudentPropertyCacheBean;
|
|
import cn.com.qmth.examcloud.support.cache.bean.ExamStudentPropertyCacheBean;
|
|
import cn.com.qmth.examcloud.support.cache.bean.ExamStudentSettingsCacheBean;
|
|
import cn.com.qmth.examcloud.support.cache.bean.ExamStudentSettingsCacheBean;
|
|
import cn.com.qmth.examcloud.support.cache.bean.ExtractConfigCacheBean;
|
|
import cn.com.qmth.examcloud.support.cache.bean.ExtractConfigCacheBean;
|
|
@@ -351,4 +352,19 @@ public class CacheHelper {
|
|
"cn.com.qmth.examcloud.core.basic.service.cache.ThirdPartyAccessCache");
|
|
"cn.com.qmth.examcloud.core.basic.service.cache.ThirdPartyAccessCache");
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 考生信息
|
|
|
|
+ *
|
|
|
|
+ * @author WANGWEI
|
|
|
|
+ * @param studentId
|
|
|
|
+ * @param examId
|
|
|
|
+ * @param courseId
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
|
|
+ public static ExamStudentCacheBean getExamStudent(Long studentId, Long examId, Long courseId) {
|
|
|
|
+ return ObjectRedisCacheProcessor.get("OE_ES:", new Object[]{studentId, examId, courseId},
|
|
|
|
+ ExamStudentCacheBean.class, "EC-CORE-OE-ADMIN",
|
|
|
|
+ "cn.com.qmth.examcloud.core.oe.admin.service.cache.ExamStudentCache");
|
|
|
|
+ }
|
|
|
|
+
|
|
}
|
|
}
|