com.alipay.api.response.AntMerchantExpandZftChargerelationBatchqueryResponse 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.ChargeRelationInfo;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: ant.merchant.expand.zft.chargerelation.batchquery response.
*
* @author auto create
* @since 1.0, 2024-07-04 19:33:17
*/
public class AntMerchantExpandZftChargerelationBatchqueryResponse extends AlipayResponse {
private static final long serialVersionUID = 4424746376514677639L;
/**
* 记账关系信息数据
*/
@ApiListField("charge_relation_infos")
@ApiField("charge_relation_info")
private List chargeRelationInfos;
/**
* 页码
*/
@ApiField("page_num")
private Long pageNum;
/**
* 每页记录数,默认page_size=10
*/
@ApiField("page_size")
private Long pageSize;
/**
* 总页数
*/
@ApiField("total_pages")
private Long totalPages;
/**
* 总记录数
*/
@ApiField("total_size")
private Long totalSize;
public void setChargeRelationInfos(List chargeRelationInfos) {
this.chargeRelationInfos = chargeRelationInfos;
}
public List getChargeRelationInfos( ) {
return this.chargeRelationInfos;
}
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 setTotalPages(Long totalPages) {
this.totalPages = totalPages;
}
public Long getTotalPages( ) {
return this.totalPages;
}
public void setTotalSize(Long totalSize) {
this.totalSize = totalSize;
}
public Long getTotalSize( ) {
return this.totalSize;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy