| | |
| | | private Long jamSeg; |
| | | |
| | | /** |
| | | * 阻塞路径 |
| | | */ |
| | | @ApiModelProperty(value= "阻塞路径") |
| | | private String jamPath; |
| | | |
| | | /** |
| | | * 避让车辆 |
| | | */ |
| | | @ApiModelProperty(value= "避让车辆") |
| | |
| | | return null; |
| | | } |
| | | |
| | | public String getCycleAvo$(){ |
| | | public Boolean getCycleAvoBool(){ |
| | | if (null == this.cycleAvo){ return null; } |
| | | switch (this.cycleAvo){ |
| | | case 1: |
| | | return "是"; |
| | | return true; |
| | | case 0: |
| | | return "否"; |
| | | return false; |
| | | default: |
| | | return String.valueOf(this.cycleAvo); |
| | | 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; |
| | | } |
| | | } |
| | | |
| | | |
| | | |
| | | } |