mac
2024-06-25 9695405b73d4de40135a0ec05e4ae9d18ae4d344
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
63
64
65
66
67
68
69
70
71
72
73
74
75
package com.hdl.photovoltaic.ui.bean;
 
import androidx.annotation.NonNull;
 
import java.io.Serializable;
 
/**
 * Created by Zoro
 * Created on 2023/5/5
 * description:
 */
public class LongLatInfo implements Serializable {
 
    // 城市名
    private String City;
    //国家
    private String Country;
    //经度
    private String Longitude;
    //纬度
    private String Latitude;
    //时区
    private String Timezone;
 
    public LongLatInfo() {
    }
 
    public LongLatInfo(String city, String country, String longitude, String latitude, String timezone) {
        City = city;
        Country = country;
        Longitude = longitude;
        Latitude = latitude;
        Timezone = timezone;
    }
 
    public String getCity() {
        return City == null ? "" : City;
    }
 
    public void setCity(@NonNull String city) {
        City = city;
    }
 
    public String getCountry() {
        return Country == null ? "" : Country;
    }
 
    public void setCountry(@NonNull String country) {
        Country = country;
    }
 
    public String getLongitude() {
        return Longitude == null ? "" : Longitude;
    }
 
    public void setLongitude(@NonNull String longitude) {
        Longitude = longitude;
    }
 
    public String getLatitude() {
        return Latitude == null ? "" : Latitude;
    }
 
    public void setLatitude(@NonNull String latitude) {
        Latitude = latitude;
    }
 
    public String getTimezone() {
        return Timezone == null ? "" : Timezone;
    }
 
    public void setTimezone(@NonNull String timezone) {
        Timezone = timezone;
    }
}