package com.ruoyi.screen.mapper; import com.ruoyi.screen.domain.response.*; import java.util.List; /** * 太仓综治网络舆情大屏数据层 */ public interface ZongzhiScreenOpinionMapper { /** * 舆情走势图 */ public List getSentimentType(); /** * 舆情信息量统计 */ public List getSentimenCount(); /** * 舆情分类 媒体类型 */ public List getSentimenClassificationBymediaType(); /** * 舆情分类 涉事类型 */ public List getSentimenClassificationByeventType(); /** * 词云 */ public List getWordCloud(); /** * 舆情报告 */ public ZongzhiSentimentReportResponse getSentimentReport(); /** * 舆情报告分类 */ public List getSentimentReportbyReportType(); }