com.alipay.api.response.AlipayOfflineMarketApplyorderBatchqueryResponse 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.BizOrderQueryResponse;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.offline.market.applyorder.batchquery response.
*
* @author auto create
* @since 1.0, 2024-07-04 17:41:18
*/
public class AlipayOfflineMarketApplyorderBatchqueryResponse extends AlipayResponse {
private static final long serialVersionUID = 7599177894325186613L;
/**
* 支付宝操作流水信息列表
*/
@ApiListField("biz_order_infos")
@ApiField("biz_order_query_response")
private List bizOrderInfos;
/**
* 当前页码
*/
@ApiField("current_page_no")
private Long currentPageNo;
/**
* 每页记录数
*/
@ApiField("page_size")
private Long pageSize;
/**
* 总记录数
*/
@ApiField("total_items")
private Long totalItems;
/**
* 总页码数目
*/
@ApiField("total_page_no")
private Long totalPageNo;
public void setBizOrderInfos(List bizOrderInfos) {
this.bizOrderInfos = bizOrderInfos;
}
public List getBizOrderInfos( ) {
return this.bizOrderInfos;
}
public void setCurrentPageNo(Long currentPageNo) {
this.currentPageNo = currentPageNo;
}
public Long getCurrentPageNo( ) {
return this.currentPageNo;
}
public void setPageSize(Long pageSize) {
this.pageSize = pageSize;
}
public Long getPageSize( ) {
return this.pageSize;
}
public void setTotalItems(Long totalItems) {
this.totalItems = totalItems;
}
public Long getTotalItems( ) {
return this.totalItems;
}
public void setTotalPageNo(Long totalPageNo) {
this.totalPageNo = totalPageNo;
}
public Long getTotalPageNo( ) {
return this.totalPageNo;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy