Browse Source

委托服务费用

master
张彭杰 1 week ago
parent
commit
ff01145860
1 changed files with 3 additions and 3 deletions
  1. 6
      dating-agency-mall-server/src/main/java/com/qniao/dam/application/task/EntrustServiceOrderTask.java

6
dating-agency-mall-server/src/main/java/com/qniao/dam/application/task/EntrustServiceOrderTask.java

@ -38,7 +38,7 @@ public class EntrustServiceOrderTask {
private RevenueRewardApplicationService revenueRewardApplicationService; private RevenueRewardApplicationService revenueRewardApplicationService;
@Scheduled(cron = "10 * * * * *")
@Scheduled(cron = "0 0 * * * *")
public void handle() { public void handle() {
try { try {
log.error("委托服务接受到期退款任务开始"); log.error("委托服务接受到期退款任务开始");
@ -65,7 +65,7 @@ public class EntrustServiceOrderTask {
} }
} }
@Scheduled(cron = "20 * * * * *")
@Scheduled(cron = "0 10 * * * *")
public void handle2() { public void handle2() {
try { try {
log.error("委托服务自动确认任务开始"); log.error("委托服务自动确认任务开始");
@ -87,7 +87,7 @@ public class EntrustServiceOrderTask {
} }
} }
@Scheduled(cron = "30 * * * * *")
@Scheduled(cron = "0 20 * * * *")
public void handle3() { public void handle3() {
try { try {
log.error("委托服务自动结算任务开始"); log.error("委托服务自动结算任务开始");

Loading…
Cancel
Save