Junjie
2023-03-24 d867d8d14b00e20ecfb00e349611ea62c4853c78
src/main/java/com/zy/core/model/command/ShuttleCommand.java
@@ -28,22 +28,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 +58,12 @@
    /**
     * 小车运行方向
     */
    private Integer runDirection;
    private Short runDirection;
    /**
     * 托盘顶升
     */
    private Integer palletLift;
    private Short palletLift;
    /**
     * 小车强制移动距离
@@ -73,26 +73,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;
}