TASK:教育版子账号积分刷新策略更新

This commit is contained in:
2025-08-25 18:07:37 +08:00
parent e45d572078
commit 23523f73da
7 changed files with 209 additions and 15 deletions

View File

@@ -528,7 +528,7 @@ public class RedisUtil {
return JSON.parseObject(json, ProgressDTO.class);
} catch (Exception e) {
log.warn("任务进度解析失败 key={}, json={}", key, json);
return new ProgressDTO(0, 0, false);
return new ProgressDTO(0, 0, false, null);
}
}

View File

@@ -660,7 +660,7 @@ public class RedisUtilEnhance {
return JSON.parseObject(json, ProgressDTO.class);
} catch (Exception e) {
log.warn("任务进度解析失败 key={}, json={}", key, json);
return new ProgressDTO(0, 0, false);
return new ProgressDTO(0, 0, false, null);
}
}