com.alipay.api.response.AlipayAssetPointAccountlogQueryResponse 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.PointAccountLog;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.asset.point.accountlog.query response.
*
* @author auto create
* @since 1.0, 2024-07-04 16:54:58
*/
public class AlipayAssetPointAccountlogQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 2538239432779988685L;
/**
* 当前页数
*/
@ApiField("current_page")
private Long currentPage;
/**
* 单页大小
*/
@ApiField("page_size")
private Long pageSize;
/**
* 集分宝账户流水详情列表
*/
@ApiListField("point_account_logs")
@ApiField("point_account_log")
private List pointAccountLogs;
/**
* 集分宝流水总条数,返回满足条件的集分宝流水的总条数。
*/
@ApiField("total_count")
private Long totalCount;
/**
* 总页数,根据totalcount和pagesize计算出来
*/
@ApiField("total_pages")
private Long totalPages;
public void setCurrentPage(Long currentPage) {
this.currentPage = currentPage;
}
public Long getCurrentPage( ) {
return this.currentPage;
}
public void setPageSize(Long pageSize) {
this.pageSize = pageSize;
}
public Long getPageSize( ) {
return this.pageSize;
}
public void setPointAccountLogs(List pointAccountLogs) {
this.pointAccountLogs = pointAccountLogs;
}
public List getPointAccountLogs( ) {
return this.pointAccountLogs;
}
public void setTotalCount(Long totalCount) {
this.totalCount = totalCount;
}
public Long getTotalCount( ) {
return this.totalCount;
}
public void setTotalPages(Long totalPages) {
this.totalPages = totalPages;
}
public Long getTotalPages( ) {
return this.totalPages;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy