自动化立体仓库 - WMS系统
#
lsh
2024-05-31 6e05d25d44bd1fa1bab3806e5f2f33d9076664b5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.zy.asrs.task;
 
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Component;
 
// 自动移库
@Slf4j
@Component
public class AutoMoveTwoAndThreeGoOneScheduler {
 
    /**
     * 2、3楼转移到1楼任务执行
     */
//    @Scheduled(cron = "0/2 * * * * ? ")
    private void autoMove(){
 
    }
}