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

com.alipay.api.domain.NewsEntityAggregation 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.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 = 3881349499176859471L;

	/**
	 * 企业名称聚合
	 */
	@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