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

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

package com.alipay.api.domain;

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

/**
 * 审批单城市信息
 *
 * @author auto create
 * @since 1.0, 2023-01-31 14:05:38
 */
public class ApprovalCityDTO extends AlipayObject {

	private static final long serialVersionUID = 3466896878883299492L;

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

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

	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;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy