#
luxiaotao1123
2024-09-13 9b50dca2a601d1cf231821e248d3b9fbedd8febe
zy-acs-manager/src/main/java/com/zy/acs/manager/manager/entity/AgvDetail.java
@@ -351,17 +351,7 @@
        return this.agvStatus.desc;
    }
    public String getDeleted$(){
        if (null == this.deleted){ return null; }
        switch (this.deleted){
            case 1:
                return "是";
            case 0:
                return "否";
            default:
                return String.valueOf(this.deleted);
        }
    }
    public Long getRecentCode() {
//        if (this.code != null) {
@@ -379,4 +369,18 @@
        return null;
    }
    public Boolean getStatusBool(){
        if (null == this.status){ return null; }
        switch (this.status){
            case 1:
                return true;
            case 0:
                return false;
            default:
                return null;
        }
    }
}