1
zhang
2026-01-22 6876084ffc4a01c1eca6a609dec8c176efc59aae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package com.zy.asrs.service;
 
/**
 * 立体仓库WCS系统主流程业务接口
 * Created by vincent on 2020/8/6
 */
public interface CtuMainService {
 
    /**
     * 出库的时候,设备上走
     *
     * @param mark 标记
     */
    void out(Integer mark);
 
    /**
     * 入库,从拣料站到入库站(CTU取货站)
     *
     * @param mark 标记
     */
    void fake(Integer mark);
 
    /**
     * 清除数据
     *
     * @param mark 标记
     */
    void clear(Integer mark);
 
    /**
     * 入库往前走一步,等待ctu来取
     *
     * @param mark 标记
     */
    void waitTake(Integer mark);
 
    void createTake(Integer mark);
 
}