1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
| package com.moral.api.pojo.dto.cruiser;
|
|
| import com.fasterxml.jackson.annotation.JsonProperty;
| import lombok.Data;
|
| import java.util.Objects;
|
| @Data
| public class CruiserListDTO {
|
| /**
| * 数据时间
| */
| private String time;
|
| /**
| * 纬度
| */
| private Double flyLat;
|
| /**
| * 经度
| */
| private Double flyLon;
|
|
| private Integer coordinateId;
|
| private Integer id;
|
| private Integer state;
|
|
| }
|
|