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

com.alipay.api.response.AlipayIserviceMindvAnswersBatchqueryResponse 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.40.21.ALL
Show newest version
package com.alipay.api.response;

import java.util.List;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
import com.alipay.api.domain.UserSubmitModel;

import com.alipay.api.AlipayResponse;

/**
 * ALIPAY API: alipay.iservice.mindv.answers.batchquery response.
 * 
 * @author auto create
 * @since 1.0, 2024-07-04 17:31:59
 */
public class AlipayIserviceMindvAnswersBatchqueryResponse extends AlipayResponse {

	private static final long serialVersionUID = 4394297723266525843L;

	/** 
	 * 当前分页码_和入参保持一致
	 */
	@ApiField("current_page_num")
	private Long currentPageNum;

	/** 
	 * 用户提交结果数据
	 */
	@ApiListField("page_data")
	@ApiField("user_submit_model")
	private List pageData;

	/** 
	 * 每页数量限制_和入参保持一致
	 */
	@ApiField("per_page_size")
	private Long perPageSize;

	/** 
	 * 总的数据数量_提供给业务方自行判断是否继续查询后续数据
	 */
	@ApiField("total_num")
	private Long totalNum;

	public void setCurrentPageNum(Long currentPageNum) {
		this.currentPageNum = currentPageNum;
	}
	public Long getCurrentPageNum( ) {
		return this.currentPageNum;
	}

	public void setPageData(List pageData) {
		this.pageData = pageData;
	}
	public List getPageData( ) {
		return this.pageData;
	}

	public void setPerPageSize(Long perPageSize) {
		this.perPageSize = perPageSize;
	}
	public Long getPerPageSize( ) {
		return this.perPageSize;
	}

	public void setTotalNum(Long totalNum) {
		this.totalNum = totalNum;
	}
	public Long getTotalNum( ) {
		return this.totalNum;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy