| | |
| | | @ExcelColumn(name="编辑时间") |
| | | //@JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date editDate; |
| | | @ApiModelProperty(value = "最近低电量报警时间") |
| | | //@JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date lowVoltageAlarmTime; |
| | | |
| | | @ApiModelProperty(value = "编辑人") |
| | | @ExcelColumn(name="编辑人") |
| | |
| | | @ApiModelProperty(value = "状态 0停车可出借 1出借中 3禁用 ", example = "1") |
| | | @ExcelColumn(name="状态 0停车可出借 1出借中 3禁用 ") |
| | | private Integer status; |
| | | @ApiModelProperty(value = "电车上下架状态 0下架中 1上架中 ", example = "1") |
| | | @ExcelColumn(name="上下架状态 0下架中 1上架中 ") |
| | | private Integer bikeStatus; |
| | | @ApiModelProperty(value = "电车开关锁状态 (0关锁 1开锁) ", example = "1") |
| | | @ExcelColumn(name="开关锁状态 (0关锁 1开锁) ") |
| | | private Integer lockStatus; |
| | | @ApiModelProperty(value = "是否有车 0全部 1无车 2有车 null为全部", example = "1") |
| | | @TableField(exist = false) |
| | | private Integer hasBike; |
| | |
| | | @ApiModelProperty(value = "最近定位地址") |
| | | @ExcelColumn(name="最近定位地址") |
| | | private String location; |
| | | @ApiModelProperty(value = "是否低电量 0否 1是") |
| | | @TableField(exist = false ) |
| | | private Integer lowVoltage; |
| | | @ApiModelProperty(value = "是否在线 0离线 1在线", example = "1") |
| | | @TableField(exist = false) |
| | | private Integer isOnline; |
| | | @ApiModelProperty(value = "强制还车结果备注") |
| | | @ExcelColumn(name="强制还车结果备注") |
| | | private String forceBackInfo; |
| | | |
| | | @ApiModelProperty(value = "小程序码") |
| | | private String imgurl; |
| | | } |