
com.alipay.api.response.AnttechBlockchainDefinDataserviceCropbaseBatchqueryResponse Maven / Gradle / Ivy
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, 2023-08-21 04:01:45
*/
public class AnttechBlockchainDefinDataserviceCropbaseBatchqueryResponse extends AlipayResponse {
private static final long serialVersionUID = 8832939747872978831L;
/**
* 农作物基础信息列表
*/
@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