package com.yeshi.location.app.entity.location;
|
|
import com.google.gson.annotations.Expose;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
/**
|
* @author hxh
|
* @title: SimpleLocationInfo
|
* @description: 简要位置信息
|
* @date 2021/11/19 16:10
|
*/
|
public class SimpleLocationInfo implements Serializable {
|
|
@Expose
|
//纬度
|
private BigDecimal latitude;
|
@Expose
|
//经度
|
private BigDecimal longitude;
|
@Expose
|
//地址
|
private String address;
|
|
@Expose
|
private String addressDetail;
|
|
|
public BigDecimal getLatitude() {
|
return latitude;
|
}
|
|
public void setLatitude(BigDecimal latitude) {
|
this.latitude = latitude;
|
}
|
|
public BigDecimal getLongitude() {
|
return longitude;
|
}
|
|
public void setLongitude(BigDecimal longitude) {
|
this.longitude = longitude;
|
}
|
|
public String getAddress() {
|
return address;
|
}
|
|
public void setAddress(String address) {
|
this.address = address;
|
}
|
|
public String getAddressDetail() {
|
return addressDetail;
|
}
|
|
public void setAddressDetail(String addressDetail) {
|
this.addressDetail = addressDetail;
|
}
|
}
|