自动化立体仓库 - WMS系统
#
whycq
2024-05-22 81672518fc9a2e86c5c34dba341aaa535c2f069d
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
47
48
49
50
51
52
53
54
55
56
package com.zy.asrs.service;
 
import com.zy.asrs.entity.AgvBasDevp;
import com.zy.asrs.entity.param.*;
 
import java.util.List;
 
public interface AgvMobileService {
 
    /**
     * 组托
     */
    String comb(CombParam param, Long userId);
 
    /**
     * 组托
     */
    String pickAgain(PickParam pickParams, Long userId);
 
    /**
     * 盘点
     */
    void adjust(MobileAdjustParam param, Long userId);
 
    void packComb(CombParam param, Long userId);
 
    void combBinding(String barcode, String stationCode, Short containerType);
 
    List<AgvBasDevp> getAgvBasDevpByFloor(int floor);
 
    void pakinEmpty(String devNo, boolean pakin);
 
    void pakoutEmpty(String devNo);
 
 
    /**
     * 手动库位转移
     */
    String handControlLocMove(LocMoveParam param, Long userId);
 
    /**
     * 调拨离场
     */
    String allocationOut(AgvMobileStartPakin param, Long userId);
 
    /**
     * 调拨离场
     */
    String allocationIn(AgvMobileStartPakin param, Long userId);
 
    /**
     * 站点回退
     */
    String doBack(AgvMobileStartPakin param, Long userId);
 
}