com.alipay.api.response.AlipayBossFncGffundStandardvoucherBatchqueryResponse 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.StandardVoucherOpenApiVO;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.boss.fnc.gffund.standardvoucher.batchquery response.
*
* @author auto create
* @since 1.0, 2023-05-29 23:24:55
*/
public class AlipayBossFncGffundStandardvoucherBatchqueryResponse extends AlipayResponse {
private static final long serialVersionUID = 3366299413821333242L;
/**
* 当前页码
*/
@ApiField("cur_page")
private Long curPage;
/**
* 页大小
*/
@ApiField("page_size")
private Long pageSize;
/**
* 资金流水凭证list
*/
@ApiListField("standard_voucher_list")
@ApiField("standard_voucher_open_api_v_o")
private List standardVoucherList;
/**
* 服务处理是否成功
*/
@ApiField("success")
private Boolean success;
/**
* 查询到的结果总数
*/
@ApiField("total_items")
private Long totalItems;
/**
* 总页数
*/
@ApiField("total_pages")
private Long totalPages;
public void setCurPage(Long curPage) {
this.curPage = curPage;
}
public Long getCurPage( ) {
return this.curPage;
}
public void setPageSize(Long pageSize) {
this.pageSize = pageSize;
}
public Long getPageSize( ) {
return this.pageSize;
}
public void setStandardVoucherList(List standardVoucherList) {
this.standardVoucherList = standardVoucherList;
}
public List getStandardVoucherList( ) {
return this.standardVoucherList;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public Boolean getSuccess( ) {
return this.success;
}
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