
com.alipay.api.domain.AlipayEbppInvoiceEnterpriseconsumeRelatedetailQueryModel Maven / Gradle / Ivy
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 合花账单关联详情查询
*
* @author auto create
* @since 1.0, 2023-04-19 16:13:29
*/
public class AlipayEbppInvoiceEnterpriseconsumeRelatedetailQueryModel extends AlipayObject {
private static final long serialVersionUID = 1514719282328211532L;
/**
* 企业ID
*/
@ApiField("account_id")
private String accountId;
/**
* 授权签约协议号
*/
@ApiField("agreement_no")
private String agreementNo;
/**
* 账单凭证ID
*/
@ApiField("voucher_id")
private String voucherId;
public String getAccountId() {
return this.accountId;
}
public void setAccountId(String accountId) {
this.accountId = accountId;
}
public String getAgreementNo() {
return this.agreementNo;
}
public void setAgreementNo(String agreementNo) {
this.agreementNo = agreementNo;
}
public String getVoucherId() {
return this.voucherId;
}
public void setVoucherId(String voucherId) {
this.voucherId = voucherId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy