自动化立体仓库 - WMS系统
#
luxiaotao1123
2020-06-16 2c5fed998b47832e8b1a21817448a58bab77c120
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
40
41
42
43
44
45
46
package com.zy.asrs.service;
 
import com.zy.asrs.entity.param.EmptyPlateOutParam;
import com.zy.asrs.entity.param.FullStoreParam;
import com.zy.asrs.entity.param.StockOutParam;
 
public interface WorkService {
 
    /**
     * 全板入库
     * @return 库位号
     */
    String startupFullPutStore(FullStoreParam param, Long userId);
 
    /**
     * 全板出库
     * @return 库位号
     */
    String startupFullTakeStore(StockOutParam param, Long userId);
 
    /**
     * 空板入库
     * @return 库位号
     */
    String emptyPlateIn(Integer sourceStaNo, Long userId);
 
    /**
     * 空板出库
     */
    void emptyPlateOut(EmptyPlateOutParam param, Long userId);
 
    /**
     * 库位移转
     */
    void locMove(String sourceLocNo, String locNo, Long userId);
 
    /**
     * 手动完成工作档
     */
    void completeWrkMast(String workNo, Long userId);
 
    /**
     * 手动取消工作档
     */
    void cancelWrkMast(String workNo, Long userId);
}