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.screen.mapper;
|
|
|
|
|
|
|
|
import com.ruoyi.screen.domain.response.ZongzhiActionResponse;
|
|
|
|
import com.ruoyi.screen.domain.response.ZongzhiNetworkReportResponse;
|
|
|
|
import com.ruoyi.screen.domain.response.ZongzhiWorkDynamicsResponse;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 太仓综治网络管理数据层
|
|
|
|
*/
|
|
|
|
public interface ZongzhiScreenManageMapper {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 工作动态
|
|
|
|
*/
|
|
|
|
public List<ZongzhiWorkDynamicsResponse> getWorkDynamics();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 举报总数和处置率
|
|
|
|
*/
|
|
|
|
public ZongzhiNetworkReportResponse getNetworkReport();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 请朗专项行动数据统计
|
|
|
|
*/
|
|
|
|
public List<ZongzhiActionResponse> getaction();
|
|
|
|
|
|
|
|
}
|