#
Junjie
2025-11-17 4c7e3f113b80e37c52163c30b80b9256f0bee5e3
src/main/java/com/zy/core/thread/CrnThread.java
New file
@@ -0,0 +1,20 @@
package com.zy.core.thread;
import com.zy.core.ThreadHandler;
import com.zy.core.model.CommandResponse;
import com.zy.core.model.command.CrnCommand;
import com.zy.core.model.protocol.CrnProtocol;
public interface CrnThread extends ThreadHandler {
    CrnProtocol getStatus();
    CrnCommand getPickAndPutCommand(String sourceLocNo, String targetLocNo, Integer taskNo, Integer crnNo);//取放货
    CrnCommand getMoveCommand(String targetLocNo, Integer taskNo, Integer crnNo);//移动
    CrnCommand getResetCommand(Integer crnNo);//复位
    CommandResponse sendCommand(CrnCommand command);//下发命令
}