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

com.alipay.api.response.ZhimaCreditEpInfoSearchQueryResponse 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.EpSearchBasicInfo;

import com.alipay.api.AlipayResponse;

/**
 * ALIPAY API: zhima.credit.ep.info.search.query response.
 * 
 * @author auto create
 * @since 1.0, 2024-11-05 10:32:22
 */
public class ZhimaCreditEpInfoSearchQueryResponse extends AlipayResponse {

	private static final long serialVersionUID = 7776678478647438698L;

	/** 
	 * 模糊搜索命中的企业列表
	 */
	@ApiListField("basic_info_models")
	@ApiField("ep_search_basic_info")
	private List basicInfoModels;

	/** 
	 * 分页中是否有下一页
	 */
	@ApiField("has_next")
	private Boolean hasNext;

	/** 
	 * 分页用参数,代表请求结果的起始位置,默认1
	 */
	@ApiField("page_index")
	private Long pageIndex;

	/** 
	 * 分页用参数代表请求结果的总页面数
	 */
	@ApiField("page_total")
	private Long pageTotal;

	/** 
	 * 命中的企业总数,如果没有则是0
	 */
	@ApiField("total")
	private Long total;

	public void setBasicInfoModels(List basicInfoModels) {
		this.basicInfoModels = basicInfoModels;
	}
	public List getBasicInfoModels( ) {
		return this.basicInfoModels;
	}

	public void setHasNext(Boolean hasNext) {
		this.hasNext = hasNext;
	}
	public Boolean getHasNext( ) {
		return this.hasNext;
	}

	public void setPageIndex(Long pageIndex) {
		this.pageIndex = pageIndex;
	}
	public Long getPageIndex( ) {
		return this.pageIndex;
	}

	public void setPageTotal(Long pageTotal) {
		this.pageTotal = pageTotal;
	}
	public Long getPageTotal( ) {
		return this.pageTotal;
	}

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy