All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alipay.api.domain.ServiceRegionSimpleVO Maven / Gradle / Ivy

Go to download

Alipay openapi SDK for Java Copyright © 2018 杭州蚂蚁金服 All rights reserved. 版权所有 (C)杭州蚂蚁金服 http://open.alipay.com

There is a newer version: 4.40.21.ALL
Show newest version
package com.alipay.api.domain;

import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;

/**
 * 服务区域
 *
 * @author auto create
 * @since 1.0, 2019-12-04 19:59:24
 */
public class ServiceRegionSimpleVO extends AlipayObject {

	private static final long serialVersionUID = 6266434796358828631L;

	/**
	 * 区域码
	 */
	@ApiField("region_code")
	private String regionCode;

	/**
	 * 0=全球
1=国家
2=省
3=市
4=区县
5=乡镇街道
9=自定义
601=小区poi
	 */
	@ApiField("region_type")
	private String regionType;

	public String getRegionCode() {
		return this.regionCode;
	}
	public void setRegionCode(String regionCode) {
		this.regionCode = regionCode;
	}

	public String getRegionType() {
		return this.regionType;
	}
	public void setRegionType(String regionType) {
		this.regionType = regionType;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy