## 定时任务判断是否调用成功方式修改;

This commit is contained in:
cabbage 2025-10-22 17:16:05 +08:00
parent 877760c003
commit 45541cdfa6
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ public class MemberJob {
String startDateStr = (DateUtils.parseDateToStr(DateUtils.YYYY_MM_DD, endDate)); String startDateStr = (DateUtils.parseDateToStr(DateUtils.YYYY_MM_DD, endDate));
//删除前6天的数据 //删除前6天的数据
R<Boolean> delstatis = iCuBonusVertexStatisServiceApi.delStatis(startDateStr, endDateStr); R<Boolean> delstatis = iCuBonusVertexStatisServiceApi.delStatis(startDateStr, endDateStr);
if (delstatis.getData()) { if (delstatis.isSuccess()) {
//重算前6天的数据 //重算前6天的数据
R<Boolean> statis = iCuBonusVertexStatisServiceApi.anewStatisHistoryBonus(startDateStr, endDateStr); R<Boolean> statis = iCuBonusVertexStatisServiceApi.anewStatisHistoryBonus(startDateStr, endDateStr);
if (!statis.getData()) { if (!statis.getData()) {