Stripe支付--添加推广码功能及相应佣金计算

(cherry picked from commit 0ba28588da)
This commit is contained in:
2025-04-15 10:22:45 +08:00
parent faf98607c4
commit eae4087b3e
17 changed files with 423 additions and 31 deletions

View File

@@ -113,4 +113,10 @@ public class PaymentTask {
}
}
// @Scheduled(cron = "0 */5 * * * *") // Run every 5 minutes
public void calcCouponsCommission(){
log.info("优惠券佣金计算定时器");
affiliateService.calcCouponsCommission();
}
}