|
@@ -20,8 +20,8 @@ import org.springframework.stereotype.Component;
|
|
|
@Slf4j
|
|
|
@Component
|
|
|
public class InstallDownload {
|
|
|
- @Value("${netfsxc}")
|
|
|
- private String netfsxc = "";
|
|
|
+ @Value("${installdownc}")
|
|
|
+ private String installdownc = "";
|
|
|
|
|
|
@Autowired
|
|
|
InstallDownloadService installDownloadService;
|
|
@@ -31,7 +31,7 @@ public class InstallDownload {
|
|
|
// 1:下载安装工单数据
|
|
|
@Scheduled(fixedDelayString = "${installdown}")
|
|
|
public void download() throws Exception {
|
|
|
- if (netfsxc.equals(TaskConfigEnum.FALSE.getCode())){
|
|
|
+ if (installdownc.equals(TaskConfigEnum.FALSE.getCode())){
|
|
|
return;
|
|
|
}
|
|
|
|