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

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

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

import java.util.List;

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

/**
 * 城市信息
 *
 * @author auto create
 * @since 1.0, 2016-10-26 17:43:38
 */
public class CityFunction extends AlipayObject {

	private static final long serialVersionUID = 2211572356258197284L;

	/**
	 * 城市标准编码
	 */
	@ApiField("city_code")
	private String cityCode;

	/**
	 * 城市名称
	 */
	@ApiField("city_name")
	private String cityName;

	/**
	 * 描述功能,支持开卡(issue),圈存(load),充值转账(recharge)
	 */
	@ApiListField("function_type")
	@ApiField("string")
	private List functionType;

	public String getCityCode() {
		return this.cityCode;
	}
	public void setCityCode(String cityCode) {
		this.cityCode = cityCode;
	}

	public String getCityName() {
		return this.cityName;
	}
	public void setCityName(String cityName) {
		this.cityName = cityName;
	}

	public List getFunctionType() {
		return this.functionType;
	}
	public void setFunctionType(List functionType) {
		this.functionType = functionType;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy