#
yxFwq
2025-01-03 334af33faa80e2e91d0fd98475e10df7a420c801
src/main/java/com/zy/asrs/task/StaEscalationScheduler.java
@@ -36,4 +36,20 @@
        }
    }
    @Scheduled(cron = "0/3 * * * * ? ")
    private void executeOverturn(){//2楼翻转倒料后回库标记清除
        int[] staNos =new int[]{126,131,310,312};
        for (int staNo : staNos){
            try{
                ReturnT<String> result = staEscalationHandler.start2(staNo);
                if (result.getCode()==200){
                    break;
                }
            }catch (Exception e){
                LedErrorThreadUtil.ledErrorThread("2楼翻转倒料后回库标记清除失败!站点号:"+staNo,4, LedErrorAreaType.ONE_OTHER.getDesc());
                log.error("站点"+staNo+"2楼翻转倒料后回库标记清除失败,异常信息:"+e);
            }
        }
    }
}