com.alipay.api.response.KoubeiMarketingDataIsvShopQueryResponse 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.response;
import java.util.List;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
import com.alipay.api.domain.ShopSummaryInfo;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: koubei.marketing.data.isv.shop.query response.
*
* @author auto create
* @since 1.0, 2017-07-26 09:48:54
*/
public class KoubeiMarketingDataIsvShopQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 8472148394137526531L;
/**
* 门店摘要信息列表
*/
@ApiListField("shop_summary_infos")
@ApiField("shop_summary_info")
private List shopSummaryInfos;
public void setShopSummaryInfos(List shopSummaryInfos) {
this.shopSummaryInfos = shopSummaryInfos;
}
public List getShopSummaryInfos( ) {
return this.shopSummaryInfos;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy