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;
|
}
|
|
|
}
|