| | |
| | | // null // 备注 |
| | | // ); |
| | | |
| | | public String getAllDirection$(){ |
| | | public Boolean getAllDirectionBool(){ |
| | | if (null == this.allDirection){ return null; } |
| | | switch (this.allDirection){ |
| | | case 0: |
| | | return "否"; |
| | | case 1: |
| | | return "是"; |
| | | return true; |
| | | case 0: |
| | | return false; |
| | | default: |
| | | return String.valueOf(this.allDirection); |
| | | return null; |
| | | } |
| | | } |
| | | |
| | | public String getStatus$(){ |
| | | if (null == this.status){ return null; } |
| | | switch (this.status){ |
| | | case 1: |
| | | return "正常"; |
| | | case 0: |
| | | return "禁用"; |
| | | default: |
| | | return String.valueOf(this.status); |
| | | } |
| | | } |
| | | |
| | | |
| | | |
| | | public Boolean getStatusBool(){ |
| | | if (null == this.status){ return null; } |
| | |
| | | return null; |
| | | } |
| | | } |
| | | |
| | | |
| | | |
| | | } |