com.alipay.api.domain.AlipayOpenMiniTipsDeliveryBatchqueryModel 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;
/**
* 小程序收藏tips引导投放批量查询
*
* @author auto create
* @since 1.0, 2023-06-28 10:17:53
*/
public class AlipayOpenMiniTipsDeliveryBatchqueryModel extends AlipayObject {
private static final long serialVersionUID = 1679761981274487613L;
/**
* 每页记录条数,最小1,最大20
*/
@ApiField("page_number")
private String pageNumber;
/**
* 查询的页数,从1开始,最大1000
*/
@ApiField("page_size")
private String pageSize;
public String getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(String pageNumber) {
this.pageNumber = pageNumber;
}
public String getPageSize() {
return this.pageSize;
}
public void setPageSize(String pageSize) {
this.pageSize = pageSize;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy