Alipay-HK 接入 暂存

This commit is contained in:
2024-05-10 17:11:49 +08:00
parent ae937dbf65
commit d41bc284d4
16 changed files with 707 additions and 25 deletions

View File

@@ -0,0 +1,21 @@
package com.ai.da.common.task;
import lombok.extern.slf4j.Slf4j;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
@Component
@Slf4j
public class GenerateTask {
@Scheduled(cron = "0 0 */1 * * ?")
public void generateScheduled(){
log.info("测试定时器generate");
try{
}catch(Exception e){
}
}
}