自动化立体仓库 - WMS系统
#
pjb
2024-07-04 4e7fce25f60aaf58603a3d2f3d749d1a83675c44
src/main/java/com/zy/asrs/task/ErpAccessTokenScheduler.java
@@ -2,6 +2,7 @@
import com.zy.asrs.task.handler.ErpAccessTokenHandler;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
@@ -15,11 +16,13 @@
    @Autowired
    private ErpAccessTokenHandler erpAccessTokenHandler;
    @Value("${erp.enable}")
    private Boolean erpEnable;
    @PostConstruct
    @Scheduled(cron = "* 15,30,45,59 * * * ?")
    @Scheduled(cron = "10 15,30,45,59 * * * ?")
    private void accessToken(){
        if (!erpEnable) return;
        erpAccessTokenHandler.getAccessToken();
    }
}