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

com.alipay.api.domain.NewsEntityAggregation 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, 2021-12-22 17:28:08
 */
public class NewsEntityAggregation extends AlipayObject {

	private static final long serialVersionUID = 2638599782721971839L;

	/**
	 * 企业名称聚合
	 */
	@ApiListField("cows")
	@ApiField("news_aggregation_value")
	private List cows;

	/**
	 * 机构名称聚合
	 */
	@ApiListField("ogws")
	@ApiField("news_aggregation_value")
	private List ogws;

	/**
	 * 人物名称聚合
	 */
	@ApiListField("ppws")
	@ApiField("news_aggregation_value")
	private List ppws;

	public List getCows() {
		return this.cows;
	}
	public void setCows(List cows) {
		this.cows = cows;
	}

	public List getOgws() {
		return this.ogws;
	}
	public void setOgws(List ogws) {
		this.ogws = ogws;
	}

	public List getPpws() {
		return this.ppws;
	}
	public void setPpws(List ppws) {
		this.ppws = ppws;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy