com.alipay.api.domain.AlipayCommerceCityfacilitatorStationQueryModel 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
alipay-sdk project for Spring Project
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, 2016-10-26 18:05:20
*/
public class AlipayCommerceCityfacilitatorStationQueryModel extends AlipayObject {
private static final long serialVersionUID = 3152449558228571232L;
/**
* 城市编码请参考查询:http://www.stats.gov.cn/tjsj/tjbz/xzqhdm/201504/t20150415_712722.html;
已支持城市:广州 440100,深圳 440300,杭州330100。
*/
@ApiField("city_code")
private String cityCode;
public String getCityCode() {
return this.cityCode;
}
public void setCityCode(String cityCode) {
this.cityCode = cityCode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy