| | |
| | | import com.example.jz.modle.PageParam; |
| | | import com.example.jz.modle.dto.AddReportDto; |
| | | import com.example.jz.modle.dto.CauseDto; |
| | | import com.example.jz.modle.entity.Announcement; |
| | | import com.example.jz.modle.entity.Cause; |
| | | import com.example.jz.modle.vo.AnnouncementVo; |
| | | import com.example.jz.modle.vo.CauseReportVo; |
| | | import com.example.jz.modle.vo.CauseVo; |
| | | import com.example.jz.modle.vo.UserVo; |
| | | import com.example.jz.modle.vo.*; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * 案件表(Cause)表服务接口 |
| | |
| | | * @Param [causeId] |
| | | * @return java.util.List<com.example.jz.modle.vo.CauseReportVo> |
| | | **/ |
| | | List<CauseReportVo> getReporterList(Integer causeId); |
| | | PageParam<CauseReportVo> getReporterList(Integer causeId); |
| | | |
| | | /** |
| | | * @Description 案件群公告 |
| | | * @Param [groupId] |
| | | * @return java.util.List<com.example.jz.modle.vo.AnnouncementVo> |
| | | **/ |
| | | List<AnnouncementVo> getGroupAnnouncement(Integer groupId); |
| | | List<Announcement> getGroupAnnouncement(Integer groupId); |
| | | |
| | | /** |
| | | * @Description 删除案件 |
| | |
| | | **/ |
| | | void deleteCause(Integer id); |
| | | |
| | | /** |
| | | * @Description 文件导入 |
| | | * @Param [multipartFile] |
| | | * @return void |
| | | **/ |
| | | void loadFile(MultipartFile multipartFile); |
| | | |
| | | Boolean addReportPeople(AddReportDto addReportDto); |
| | | |
| | | List<Map<String,String>> getCauseIdAndName(); |
| | | |
| | | void loadFileReport(MultipartFile multipartFile,Integer causeId); |
| | | |
| | | PageParam<CauseVo> getCauserListByCondition(String cause, Integer status, Integer size, Integer current, Integer id); |
| | | |
| | | |
| | | List<NewCauseVo> getVxCauseList(String phone); |
| | | |
| | | |
| | | } |
| | | |