jinpengyong
2023-08-21 dcb98a36af4ad7823edd61a9c3388bd024db740f
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package com.moral.api.pojo.dto.cruiser;
 
 
import lombok.Data;
 
import java.util.Objects;
 
import com.fasterxml.jackson.annotation.JsonProperty;
 
@Data
public class CruiserDTO {
 
    /**
     * 数据时间
     */
    private String time;
 
    /**
     * 纬度
     */
    @JsonProperty(value = "flylat")
    private Double flyLat;
 
    /**
     * 经度
     */
    @JsonProperty(value = "flylon")
    private Double flyLon;
 
 
    private String data;
 
 
    private String state;
 
 
    public CruiserDTO() {
        this.state = "1"; // 设置state字段默认值为1
    }
 
    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        CruiserDTO cruiser = (CruiserDTO) o;
        //当type、color 内容都相等的时候,才返回true
        return Objects.equals(flyLat, cruiser.flyLat) &&
                Objects.equals(flyLon, cruiser.flyLon);
    }
    @Override
    public int hashCode() {
        return Objects.hash(flyLat, flyLon);
    }
 
}