*
lsh
2025-04-18 dbb98db416ecb1cd460978c31a7ee33ac7264664
src/main/java/com/zy/asrs/entity/TaskWrk.java
@@ -43,36 +43,29 @@
     * wms任务号
     */
    @ApiModelProperty(value= "wms任务号")
    @TableId(value = "\"task_no\"", type = IdType.INPUT)
    @TableField("\"task_no\"")
    @TableId(value = "TASK_NO", type = IdType.INPUT)
    @TableField("TASK_NO")
    private String taskNo;
    /**
     * 任务状态 1: 接收  2: 派发  3: 完结  4: 取消
     */
    @ApiModelProperty(value= "任务状态 1: 接收  2: 派发  5: 完结  4: 取消  ")
    @TableField("\"status\"")
    @TableField("STATUS")
    private Integer status;
    /**
     * 任务号
     */
    @ApiModelProperty(value= "任务号")
    @TableField("\"wrk_no\"")
    @TableField("WRK_NO")
    private Integer wrkNo;
    /**
     * 任务号
     */
    @ApiModelProperty(value= "重量")
    @TableField("\"sc_weight\"")
    private Integer scWeight;
    /**
     * 任务时间(接收时间)
     */
    @ApiModelProperty(value= "任务时间(接收时间)")
    @TableField("\"create_time\"")
    @TableField("CREATE_TIME")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    private Date createTime;
@@ -80,42 +73,57 @@
     * 任务类型
     */
    @ApiModelProperty(value= "任务类型")
    @TableField("\"io_type\"")
    @TableField("IO_TYPE")
    private Integer ioType;
    /**
     * 优先级
     */
    @ApiModelProperty(value= "优先级")
    @TableField("\"io_pri\"")
    @TableField("IO_PRI")
    private Integer ioPri;
    /**
     * 起点
     */
    @ApiModelProperty(value= "起点")
    @TableField("\"start_point\"")
    @TableField("START_POINT")
    private String startPoint;
    /**
     * 终点
     */
    @ApiModelProperty(value= "终点")
    @TableField("\"target_point\"")
    @TableField("TARGET_POINT")
    private String targetPoint;
    @ApiModelProperty(value = "原始起点")
    @TableField("ORIGIN_START_POINT")
    private String originStartPoint;
    @ApiModelProperty(value = "原始起点")
    @TableField("ORIGIN_TARGET_POINT")
    private String originTargetPoint;
    /**
     * 任务号
     */
    @ApiModelProperty(value= "重量")
    @TableField("SC_WEIGHT")
    private Integer scWeight;
    /**
     * 修改人员
     */
    @ApiModelProperty(value= "修改人员")
    @TableField("\"modi_user\"")
    @TableField("MODI_USER")
    private Long modiUser;
    /**
     * 修改时间
     */
    @ApiModelProperty(value= "修改时间")
    @TableField("\"modi_time\"")
    @TableField("MODI_TIME")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    private Date modiTime;
@@ -123,21 +131,21 @@
     * 备注
     */
    @ApiModelProperty(value= "备注")
    @TableField("\"memo\"")
    @TableField("MEMO")
    private String memo;
    /**
     * 条码
     */
    @ApiModelProperty(value= "条码")
    @TableField("\"barcode\"")
    @TableField("BARCODE")
    private String barcode;
    /**
     * 派发时间
     */
    @ApiModelProperty(value= "派发时间")
    @TableField("\"assign_time\"")
    @TableField("ASSIGN_TIME")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    private Date assignTime;
@@ -145,7 +153,7 @@
     * 执行时间
     */
    @ApiModelProperty(value= "执行时间")
    @TableField("\"execute_time\"")
    @TableField("EXECUTE_TIME")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    private Date executeTime;
@@ -153,7 +161,7 @@
     * 完结时间
     */
    @ApiModelProperty(value= "完结时间")
    @TableField("\"complete_time\"")
    @TableField("COMPLETE_TIME")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    private Date completeTime;
@@ -161,7 +169,7 @@
     * 取消时间
     */
    @ApiModelProperty(value= "取消时间")
    @TableField("\"cancel_time\"")
    @TableField("CANCEL_TIME")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    private Date cancelTime;
@@ -169,27 +177,26 @@
     * 工作状态
     */
    @ApiModelProperty(value= "工作状态")
    @TableField("\"wrk_sts\"")
    @TableField("WRK_STS")
    private Integer wrkSts;
    /**
     * 堆垛机号
     */
    @ApiModelProperty(value= "堆垛机号")
    @TableField("\"crn_no\"")
    @TableField("CRN_NO")
    private Integer crnNo;
    /**
     * 指令执行步序
     */
    @ApiModelProperty(value= "指令执行步序")
    @TableField("COMMAND_STEP")
    private Integer commandStep;
    @ApiModelProperty(value = "移库标记")
    @TableField("\"transfer_mark\"")
    @TableField("TRANSFER_MARK")
    private Integer transferMark;
    @ApiModelProperty(value = "原始起点")
    @TableField("\"origin_start_point\"")
    private String originStartPoint;
    @ApiModelProperty(value = "原始起点")
    @TableField("\"origin_target_point\"")
    private String originTargetPoint;
    public TaskWrk() {}