cron: 0 0 0 15 * ? → 0 30 15 5 * ? Co-Authored-By: Claude <noreply@anthropic.com>
@@ -23,10 +23,10 @@ public class SettlementJob {
}
/**
- * 每月15日 00:00 执行上月结算
+ * 每月5日 15:30 执行上月结算
*/
@Async("AsyncExecutor")
- @Scheduled(cron = "0 0 0 15 * ?")
+ @Scheduled(cron = "0 30 15 5 * ?")
public void executeMonthlySettlement() {
log.info("月度结算定时任务-开始");
try {