com.alipay.api.domain.AlipayCommerceEcVoucherSummaryQueryModel 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, 2024-03-04 13:35:59
*/
public class AlipayCommerceEcVoucherSummaryQueryModel extends AlipayObject {
private static final long serialVersionUID = 7584843993148113247L;
/**
* 共同账户ID
*/
@ApiField("account_id")
private String accountId;
/**
* 授权签约协议号
*/
@ApiField("agreement_no")
private String agreementNo;
/**
* 企业ID
*/
@ApiField("enterprise_id")
private String enterpriseId;
/**
* 汇总批次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 getEnterpriseId() {
return this.enterpriseId;
}
public void setEnterpriseId(String enterpriseId) {
this.enterpriseId = enterpriseId;
}
public String getSummaryId() {
return this.summaryId;
}
public void setSummaryId(String summaryId) {
this.summaryId = summaryId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy