| | |
| | | /** |
| | | * 上岗时间 |
| | | */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date dutyTime; |
| | | // @JsonFormat(pattern = "HH:mm", timezone = "GMT+8") |
| | | // @DateTimeFormat(pattern = "HH:mm") |
| | | private String dutyTime; |
| | | |
| | | /** |
| | | * 下岗时间 |
| | | */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date layoffTime; |
| | | // @JsonFormat(pattern = "HH:mm", timezone = "GMT+8") |
| | | // @DateTimeFormat(pattern = "HH:mm") |
| | | private String layoffTime; |
| | | |
| | | //距离,默认50m |
| | | private Double distance; |
| | | |
| | | |
| | | |