com.alipay.api.domain.AlipayCommerceCityfacilitatorFunctionQueryModel 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 AlipayCommerceCityfacilitatorFunctionQueryModel extends AlipayObject {
private static final long serialVersionUID = 3533186486684688121L;
/**
* 城市国家标准编码
*/
@ApiField("city_code")
private String cityCode;
/**
* 终端设备编码,android可直接获取设备的devicecode值
*/
@ApiField("device_code")
private String deviceCode;
public String getCityCode() {
return this.cityCode;
}
public void setCityCode(String cityCode) {
this.cityCode = cityCode;
}
public String getDeviceCode() {
return this.deviceCode;
}
public void setDeviceCode(String deviceCode) {
this.deviceCode = deviceCode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy