You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package com.ruoyi.tcZz.service;
|
|
|
|
|
|
|
|
import com.ruoyi.tcZz.domain.reponse.ScreenOpinionReportResponse;
|
|
|
|
import com.ruoyi.tcZz.domain.reponse.ScreenSourceResponse;
|
|
|
|
import com.ruoyi.tcZz.domain.reponse.ScreenSupervisionResponse;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 大屏接口服务层
|
|
|
|
*/
|
|
|
|
public interface ScreenService {
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 大屏监管对象
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
|
|
|
|
ScreenSupervisionResponse getScreenSupervision();
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 大屏数据来源
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
|
|
|
|
ScreenSourceResponse getScreenSource();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 大屏舆情报告
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
|
|
|
|
ScreenOpinionReportResponse getScreenOpinionReport();
|
|
|
|
}
|