
com.alipay.api.response.MybankCreditLoantradePayeeReceivableBatchqueryResponse Maven / Gradle / Ivy
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.CreditPayReceivableVO;
import com.alipay.api.domain.CreditPayMoneyVO;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: mybank.credit.loantrade.payee.receivable.batchquery response.
*
* @author auto create
* @since 1.0, 2023-05-31 10:01:53
*/
public class MybankCreditLoantradePayeeReceivableBatchqueryResponse extends AlipayResponse {
private static final long serialVersionUID = 5159118986522575196L;
/**
* 应收列表
*/
@ApiListField("receivable_list")
@ApiField("credit_pay_receivable_v_o")
private List receivableList;
/**
* 总计应收金额
*/
@ApiField("total_rcv_amt")
private CreditPayMoneyVO totalRcvAmt;
public void setReceivableList(List receivableList) {
this.receivableList = receivableList;
}
public List getReceivableList( ) {
return this.receivableList;
}
public void setTotalRcvAmt(CreditPayMoneyVO totalRcvAmt) {
this.totalRcvAmt = totalRcvAmt;
}
public CreditPayMoneyVO getTotalRcvAmt( ) {
return this.totalRcvAmt;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy