
com.alipay.api.domain.AlipayEcoMycarFuellingShopCreateModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
baidu push client api with maven
The 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, 2017-07-13 14:24:01
*/
public class AlipayEcoMycarFuellingShopCreateModel extends AlipayObject {
private static final long serialVersionUID = 1727238765643858631L;
/**
* 门店地址
*/
@ApiField("address")
private String address;
/**
* 国标6位城市编号
*/
@ApiField("city_code")
private String cityCode;
/**
* 国标6位区编号
*/
@ApiField("district_code")
private String districtCode;
/**
* 纬度,高德坐标系,最好找到高德POI标识,取得标识的维度填入
*/
@ApiField("lat")
private String lat;
/**
* 经度,高德坐标系,最好找到高德POI标识,取得标识的经度填入
*/
@ApiField("lon")
private String lon;
/**
* 外部门店编号,系统唯一,该值添加后不可修改
*/
@ApiField("out_shop_id")
private String outShopId;
/**
* ISV提供的门店支付链接地址,如果支付链接地址为空,默认使用用户的当面付链接地址。注意:链接地址必须使用https://或alipays://协议。需进行encode转码
*/
@ApiField("pay_url")
private String payUrl;
/**
* 高德POI信息唯一ID,可通过http://lbs.amap.com/api/webservice/guide/api/search/进行查找,查询的TYPE为010100|010101|010102|010103|010104|010105|010107|010108|010109|010110|010111|010112
*/
@ApiField("poi_id")
private String poiId;
/**
* 国标6位省份编号
*/
@ApiField("province_code")
private String provinceCode;
/**
* 门店名称
*/
@ApiField("shop_name")
private String shopName;
/**
* 门店状态,0:有效;1:停用;
*/
@ApiField("shop_status")
private String shopStatus;
public String getAddress() {
return this.address;
}
public void setAddress(String address) {
this.address = address;
}
public String getCityCode() {
return this.cityCode;
}
public void setCityCode(String cityCode) {
this.cityCode = cityCode;
}
public String getDistrictCode() {
return this.districtCode;
}
public void setDistrictCode(String districtCode) {
this.districtCode = districtCode;
}
public String getLat() {
return this.lat;
}
public void setLat(String lat) {
this.lat = lat;
}
public String getLon() {
return this.lon;
}
public void setLon(String lon) {
this.lon = lon;
}
public String getOutShopId() {
return this.outShopId;
}
public void setOutShopId(String outShopId) {
this.outShopId = outShopId;
}
public String getPayUrl() {
return this.payUrl;
}
public void setPayUrl(String payUrl) {
this.payUrl = payUrl;
}
public String getPoiId() {
return this.poiId;
}
public void setPoiId(String poiId) {
this.poiId = poiId;
}
public String getProvinceCode() {
return this.provinceCode;
}
public void setProvinceCode(String provinceCode) {
this.provinceCode = provinceCode;
}
public String getShopName() {
return this.shopName;
}
public void setShopName(String shopName) {
this.shopName = shopName;
}
public String getShopStatus() {
return this.shopStatus;
}
public void setShopStatus(String shopStatus) {
this.shopStatus = shopStatus;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy