com.alipay.api.domain.AreaCode 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.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 区域代码
*
* @author auto create
* @since 1.0, 2017-04-06 18:05:03
*/
public class AreaCode extends AlipayObject {
private static final long serialVersionUID = 4489152783635956195L;
/**
* 区域类型
AREA_PRVN:省代码;
AREA_CITY:市代码;
AREA_DIST:区县代码;
*/
@ApiField("area_type")
private String areaType;
/**
* 区域代码
省市区代码,国标码,详见国家统计局数据,点此下载。
*/
@ApiField("code")
private String code;
public String getAreaType() {
return this.areaType;
}
public void setAreaType(String areaType) {
this.areaType = areaType;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
}