wjc
2025-04-23 e6a0ff5475e271a6b126ab27de6cf9f230b67512
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
package com.hdl.photovoltaic.ui.bean;
 
import java.io.Serializable;
 
/**
 * 地理位置对象
 */
public class Geolocation implements Serializable {
 
    private int result;//结果
    private String des;//状态描述
    private double longitude;//经度
    private double latitude;//纬度
 
    public int getResult() {
        return result;
    }
 
    public void setResult(int result) {
        this.result = result;
    }
 
    public String getDes() {
        return des;
    }
 
    public void setDes(String des) {
        this.des = des;
    }
 
    public double getLongitude() {
        return longitude;
    }
 
    public void setLongitude(double longitude) {
        this.longitude = longitude;
    }
 
    public double getLatitude() {
        return latitude;
    }
 
    public void setLatitude(double latitude) {
        this.latitude = latitude;
    }
 
 
}