#
Junjie
6 天以前 8f444535d40bf13ce7ca2fb0585e1f9b8d089f1a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.zy.core.thread;
 
import com.zy.core.ThreadHandler;
import com.zy.core.model.CommandResponse;
import com.zy.core.model.command.DualCrnCommand;
import com.zy.core.model.protocol.DualCrnProtocol;
 
public interface DualCrnThread extends ThreadHandler {
 
    DualCrnProtocol getStatus();
 
    DualCrnCommand getPickAndPutCommand(String sourceLocNo, String targetLocNo, Integer taskNo, Integer crnNo, Integer station);//取放货
 
    DualCrnCommand getMoveCommand(String targetLocNo, Integer taskNo, Integer crnNo);//移动
 
    DualCrnCommand getResetCommand(Integer crnNo, Integer station);//复位
 
    CommandResponse sendCommand(DualCrnCommand command);//下发命令
 
}