Commit d30b971d by 程裕兵

feat:settle

parent 0d926e17
package com.jiejing.bff.crontab.server.finance;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
/**
* @author chengyubing
* @since 2024/4/7 14:20
*/
@Component
public class FitFinanceJob {
/**
* 对账
*/
@Scheduled(cron = "0 0 3 * * ?")
public void checkBill() {
// payCenterTaskApi.syncSettle();
}
}
......@@ -30,9 +30,4 @@ public class PayCenterJob {
payCenterTaskApi.syncPay();
}
@Scheduled(cron = "0 0 3 * * ?")
public void syncSettle() {
payCenterTaskApi.syncSettle();
}
}
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