com.alipay.api.response.AntMerchantExpandMerchantStorelistQueryResponse 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.ShopQueryInfo;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: ant.merchant.expand.merchant.storelist.query response.
*
* @author auto create
* @since 1.0, 2024-07-04 15:51:36
*/
public class AntMerchantExpandMerchantStorelistQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 8641976387118833298L;
/**
* 商户门店列表
*/
@ApiListField("merchant_stores")
@ApiField("shop_query_info")
private List merchantStores;
/**
* 当前页码,页码从1开始
*/
@ApiField("page_num")
private Long pageNum;
/**
* 每页条数
*/
@ApiField("page_size")
private Long pageSize;
/**
* 总页数
*/
@ApiField("total_pages")
private Long totalPages;
/**
* 总条数
*/
@ApiField("total_size")
private Long totalSize;
public void setMerchantStores(List merchantStores) {
this.merchantStores = merchantStores;
}
public List getMerchantStores( ) {
return this.merchantStores;
}
public void setPageNum(Long pageNum) {
this.pageNum = pageNum;
}
public Long getPageNum( ) {
return this.pageNum;
}
public void setPageSize(Long pageSize) {
this.pageSize = pageSize;
}
public Long getPageSize( ) {
return this.pageSize;
}
public void setTotalPages(Long totalPages) {
this.totalPages = totalPages;
}
public Long getTotalPages( ) {
return this.totalPages;
}
public void setTotalSize(Long totalSize) {
this.totalSize = totalSize;
}
public Long getTotalSize( ) {
return this.totalSize;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy