com.alipay.api.domain.AlipayEbppInvoiceInstitutionPageinfoQueryModel 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, 2024-11-20 11:37:53
*/
public class AlipayEbppInvoiceInstitutionPageinfoQueryModel extends AlipayObject {
private static final long serialVersionUID = 1151942539286916154L;
/**
* 企业共同账户id(该字段将废弃,不建议使用,可用enterprise_id字段替换) 当前字段已废弃(该字段将废弃,不建议使用,可用enterprise_id字段替换)
*/
@ApiField("account_id")
@Deprecated
private String accountId;
/**
* 授权签约协议号(该字段将废弃,不建议使用,可用enterprise_id字段替换) 当前字段已废弃(该字段将废弃,不建议使用,可用enterprise_id字段替换)
*/
@ApiField("agreement_no")
@Deprecated
private String agreementNo;
/**
* 企业ID
*/
@ApiField("enterprise_id")
private String enterpriseId;
/**
* 页码
*/
@ApiField("page_num")
private Long pageNum;
/**
* 页大小
*/
@ApiField("page_size")
private Long pageSize;
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 Long getPageNum() {
return this.pageNum;
}
public void setPageNum(Long pageNum) {
this.pageNum = pageNum;
}
public Long getPageSize() {
return this.pageSize;
}
public void setPageSize(Long pageSize) {
this.pageSize = pageSize;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy