| | |
| | | import com.example.jz.modle.dto.AddReportDto; |
| | | import com.example.jz.modle.dto.ReportParamDto; |
| | | import com.example.jz.modle.entity.Report; |
| | | import com.example.jz.modle.vo.NewCauseVo; |
| | | import com.example.jz.modle.vo.ReportListVo; |
| | | import com.example.jz.modle.vo.ReportVXVO; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.io.Serializable; |
| | |
| | | |
| | | void leaveGroup(Integer id, Integer groupId); |
| | | |
| | | void exportReporter(Integer id, HttpServletResponse response); |
| | | // void exportReporter(Integer id, HttpServletResponse response); |
| | | |
| | | Page<ReportListVo> getPage(Page<ReportListVo> page, ReportParamDto reportParamDto); |
| | | |
| | |
| | | Boolean addReport(AddReportDto addReportDto); |
| | | |
| | | List<Report> listGroup(Integer id); |
| | | |
| | | void loadFileReport(MultipartFile multipartFile, Integer causeId); |
| | | |
| | | Boolean reject(Integer id, String reason); |
| | | |
| | | ReportVXVO getRejectReportById(Integer id); |
| | | |
| | | NewCauseVo rejectCauseList(Integer id); |
| | | } |
| | | |