com.alipay.api.response.AlipayEbppInvoiceEnterpriseInvoiceinfoBatchqueryResponse 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.EnterpriseInvoiceInfoDTO;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.ebpp.invoice.enterprise.invoiceinfo.batchquery response.
*
* @author auto create
* @since 1.0, 2024-05-06 14:42:01
*/
public class AlipayEbppInvoiceEnterpriseInvoiceinfoBatchqueryResponse extends AlipayResponse {
private static final long serialVersionUID = 4441315867893541335L;
/**
* 发票列表
*/
@ApiListField("invoice_info_list")
@ApiField("enterprise_invoice_info_d_t_o")
private List invoiceInfoList;
/**
* 当前页码
*/
@ApiField("page_num")
private Long pageNum;
/**
* 每页数量
*/
@ApiField("page_size")
private Long pageSize;
/**
* 总条数
*/
@ApiField("total_size")
private Long totalSize;
public void setInvoiceInfoList(List invoiceInfoList) {
this.invoiceInfoList = invoiceInfoList;
}
public List getInvoiceInfoList( ) {
return this.invoiceInfoList;
}
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 setTotalSize(Long totalSize) {
this.totalSize = totalSize;
}
public Long getTotalSize( ) {
return this.totalSize;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy