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

com.alipay.api.response.AnttechBlockchainDefinDataserviceCropbaseBatchqueryResponse 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.CropsComplexInfo;

import com.alipay.api.AlipayResponse;

/**
 * ALIPAY API: anttech.blockchain.defin.dataservice.cropbase.batchquery response.
 * 
 * @author auto create
 * @since 1.0, 2024-03-01 16:27:57
 */
public class AnttechBlockchainDefinDataserviceCropbaseBatchqueryResponse extends AlipayResponse {

	private static final long serialVersionUID = 8699684565122341227L;

	/** 
	 * 农作物基础信息列表
	 */
	@ApiListField("data_list")
	@ApiField("crops_complex_info")
	private List dataList;

	/** 
	 * 页码,默认0
	 */
	@ApiField("page_no")
	private Long pageNo;

	/** 
	 * 页大小
	 */
	@ApiField("page_size")
	private Long pageSize;

	/** 
	 * 总量
	 */
	@ApiField("total")
	private Long total;

	public void setDataList(List dataList) {
		this.dataList = dataList;
	}
	public List getDataList( ) {
		return this.dataList;
	}

	public void setPageNo(Long pageNo) {
		this.pageNo = pageNo;
	}
	public Long getPageNo( ) {
		return this.pageNo;
	}

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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy