swb
2024-07-05 f577294fad6b5636a22ce872b3b762ae40fd7799
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
56
57
58
59
60
61
62
package com.moral.api.entity;
 
import lombok.Data;
 
import java.util.Objects;
 
import com.fasterxml.jackson.annotation.JsonProperty;
 
/**
 * Description //todo
 *
 * @author swb
 * @ClassName CruiserDTO
 * @date 2024.06.19 09:15
 */
@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);
    }
 
}