| | |
| | | import com.example.jz.modle.dto.ReportParamDto; |
| | | import com.example.jz.modle.entity.Report; |
| | | 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; |
| | |
| | | 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); |
| | | } |
| | | |