com.alipay.api.response.AlipayEbppInvoiceExpensesceneMerchantQueryResponse 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.ExpenseMerchantInfo;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.ebpp.invoice.expensescene.merchant.query response.
*
* @author auto create
* @since 1.0, 2024-11-28 11:31:49
*/
public class AlipayEbppInvoiceExpensesceneMerchantQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 6428185164586186139L;
/**
* 商户信息
*/
@ApiListField("expense_merchant_info_list")
@ApiField("expense_merchant_info")
private List expenseMerchantInfoList;
/**
* 当前页数
*/
@ApiField("page_num")
private Long pageNum;
/**
* 当前记录数
*/
@ApiField("page_size")
private Long pageSize;
/**
* 总页数
*/
@ApiField("total_page_count")
private Long totalPageCount;
public void setExpenseMerchantInfoList(List expenseMerchantInfoList) {
this.expenseMerchantInfoList = expenseMerchantInfoList;
}
public List getExpenseMerchantInfoList( ) {
return this.expenseMerchantInfoList;
}
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 setTotalPageCount(Long totalPageCount) {
this.totalPageCount = totalPageCount;
}
public Long getTotalPageCount( ) {
return this.totalPageCount;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy