com.alipay.api.domain.AlipayEbppInvoiceEnterpriseconsumeSummaryinvoicedetailQueryModel 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.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 汇总发票详情查询接口
*
* @author auto create
* @since 1.0, 2023-04-19 16:15:09
*/
public class AlipayEbppInvoiceEnterpriseconsumeSummaryinvoicedetailQueryModel extends AlipayObject {
private static final long serialVersionUID = 8525217558223474412L;
/**
* 企业 ID
*/
@ApiField("account_id")
private String accountId;
/**
* 授权签约协议号
*/
@ApiField("agreement_no")
private String agreementNo;
/**
* 开票批次 ID
*/
@ApiField("summary_id")
private String summaryId;
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 getSummaryId() {
return this.summaryId;
}
public void setSummaryId(String summaryId) {
this.summaryId = summaryId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy