#
Junjie
4 天以前 2f9849905dbb8d65faa28628a40084708a0386ef
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);//下发命令
 
}