
com.alipay.api.response.AlipayEcoCplifeBillBatchqueryResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
baidu push client api with maven
The newest version!
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.CPBillResultSet;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.eco.cplife.bill.batchquery response.
*
* @author auto create
* @since 1.0, 2017-02-10 18:52:46
*/
public class AlipayEcoCplifeBillBatchqueryResponse extends AlipayResponse {
private static final long serialVersionUID = 4897163365735332784L;
/**
* 若查询到符合条件的账单条目,返回结果集
*/
@ApiListField("bill_result_set")
@ApiField("c_p_bill_result_set")
private List billResultSet;
/**
* 当前页码
*/
@ApiField("current_page_num")
private Long currentPageNum;
/**
* 符合条件的总结果数
*/
@ApiField("total_bill_count")
private Long totalBillCount;
public void setBillResultSet(List billResultSet) {
this.billResultSet = billResultSet;
}
public List getBillResultSet( ) {
return this.billResultSet;
}
public void setCurrentPageNum(Long currentPageNum) {
this.currentPageNum = currentPageNum;
}
public Long getCurrentPageNum( ) {
return this.currentPageNum;
}
public void setTotalBillCount(Long totalBillCount) {
this.totalBillCount = totalBillCount;
}
public Long getTotalBillCount( ) {
return this.totalBillCount;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy