Junjie
2023-03-25 f62a2a2429bedf5315d86b4e8bb1b7489221e361
src/main/java/com/zy/core/model/command/ShuttleCommand.java
@@ -2,6 +2,9 @@
import lombok.Data;
/**
 * 四向穿梭车命令报文
 */
@Data
public class ShuttleCommand {
@@ -28,22 +31,22 @@
    /**
     * 控制指令字
     */
    private Integer commandWord;
    private Short commandWord;
    /**
     * 启始二维编号
     */
    private String startCodeNum;
    private Short startCodeNum;
    /**
     * 中间二维编号
     */
    private String middleCodeNum;
    private Short middleCodeNum;
    /**
     * 目标二维编号
     */
    private String distCodeNum;
    private Short distCodeNum;
    /**
     * 起点到目标点的距离长度
@@ -58,12 +61,12 @@
    /**
     * 小车运行方向
     */
    private Integer runDirection;
    private Short runDirection;
    /**
     * 托盘顶升
     */
    private Integer palletLift;
    private Short palletLift;
    /**
     * 小车强制移动距离
@@ -73,26 +76,26 @@
    /**
     * 充电开关
     */
    private Integer chargeSwitch;
    private Short chargeSwitch;
    /**
     * 小车IO控制
     */
    private byte IOControl;
    private Short IOControl;
    /**
     * 小车运行速度
     */
    private Integer runSpeed;
    private Short runSpeed;
    /**
     * 小车雷达备用
     */
    private Integer radarTmp;
    private Short radarTmp;
    /**
     * 指令结束位
     */
    private Integer commandEnd;
    private Short commandEnd;
}