|
@@ -58,8 +58,8 @@ public class ExamRecordCacheUtil {
|
|
|
redisUtil.set(RedisKeyHelper.examRecordCacheKey(recordId), "finishTime", finishTime);
|
|
|
}
|
|
|
|
|
|
- public static Long getFinishTime(Long recordId) {
|
|
|
- return (Long) redisUtil.get(RedisKeyHelper.examRecordCacheKey(recordId), "finishTime");
|
|
|
+ public static Date getFinishTime(Long recordId) {
|
|
|
+ return (Date) redisUtil.get(RedisKeyHelper.examRecordCacheKey(recordId), "finishTime");
|
|
|
}
|
|
|
|
|
|
public static void setDurationSeconds(Long recordId, Integer durationSeconds) {
|