com.alipay.api.response.AlipayOfflineMarketShopSummaryBatchqueryResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
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.ShopSummaryQueryResponse;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.offline.market.shop.summary.batchquery response.
*
* @author auto create
* @since 1.0, 2024-07-04 17:41:20
*/
public class AlipayOfflineMarketShopSummaryBatchqueryResponse extends AlipayResponse {
private static final long serialVersionUID = 2448959139924366555L;
/**
* 当前页码
*/
@ApiField("current_page_no")
private String currentPageNo;
/**
* 每页记录数
*/
@ApiField("page_size")
private String pageSize;
/**
* 支付宝门店摘要信息列表
*/
@ApiListField("shop_summary_infos")
@ApiField("shop_summary_query_response")
private List shopSummaryInfos;
/**
* 总记录数
*/
@ApiField("total_items")
private String totalItems;
/**
* 总页码数目
*/
@ApiField("total_page_no")
private String totalPageNo;
public void setCurrentPageNo(String currentPageNo) {
this.currentPageNo = currentPageNo;
}
public String getCurrentPageNo( ) {
return this.currentPageNo;
}
public void setPageSize(String pageSize) {
this.pageSize = pageSize;
}
public String getPageSize( ) {
return this.pageSize;
}
public void setShopSummaryInfos(List shopSummaryInfos) {
this.shopSummaryInfos = shopSummaryInfos;
}
public List getShopSummaryInfos( ) {
return this.shopSummaryInfos;
}
public void setTotalItems(String totalItems) {
this.totalItems = totalItems;
}
public String getTotalItems( ) {
return this.totalItems;
}
public void setTotalPageNo(String totalPageNo) {
this.totalPageNo = totalPageNo;
}
public String getTotalPageNo( ) {
return this.totalPageNo;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy