com.alipay.api.domain.AnttechBlockchainFinanceTvpBillBatchqueryModel 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 java.util.Date;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 可信价值中心账单查询
*
* @author auto create
* @since 1.0, 2024-10-23 17:07:23
*/
public class AnttechBlockchainFinanceTvpBillBatchqueryModel extends AlipayObject {
private static final long serialVersionUID = 6485414646428936474L;
/**
* 分页查询,页码。默认 1
*/
@ApiField("page_index")
private Long pageIndex;
/**
* 分页大小,默认500
*/
@ApiField("page_size")
private Long pageSize;
/**
* 收款方
*/
@ApiField("payee_entity")
private TrustEntityInfo payeeEntity;
/**
* 付款方
*/
@ApiField("payer_entity")
private TrustEntityInfo payerEntity;
/**
* 可信价值中心产品码
*/
@ApiField("product_code")
private String productCode;
/**
* 查询日期
*/
@ApiField("query_date")
private Date queryDate;
public Long getPageIndex() {
return this.pageIndex;
}
public void setPageIndex(Long pageIndex) {
this.pageIndex = pageIndex;
}
public Long getPageSize() {
return this.pageSize;
}
public void setPageSize(Long pageSize) {
this.pageSize = pageSize;
}
public TrustEntityInfo getPayeeEntity() {
return this.payeeEntity;
}
public void setPayeeEntity(TrustEntityInfo payeeEntity) {
this.payeeEntity = payeeEntity;
}
public TrustEntityInfo getPayerEntity() {
return this.payerEntity;
}
public void setPayerEntity(TrustEntityInfo payerEntity) {
this.payerEntity = payerEntity;
}
public String getProductCode() {
return this.productCode;
}
public void setProductCode(String productCode) {
this.productCode = productCode;
}
public Date getQueryDate() {
return this.queryDate;
}
public void setQueryDate(Date queryDate) {
this.queryDate = queryDate;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy