All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alipay.api.domain.PageInfo Maven / Gradle / Ivy

Go to download

Alipay openapi SDK for Java Copyright © 2018 杭州蚂蚁金服 All rights reserved. 版权所有 (C)杭州蚂蚁金服 http://open.alipay.com

There is a newer version: 4.39.218.ALL
Show newest version
package com.alipay.api.domain;

import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;

/**
 * 创意查询分页信息
 *
 * @author auto create
 * @since 1.0, 2019-07-23 15:46:15
 */
public class PageInfo extends AlipayObject {

	private static final long serialVersionUID = 7897426967371525979L;

	/**
	 * 分页查询当前页
	 */
	@ApiField("current")
	private Long current;

	/**
	 * 分页查询单页记录数
	 */
	@ApiField("page_size")
	private Long pageSize;

	/**
	 * 创意总数
	 */
	@ApiField("total")
	private Long total;

	public Long getCurrent() {
		return this.current;
	}
	public void setCurrent(Long current) {
		this.current = current;
	}

	public Long getPageSize() {
		return this.pageSize;
	}
	public void setPageSize(Long pageSize) {
		this.pageSize = pageSize;
	}

	public Long getTotal() {
		return this.total;
	}
	public void setTotal(Long total) {
		this.total = total;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy