com.alipay.api.response.AlipayEbppMerchantExternalbillQueryResponse 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.ExternalBillInfoResult;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.ebpp.merchant.externalbill.query response.
*
* @author auto create
* @since 1.0, 2024-07-04 17:31:52
*/
public class AlipayEbppMerchantExternalbillQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 4261872255143947393L;
/**
* 账单列表
*/
@ApiListField("external_bill_list")
@ApiField("external_bill_info_result")
private List externalBillList;
/**
* 当前页码
*/
@ApiField("page_number")
private Long pageNumber;
/**
* 分页条数
*/
@ApiField("page_size")
private Long pageSize;
/**
* 查询总数
*/
@ApiField("total_count")
private Long totalCount;
public void setExternalBillList(List externalBillList) {
this.externalBillList = externalBillList;
}
public List getExternalBillList( ) {
return this.externalBillList;
}
public void setPageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
}
public Long getPageNumber( ) {
return this.pageNumber;
}
public void setPageSize(Long pageSize) {
this.pageSize = pageSize;
}
public Long getPageSize( ) {
return this.pageSize;
}
public void setTotalCount(Long totalCount) {
this.totalCount = totalCount;
}
public Long getTotalCount( ) {
return this.totalCount;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy