package com.zy.asrs.task.kingdee;
|
|
import com.core.common.Cools;
|
import com.zy.asrs.task.kingdee.handler.LoginAuthenticationHandler;
|
import com.zy.common.entity.Parameter;
|
import lombok.extern.slf4j.Slf4j;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Value;
|
import org.springframework.stereotype.Component;
|
|
@Slf4j
|
@Component
|
public class LoginAuthenticationScheduler {
|
|
@Autowired
|
private LoginAuthenticationHandler loginAuthenticationHandler;
|
@Value("${erp.switch.LoginAuthenticationSwitch}")
|
private boolean LoginAuthenticationSwitch;
|
|
//@Scheduled(cron = "0/3 * * * * ? ")
|
void login(){
|
if(!LoginAuthenticationSwitch){
|
return;
|
}
|
String erpReport = Parameter.get().getErpReport();
|
if (!Cools.isEmpty(erpReport) && erpReport.equals("true")) {
|
loginAuthenticationHandler.start();
|
}
|
}
|
}
|