自动化立体仓库 - WCS系统
#
Junjie
2023-08-04 9101ad488486cd57be5f27ca4ad6071c07ab9557
src/main/java/com/zy/asrs/entity/CommandInfo.java
@@ -4,13 +4,8 @@
import com.baomidou.mybatisplus.enums.IdType;
import com.baomidou.mybatisplus.annotations.TableField;
import java.text.SimpleDateFormat;
import java.time.Duration;
import java.time.LocalDateTime;
import java.util.Calendar;
import java.util.Date;
import org.springframework.format.annotation.DateTimeFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@@ -28,18 +23,18 @@
    private Integer id;
    /**
     * 任务号wcs_command_info
     * 工作号
     */
    @ApiModelProperty(value= "任务号")
    @ApiModelProperty(value= "工作号")
    @TableField("wrk_no")
    private Integer wrkNo;
    /**
     * WMS任务号
     */
    @ApiModelProperty(value= "WMS任务号")
    @TableField("wms_wrk_no")
    private Integer wmsWrkNo;
    @ApiModelProperty(value= "任务号")
    @TableField("task_no")
    private String taskNo;
    /**
     * 指令类型{1:创建,2:执行,3:完成}
@@ -100,9 +95,10 @@
    public CommandInfo() {}
    public CommandInfo(Integer wrkNo, Integer wmsWrkNo, Integer commandStatus, Date startTime, Date endTime, Integer commandType, String device, String deviceLog, String commandDesc) {
    public CommandInfo(Integer id, Integer wrkNo, String taskNo, Integer commandStatus, Date startTime, Date endTime, Integer commandType, String device, String deviceLog, String commandDesc, String command) {
        this.id = id;
        this.wrkNo = wrkNo;
        this.wmsWrkNo = wmsWrkNo;
        this.taskNo = taskNo;
        this.commandStatus = commandStatus;
        this.startTime = startTime;
        this.endTime = endTime;
@@ -110,20 +106,8 @@
        this.device = device;
        this.deviceLog = deviceLog;
        this.commandDesc = commandDesc;
        this.command = command;
    }
//    CommandInfo commandInfo = new CommandInfo(
//            null,    // 任务号
//            null,    // 起点位置
//            null,    // 终点位置
//            null,    // 指令状态
//            null,    // 开始时间
//            null,    // 结束时间
//            null,    // 指令类型
//            null,    // 设备
//            null,    // 设备执行信息
//            null    // 命令描述
//    );
    public String getStartTime$(){
        if (Cools.isEmpty(this.startTime)){