自动化立体仓库 - WCS系统
Junjie
2023-05-22 6e65e575aedd776432cda5a88f7434320f42e3f4
src/main/java/com/zy/asrs/entity/CommandInfo.java
@@ -28,11 +28,18 @@
    private Integer id;
    /**
     * 任务号
     * 任务号wcs_command_info
     */
    @ApiModelProperty(value= "任务号")
    @TableField("wrk_no")
    private Integer wrkNo;
    /**
     * WMS任务号
     */
    @ApiModelProperty(value= "WMS任务号")
    @TableField("wms_wrk_no")
    private Integer wmsWrkNo;
    /**
     * 指令类型{1:创建,2:执行,3:完成}
@@ -93,8 +100,9 @@
    public CommandInfo() {}
    public CommandInfo(Integer wrkNo,Integer commandStatus,Date startTime,Date endTime,Integer commandType,String device,String deviceLog,String commandDesc) {
    public CommandInfo(Integer wrkNo, Integer wmsWrkNo, Integer commandStatus, Date startTime, Date endTime, Integer commandType, String device, String deviceLog, String commandDesc) {
        this.wrkNo = wrkNo;
        this.wmsWrkNo = wmsWrkNo;
        this.commandStatus = commandStatus;
        this.startTime = startTime;
        this.endTime = endTime;