| | |
| | | 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; |
| | |
| | | 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:完成} |
| | |
| | | |
| | | 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; |
| | |
| | | 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)){ |