com.alipay.api.domain.JobAddress 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, 2021-11-01 14:16:08
*/
public class JobAddress extends AlipayObject {
private static final long serialVersionUID = 8621398325513972123L;
/**
* 详细地址
*/
@ApiField("detail")
private String detail;
/**
* 经纬度,半角逗号分隔。
*/
@ApiField("geo")
private String geo;
/**
* 6位行政区域编码,具体到区(县),如: 浙江省杭州市西湖区=330106。区域编码可参考:http://www.mca.gov.cn/article/sj/xzqh/1980/
*/
@ApiField("region_code")
private String regionCode;
public String getDetail() {
return this.detail;
}
public void setDetail(String detail) {
this.detail = detail;
}
public String getGeo() {
return this.geo;
}
public void setGeo(String geo) {
this.geo = geo;
}
public String getRegionCode() {
return this.regionCode;
}
public void setRegionCode(String regionCode) {
this.regionCode = regionCode;
}
}