jinpengyong
2023-08-11 0bdd4bcee9d66e5372df5351ec0008b23302ffff
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
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;
 
 
 
    @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);
    }
 
}