Compare commits
2 Commits
74c35cb6df
...
c15224eb51
Author | SHA1 | Date |
---|---|---|
|
c15224eb51 | 2 years ago |
|
3aabf0c7f7 | 2 years ago |
@ -0,0 +1,36 @@
|
||||
package com.internal.dto;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
@Data
|
||||
public class TerminalAroundSearch {
|
||||
|
||||
/**
|
||||
* {
|
||||
* "createtime": 1683779426299,
|
||||
* "desc": "1656517091884187650",
|
||||
* "locatetime": 1683799295000,
|
||||
* "location": {
|
||||
* "accuracy": 550.0,
|
||||
* "direction": 511.0,
|
||||
* "distance": 0,
|
||||
* "height": null,
|
||||
* "latitude": 39.90923,
|
||||
* "longitude": 116.397428,
|
||||
* "speed": 255.0,
|
||||
* "trackProps": null
|
||||
* },
|
||||
* "name": "京N86555",
|
||||
* "props": null,
|
||||
* "tid": 686521656
|
||||
* }
|
||||
*/
|
||||
|
||||
private String tid;
|
||||
private Long carId;
|
||||
private String name;
|
||||
private LocalDateTime locatetime;
|
||||
private LocalDateTime createtime;
|
||||
}
|
Loading…
Reference in new issue