#
Junjie
2023-09-09 d48f94b29304be6cabbeb6f9e9fe2b25bd7140f9
#
4个文件已修改
26 ■■■■ 已修改文件
src/main/java/com/zy/asrs/entity/BasLiftOpt.java 10 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/zy/asrs/entity/BasShuttleOpt.java 10 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/zy/core/thread/LiftThread.java 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/zy/core/thread/NyShuttleThread.java 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/zy/asrs/entity/BasLiftOpt.java
@@ -82,9 +82,16 @@
    @ApiModelProperty(value= "命令报文(下发)")
    private String commandSend;
    /**
     * 系统状态
     */
    @ApiModelProperty(value= "系统状态")
    @TableField("system_status")
    private String systemStatus;
    public BasLiftOpt() {}
    public BasLiftOpt(Integer wrkNo, Integer liftNo, Date sendTime, Date updateTime, Long updateBy, String memo, String command, String commandSend) {
    public BasLiftOpt(Integer wrkNo, Integer liftNo, Date sendTime, Date updateTime, Long updateBy, String memo, String command, String commandSend, String systemStatus) {
        this.wrkNo = wrkNo;
        this.liftNo = liftNo;
        this.sendTime = sendTime;
@@ -93,6 +100,7 @@
        this.memo = memo;
        this.command = command;
        this.commandSend = commandSend;
        this.systemStatus = systemStatus;
    }
//    BasLiftOpt basLiftOpt = new BasLiftOpt(
src/main/java/com/zy/asrs/entity/BasShuttleOpt.java
@@ -102,9 +102,16 @@
    @ApiModelProperty(value= "命令报文(下发)")
    private String commandSend;
    /**
     * 系统状态
     */
    @ApiModelProperty(value= "系统状态")
    @TableField("system_status")
    private String systemStatus;
    public BasShuttleOpt() {}
    public BasShuttleOpt(Integer wrkNo,Integer shuttleNo,Date sendTime,String mode,String sourceLocNo,String distLocNo,Date updateTime,Long updateBy,String memo,String command,String commandSend) {
    public BasShuttleOpt(Integer wrkNo, Integer shuttleNo, Date sendTime, String mode, String sourceLocNo, String distLocNo, Date updateTime, Long updateBy, String memo, String command, String commandSend, String systemStatus) {
        this.wrkNo = wrkNo;
        this.shuttleNo = shuttleNo;
        this.sendTime = sendTime;
@@ -116,6 +123,7 @@
        this.memo = memo;
        this.command = command;
        this.commandSend = commandSend;
        this.systemStatus = systemStatus;
    }
//    BasShuttleOpt basShuttleOpt = new BasShuttleOpt(
src/main/java/com/zy/core/thread/LiftThread.java
@@ -327,7 +327,8 @@
                    null,
                    null,
                    JSON.toJSONString(command),
                    JSON.toJSONString(commandArr)
                    JSON.toJSONString(commandArr),
                    JSON.toJSONString(liftProtocol)
            );
            liftOptService.insert(opt);
        }
src/main/java/com/zy/core/thread/NyShuttleThread.java
@@ -438,7 +438,8 @@
                    null,
                    null,
                    JSON.toJSONString(command),
                    null
                    null,
                    JSON.toJSONString(shuttleProtocol)
            );
            shuttleOptService.insert(opt);
        }