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(); + } + /** * 创建本月账单,发出结算信号. */