com.alipay.api.response.AlipayBossFncOutputinvoiceRcptQueryResponse 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.OutputInvoiceReceiptOpenApiResponse;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.boss.fnc.outputinvoice.rcpt.query response.
*
* @author auto create
* @since 1.0, 2024-01-22 09:38:39
*/
public class AlipayBossFncOutputinvoiceRcptQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 8731673124451744185L;
/**
* 当前页
*/
@ApiField("current_page")
private Long currentPage;
/**
* 每页条数
*/
@ApiField("items_page")
private String itemsPage;
/**
* 结果
*/
@ApiListField("result_set")
@ApiField("output_invoice_receipt_open_api_response")
private List resultSet;
/**
* 总条数
*/
@ApiField("total_items")
private Long totalItems;
/**
* 总页数
*/
@ApiField("total_pages")
private Long totalPages;
public void setCurrentPage(Long currentPage) {
this.currentPage = currentPage;
}
public Long getCurrentPage( ) {
return this.currentPage;
}
public void setItemsPage(String itemsPage) {
this.itemsPage = itemsPage;
}
public String getItemsPage( ) {
return this.itemsPage;
}
public void setResultSet(List resultSet) {
this.resultSet = resultSet;
}
public List getResultSet( ) {
return this.resultSet;
}
public void setTotalItems(Long totalItems) {
this.totalItems = totalItems;
}
public Long getTotalItems( ) {
return this.totalItems;
}
public void setTotalPages(Long totalPages) {
this.totalPages = totalPages;
}
public Long getTotalPages( ) {
return this.totalPages;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy