Commit 65f7c71f by 张文涛
parents cd50a78f fb89294d
......@@ -24,4 +24,12 @@ public class FitFinanceJob {
fitFinanceTaskApi.checkSettle(CheckSettleRequest.builder().build());
}
/**
* 同步结算状态
*/
@Scheduled(cron = "0 0 19 * * ?")
public void syncSettle() {
fitFinanceTaskApi.syncSettle(CheckSettleRequest.builder().build());
}
}
......@@ -30,4 +30,9 @@ public class PayCenterJob {
payCenterTaskApi.syncPay();
}
@Scheduled(cron = "0 0/10 * * * ?")
public void syncAuth() {
payCenterTaskApi.syncSubChannelAuth();
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment