From 9c6150c879432b21816618a256c166dc3801b1a2 Mon Sep 17 00:00:00 2001 From: wl <173@qq.com> Date: 星期二, 19 七月 2022 14:11:44 +0800 Subject: [PATCH] 群公告 导入导出 --- src/main/java/com/example/jz/service/ReportService.java | 17 +++++++++++++++++ 1 files changed, 17 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/example/jz/service/ReportService.java b/src/main/java/com/example/jz/service/ReportService.java index 5f21172..33e0b6f 100644 --- a/src/main/java/com/example/jz/service/ReportService.java +++ b/src/main/java/com/example/jz/service/ReportService.java @@ -1,7 +1,13 @@ package com.example.jz.service; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.baomidou.mybatisplus.extension.service.IService; +import com.example.jz.modle.dto.ReportParamDto; import com.example.jz.modle.entity.Report; +import com.example.jz.modle.vo.ReportListVo; + +import javax.servlet.http.HttpServletResponse; +import java.io.Serializable; /** * 鎶ユ琛�(Report)琛ㄦ湇鍔℃帴鍙� @@ -11,5 +17,16 @@ */ public interface ReportService extends IService<Report> { + Boolean audit(Report report); + + void leaveGroup(Integer id, Integer groupId); + + void exportReporter(Integer id, HttpServletResponse response); + + Page<ReportListVo> getPage(Page<ReportListVo> page, ReportParamDto reportParamDto); + + ReportListVo getReportListVoById(Serializable id); + + Page<ReportListVo> getPageByGroupId(Page<ReportListVo> page, ReportParamDto reportParamDto, Integer groupId); } -- Gitblit v1.8.0