#
Junjie
2024-04-18 ebb63d5ac2fb6c822e9d0541d4b86c7d71f21bdb
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.wcs.rcs.thread;
 
import com.zy.asrs.wcs.common.ExecuteSupport;
import com.zy.asrs.wcs.core.model.command.LiftCommand;
import com.zy.asrs.wcs.rcs.entity.Device;
import com.zy.asrs.wcs.rcs.model.protocol.LiftProtocol;
 
public interface LiftThread extends ThreadHandler{
 
    LiftProtocol getStatus();//获取提升机状态
 
    Device getDevice();//获取设备信息
 
    boolean move(LiftCommand command);//升降移动
 
    boolean palletInOut(LiftCommand command);//托盘出入
 
    boolean lock(LiftCommand command);//锁定提升机
 
    boolean unlock(LiftCommand command);//解锁提升机
 
    boolean reset(LiftCommand command);//复位
 
    boolean isIdle();//是否空闲
 
    boolean isIdle(ExecuteSupport support);//是否空闲
 
    //***************获取命令*****************
    LiftCommand getMoveCommand(Integer taskNo, Integer sourceLev, Integer targetLev, Integer mode);//提升机移动
 
    LiftCommand getMoveWithShuttleCommand(Integer taskNo, Integer sourceLev, Integer targetLev, Integer mode);//载车移动
 
    LiftCommand getPalletInOutCommand(Integer taskNo, Integer sourceLev, Integer targetLev, Integer originSta, Integer targetSta, Integer mode);//托盘出入
 
    LiftCommand getLockCommand(Integer taskNo, Boolean lock);//锁定/解锁提升机
 
    LiftCommand getShuttleSignalCommand(Integer taskNo, Boolean signal);//小车已到位/已驶离信号
 
}