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.
taicangzongzhi-java/ruoyi-admin/src/main/java/com/ruoyi/screen/mapper/ZongzhiScreenManageMapper.java

55 lines
922 B

package com.ruoyi.screen.mapper;
import com.ruoyi.screen.domain.response.*;
import java.util.List;
/**
* 太仓综治网络管理数据层
*/
public interface ZongzhiScreenManageMapper {
/**
* 工作动态
*/
public List<ZongzhiWorkDynamicsResponse> getWorkDynamics();
/**
* 工作动态数量统计
*/
public int getWorkDynamicsCount();
/**
* 举报总数和处置率
*/
public ZongzhiNetworkReportResponse getNetworkReport();
/**
* 请朗专项行动数据统计
*/
public List<ZongzhiActionResponse> getaction();
/**
* 举报时间年度分类统计
*/
public List<ZongzhiReportByYearResponse> getReportByYear();
/**
* 清朗专项行动动态
*/
public List<ZongzhiActionDynamicstResponse> getActionDynamicst();
/**
* 地图
*/
public List<ZongzhiMapResponse> getMap();
}