com.alipay.api.response.AlipayOpenPublicGisQueryResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.open.public.gis.query response.
*
* @author auto create
* @since 1.0, 2024-03-01 16:34:32
*/
public class AlipayOpenPublicGisQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 2281167716593588512L;
/**
* 精确度
*/
@ApiField("accuracy")
private String accuracy;
/**
* 经纬度所在位置
*/
@ApiField("city")
private String city;
/**
* 纬度信息
*/
@ApiField("latitude")
private String latitude;
/**
* 经度信息
*/
@ApiField("longitude")
private String longitude;
/**
* 经纬度对应位置所在的省份
*/
@ApiField("province")
private String province;
public void setAccuracy(String accuracy) {
this.accuracy = accuracy;
}
public String getAccuracy( ) {
return this.accuracy;
}
public void setCity(String city) {
this.city = city;
}
public String getCity( ) {
return this.city;
}
public void setLatitude(String latitude) {
this.latitude = latitude;
}
public String getLatitude( ) {
return this.latitude;
}
public void setLongitude(String longitude) {
this.longitude = longitude;
}
public String getLongitude( ) {
return this.longitude;
}
public void setProvince(String province) {
this.province = province;
}
public String getProvince( ) {
return this.province;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy