| | |
| | | import com.zy.asrs.wcs.core.entity.Motion; |
| | | import com.zy.asrs.wcs.core.model.command.LiftCommand; |
| | | import com.zy.asrs.wcs.core.model.enums.LiftCommandModeType; |
| | | import com.zy.asrs.wcs.core.model.enums.MotionCtgType; |
| | | import com.zy.asrs.wcs.rcs.entity.Device; |
| | | import com.zy.asrs.wcs.rcs.model.enums.LiftProtocolStatusType; |
| | | import com.zy.asrs.wcs.rcs.model.protocol.LiftProtocol; |
| | |
| | | |
| | | boolean isIdle();//是否空闲 |
| | | |
| | | boolean isIdle(ExecuteSupport support);//是否空闲 |
| | | boolean isIdle(MotionCtgType flag);//是否空闲 |
| | | |
| | | boolean isDeviceIdle();//设备是否空闲 |
| | | |
| | |
| | | |
| | | boolean isLock(ExecuteSupport support); |
| | | |
| | | int generateDeviceTaskNo(int taskNo, MotionCtgType motionCtgType);//生成硬件设备工作号 |
| | | |
| | | //***************获取命令***************** |
| | | List<LiftCommand> getMoveCommand(Integer taskNo, Integer sourceLev, Integer targetLev, LiftCommandModeType mode);//提升机移动 |
| | | |