#
luxiaotao1123
2024-09-13 e077ea7f967767782ae1c60b22d87e28f65e4e5c
zy-acs-manager/src/main/java/com/zy/acs/manager/manager/entity/Agv.java
@@ -62,16 +62,16 @@
    private Integer deleted;
    @ApiModelProperty(value = "租户[sys_tenant]")
    private Integer tenantId;
    private Long tenantId;
    @ApiModelProperty(value = "添加人员[sys_user]")
    private Integer createBy;
    private Long createBy;
    @ApiModelProperty(value = "创建时间")
    private Date createTime;
    @ApiModelProperty(value = "修改人员[sys_user]")
    private Integer updateBy;
    private Long updateBy;
    @ApiModelProperty(value = "修改时间")
    private Date updateTime;
@@ -109,4 +109,17 @@
        }
    }
    public Boolean getStatusBool(){
        if (null == this.status){ return null; }
        switch (this.status){
            case 1:
                return true;
            case 0:
                return false;
            default:
                return null;
        }
    }
}