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

com.alipay.api.response.KoubeiMerchantShopQueryResponse Maven / Gradle / Ivy

package com.alipay.api.response;

import java.util.List;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
import com.alipay.api.domain.CityShopModel;

import com.alipay.api.AlipayResponse;

/**
 * ALIPAY API: koubei.merchant.shop.query response.
 * 
 * @author auto create
 * @since 1.0, 2024-07-04 15:51:39
 */
public class KoubeiMerchantShopQueryResponse extends AlipayResponse {

	private static final long serialVersionUID = 1896283927319288374L;

	/** 
	 * 根据商户pid查询门店模型列表
	 */
	@ApiListField("city_shop_models")
	@ApiField("city_shop_model")
	private List cityShopModels;

	public void setCityShopModels(List cityShopModels) {
		this.cityShopModels = cityShopModels;
	}
	public List getCityShopModels( ) {
		return this.cityShopModels;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy