![JAR search and dependency download from the Maven repository](/logo.png)
com.alipay.api.domain.AlipayAccountCashpoolBasicQueryModel 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, 2020-07-06 11:21:12
*/
public class AlipayAccountCashpoolBasicQueryModel extends AlipayObject {
private static final long serialVersionUID = 5384339278478948166L;
/**
* 查询条件,资金池名称,不支持模糊查询
*/
@ApiField("cash_pool_name")
private String cashPoolName;
/**
* 页码
*/
@ApiField("page_num")
private Long pageNum;
/**
* 页面大小
*/
@ApiField("page_size")
private Long pageSize;
public String getCashPoolName() {
return this.cashPoolName;
}
public void setCashPoolName(String cashPoolName) {
this.cashPoolName = cashPoolName;
}
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