From fd59e929dc77eb55d17990c7c423fa6266e8b635 Mon Sep 17 00:00:00 2001 From: tianfeng <769204422@qq.com> Date: Thu, 1 Jan 2026 12:06:52 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E7=BB=93=E7=AE=97=E9=87=8D?= =?UTF-8?q?=E8=AF=95=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/red/circle/other/adapter/app/TestRestController.java | 2 +- .../com/red/circle/other/app/scheduler/TeamBillTask.java | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/rc-service/rc-service-other/other-adapter/src/main/java/com/red/circle/other/adapter/app/TestRestController.java b/rc-service/rc-service-other/other-adapter/src/main/java/com/red/circle/other/adapter/app/TestRestController.java index 56083ea8..bfdc184a 100644 --- a/rc-service/rc-service-other/other-adapter/src/main/java/com/red/circle/other/adapter/app/TestRestController.java +++ b/rc-service/rc-service-other/other-adapter/src/main/java/com/red/circle/other/adapter/app/TestRestController.java @@ -134,7 +134,7 @@ public class TestRestController extends BaseController { @PostMapping("/processTeamMonthBill") public void processTeamMonthBill() { - teamBillTask.processTeamHalfMonthBill(); + teamBillTask.processTeamBillRetry(); } @PostMapping("/activity/send/game") diff --git a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/scheduler/TeamBillTask.java b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/scheduler/TeamBillTask.java index bcb5e4f1..3397c3c5 100644 --- a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/scheduler/TeamBillTask.java +++ b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/scheduler/TeamBillTask.java @@ -71,6 +71,11 @@ public class TeamBillTask { log.warn("结束账单处理"); } + public void processTeamBillRetry() { + // 创建本月账单,发出结算信号 + consumeProcessPayOutBill(); + } + /** * 创建本月账单,发出结算信号. */