自动化立体仓库 - WMS系统
ZY
2025-05-08 ae435b36b998f81fbbecb028d654aec814ee3257
src/main/java/com/zy/nc/task/PlanOrderTask.java
@@ -15,8 +15,16 @@
    private PlanOrderHandler planOrderHandler;
    @Scheduled(cron = "0/3 * * * * ? ")
    public void execute() {
        ReturnT<String> returnT = planOrderHandler.start();
    public void execute1() {
        ReturnT<String> returnT = planOrderHandler.start1();
        if (!returnT.isSuccess()) {
            log.error(returnT.getMsg());
        }
    }
    @Scheduled(cron = "0/3 * * * * ? ")
    public void execute2() {
        ReturnT<String> returnT = planOrderHandler.start2();
        if (!returnT.isSuccess()) {
            log.error(returnT.getMsg());
        }