自动化立体仓库 - WMS系统
1
3 天以前 d5eb955933d4c7dc1f102d8a688f7447b5a674fd
src/main/java/com/zy/asrs/task/PlcLogScheduler.java
@@ -19,11 +19,11 @@
    @Autowired
    private PlcLogHandler plcLogHandler;
    @Scheduled(cron = "0/3 * * * * ? ")
    @Scheduled(cron = "0/30 * * * * ? ")
    private void execute(){
        ReturnT<String> returnT = plcLogHandler.start();
        if (!returnT.isSuccess()) {
            log.error( returnT.getMsg());
            log.error(returnT.getMsg());
        }
    }