cn.com.antcloud.api.riskplus.v1_0.model.RtopCompanyOpinionDetail Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of antcloud-api-riskplus Show documentation
Show all versions of antcloud-api-riskplus Show documentation
Ant Chain API SDK For Java
Copyright (c) 2020-present antgroup.com, https://www.antgroup.com
//
// Copyright (c) 2020-present antgroup.com, https://www.antgroup.com
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
//
package cn.com.antcloud.api.riskplus.v1_0.model;
import java.lang.Long;
import java.lang.String;
import java.util.Date;
import javax.validation.constraints.NotNull;
/**
* 舆情的详情 */
public class RtopCompanyOpinionDetail {
@NotNull
private String docContent;
@NotNull
private String docId;
@NotNull
private String docTitle;
@NotNull
private String docUrl;
private String emotionScore;
private String entityRelevancyScore;
private String hitKeywords;
private String mediaInfluenceScore;
@NotNull
private String mediaName;
private String mediaPropagationScore;
@NotNull
private Date publishTime;
private Long similarDocs;
/**
* 具体的舆情内容 */
public String getDocContent() {
return this.docContent;
}
/**
* 具体的舆情内容 */
public void setDocContent(String docContent) {
this.docContent = docContent;
}
/**
* 舆情的id */
public String getDocId() {
return this.docId;
}
/**
* 舆情的id */
public void setDocId(String docId) {
this.docId = docId;
}
/**
* 舆情的标题 */
public String getDocTitle() {
return this.docTitle;
}
/**
* 舆情的标题 */
public void setDocTitle(String docTitle) {
this.docTitle = docTitle;
}
/**
* 舆情的url */
public String getDocUrl() {
return this.docUrl;
}
/**
* 舆情的url */
public void setDocUrl(String docUrl) {
this.docUrl = docUrl;
}
/**
* 情感得分 */
public String getEmotionScore() {
return this.emotionScore;
}
/**
* 情感得分 */
public void setEmotionScore(String emotionScore) {
this.emotionScore = emotionScore;
}
/**
* 实体相关度得分 */
public String getEntityRelevancyScore() {
return this.entityRelevancyScore;
}
/**
* 实体相关度得分 */
public void setEntityRelevancyScore(String entityRelevancyScore) {
this.entityRelevancyScore = entityRelevancyScore;
}
/**
* 命中的关键词 */
public String getHitKeywords() {
return this.hitKeywords;
}
/**
* 命中的关键词 */
public void setHitKeywords(String hitKeywords) {
this.hitKeywords = hitKeywords;
}
/**
* 媒体影响力得分 */
public String getMediaInfluenceScore() {
return this.mediaInfluenceScore;
}
/**
* 媒体影响力得分 */
public void setMediaInfluenceScore(String mediaInfluenceScore) {
this.mediaInfluenceScore = mediaInfluenceScore;
}
/**
* 来源媒体 */
public String getMediaName() {
return this.mediaName;
}
/**
* 来源媒体 */
public void setMediaName(String mediaName) {
this.mediaName = mediaName;
}
/**
* 媒体传播得分 */
public String getMediaPropagationScore() {
return this.mediaPropagationScore;
}
/**
* 媒体传播得分 */
public void setMediaPropagationScore(String mediaPropagationScore) {
this.mediaPropagationScore = mediaPropagationScore;
}
/**
* 舆情的发布时间 */
public Date getPublishTime() {
return this.publishTime;
}
/**
* 舆情的发布时间 */
public void setPublishTime(Date publishTime) {
this.publishTime = publishTime;
}
/**
* 相似文章数 */
public Long getSimilarDocs() {
return this.similarDocs;
}
/**
* 相似文章数 */
public void setSimilarDocs(Long similarDocs) {
this.similarDocs = similarDocs;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy