zy-acs-manager/src/main/java/com/zy/acs/manager/manager/entity/Route.java
@@ -178,17 +178,7 @@ } } 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 String getStartCode$() { CodeService service = SpringUtils.getBean(CodeService.class); @@ -208,4 +198,16 @@ 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; } } }