自动化立体仓库 - WCS系统
#
Junjie
5 天以前 54109665b107b90cc806a747170b9b48b8dbf812
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
57
58
59
60
61
62
package com.zy.asrs.service;
 
import com.baomidou.mybatisplus.service.IService;
import com.zy.asrs.entity.BasDevp;
 
import java.util.List;
 
public interface BasDevpService extends IService<BasDevp> {
 
    /**
     * 入库站
     * @return
     */
    List<Integer> getAvailableInSite();
 
    /**
     * 空板入库站
     * @return
     */
    List<Integer> getAvailableEmptyInSite();
 
    /**
     * 出库站
     * @return
     */
    List<Integer> getAvailableOutSite(Integer typeNo);
 
    /**
     * 空板出库站
     * @return
     */
    List<Integer> getAvailableEmptyOutSite();
 
    /**
     * 目标站点状态检测
     * @param devpNo
     */
    BasDevp checkSiteStatus(Integer devpNo);
 
    /**
     * 目标站点状态检测
     * @param devpNo
     * @param put 是否入库操作 true 是 ; false 不是
     */
    BasDevp checkSiteStatus(Integer devpNo, boolean put);
 
    BasDevp selectByWrkNo(Integer wrkNo);
 
    BasDevp queryByLocNo(String locNo);
 
    BasDevp queryByQrCode(Integer qrCodeValue);
 
    //获取四层楼站点105,106,107,108
    List<BasDevp> selectLevSite();
 
    //获取指定楼层有提升机号的输送站点
    List<BasDevp> selectHasLiftNoByLev(Integer lev);
 
    //获取指定楼层、指定提升机号对应的输送站点
    BasDevp selectByLevAndLiftNo(Integer lev, Integer liftNo);
 
}