| | |
| | | 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 |
| | |
| | | */ |
| | | public class SimpleLocationInfo implements Serializable { |
| | | |
| | | @Expose |
| | | //纬度 |
| | | private BigDecimal latitude; |
| | | @Expose |
| | | //经度 |
| | | private BigDecimal longitude; |
| | | @Expose |
| | | //地址 |
| | | private String address; |
| | | |
| | | @Expose |
| | | private String addressDetail; |
| | | |
| | | |
| | | public BigDecimal getLatitude() { |
| | |
| | | public void setAddress(String address) { |
| | | this.address = address; |
| | | } |
| | | |
| | | public String getAddressDetail() { |
| | | return addressDetail; |
| | | } |
| | | |
| | | public void setAddressDetail(String addressDetail) { |
| | | this.addressDetail = addressDetail; |
| | | } |
| | | } |