
com.alipay.api.response.AlipayOfflineMarketShopBatchqueryResponse 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
baidu push client api with maven
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.AlipayResponse;
/**
* ALIPAY API: alipay.offline.market.shop.batchquery response.
*
* @author auto create
* @since 1.0, 2017-07-19 16:55:51
*/
public class AlipayOfflineMarketShopBatchqueryResponse extends AlipayResponse {
private static final long serialVersionUID = 6597583581158381559L;
/**
* 当前页码
*/
@ApiField("current_pageno")
private String currentPageno;
/**
* 门店列表ID,逗号分隔
*/
@ApiListField("shop_ids")
@ApiField("string")
private List shopIds;
/**
* 总页码数目
*/
@ApiField("total_pageno")
private String totalPageno;
public void setCurrentPageno(String currentPageno) {
this.currentPageno = currentPageno;
}
public String getCurrentPageno( ) {
return this.currentPageno;
}
public void setShopIds(List shopIds) {
this.shopIds = shopIds;
}
public List getShopIds( ) {
return this.shopIds;
}
public void setTotalPageno(String totalPageno) {
this.totalPageno = totalPageno;
}
public String getTotalPageno( ) {
return this.totalPageno;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy