#
luxiaotao1123
2024-09-14 c08dd506e863da51accc7029d717e5f4fbfc29ef
zy-acs-manager/src/main/java/com/zy/acs/manager/manager/entity/Task.java
@@ -173,13 +173,13 @@
     * 租户
     */
    @ApiModelProperty(value= "租户")
    private Integer tenantId;
    private Long tenantId;
    /**
     * 添加人员
     */
    @ApiModelProperty(value= "添加人员")
    private Integer createBy;
    private Long createBy;
    /**
     * 添加时间
@@ -191,7 +191,7 @@
     * 修改人员
     */
    @ApiModelProperty(value= "修改人员")
    private Integer updateBy;
    private Long updateBy;
    /**
     * 修改时间
@@ -207,7 +207,7 @@
    public Task() {}
    public Task(String uuid,Long busId,String seqNum,Integer priority,String name,Long taskSts,Long taskType,Long agvId,Date ioTime,Date startTime,Date endTime,Date errTime,Long oriSta,Long oriLoc,Long destSta,Long destLoc,String emptyMk,String zpallet,String phase,String errDesc,Integer status,Integer deleted,Integer tenantId,Integer createBy,Date createTime,Integer updateBy,Date updateTime,String memo) {
    public Task(String uuid,Long busId,String seqNum,Integer priority,String name,Long taskSts,Long taskType,Long agvId,Date ioTime,Date startTime,Date endTime,Date errTime,Long oriSta,Long oriLoc,Long destSta,Long destLoc,String emptyMk,String zpallet,String phase,String errDesc,Integer status,Integer deleted,Long tenantId,Long createBy,Date createTime,Long updateBy,Date updateTime,String memo) {
        this.uuid = uuid;
        this.busId = busId;
        this.seqNum = seqNum;
@@ -380,15 +380,17 @@
        }
    }
    public String getDeleted$(){
        if (null == this.deleted){ return null; }
        switch (this.deleted){
    public Boolean getStatusBool(){
        if (null == this.status){ return null; }
        switch (this.status){
            case 1:
                return "是";
                return true;
            case 0:
                return "否";
                return false;
            default:
                return String.valueOf(this.deleted);
                return null;
        }
    }