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

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

package com.alipay.api.domain;

import java.util.List;

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

/**
 * 企业终本案件内容
 *
 * @author auto create
 * @since 1.0, 2024-12-19 14:19:05
 */
public class EpFinalCaseDataInfo extends AlipayObject {

	private static final long serialVersionUID = 7789652116421453149L;

	/**
	 * 查询命中内容明细列表
	 */
	@ApiListField("hits")
	@ApiField("ep_final_case_info")
	private List hits;

	/**
	 * 命中记录总数
	 */
	@ApiField("total")
	private Long total;

	public List getHits() {
		return this.hits;
	}
	public void setHits(List hits) {
		this.hits = hits;
	}

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy