This commit is contained in:
van
2026-04-03 01:18:33 +08:00
parent 9c503464c1
commit d4fdf076e9
4 changed files with 45 additions and 8 deletions

View File

@@ -88,6 +88,10 @@ public class WeComShareLinkLogisticsJobController extends BaseController {
StringUtils.hasText(wb) ? wb : null);
} else {
weComShareLinkLogisticsJobMapper.updateByJobKey(jobKey, "WAITING", note, nextAttempts, null);
WeComShareLinkLogisticsJob refreshed = weComShareLinkLogisticsJobService.selectByJobKey(jobKey);
if (refreshed != null) {
logisticsService.pushShareLinkJobToRedis(refreshed);
}
}
return AjaxResult.success(data);
}