青羊经侦大队-数据平台
baizonghao
2023-04-23 028bd9c7cccb1ba7569636c631fa3c83a16d3e48
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
package com.example.jz.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
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.dto.CauseReportExpDto;
import com.example.jz.modle.entity.Announcement;
import com.example.jz.modle.entity.Cause;
import com.example.jz.modle.vo.*;
import org.springframework.web.multipart.MultipartFile;
 
import java.util.List;
import java.util.Map;
 
/**
 * 案件表(Cause)表服务接口
 *
 * @author makejava
 * @since 2022-07-13 11:52:58
 */
public interface CauseService extends IService<Cause> {
 
    /**
     * @return java.lang.Integer
     * @Description 添加案件
     * @Param [causeDto]
     **/
    Integer addCause(CauseDto causeDto);
 
    /**
     * @Description  获取案件根据条件
     * @Param [cause, status]
     * @return java.util.List<com.example.jz.modle.vo.CauseVo>
     **/
    PageParam<CauseVo> getCauserListByCondition(String cause, Integer status, Integer size, Integer current);
 
    /**
     * @Description  获取所有负责人
     * @Param []
     * @return java.util.List<com.example.jz.modle.vo.UserVo>
     **/
    List<UserVo> getManagerList();
 
    /**
     * @Description 修改案件
     * @Param [causeDto, id]
     * @return java.lang.Integer
     **/
    Integer updateCause(CauseDto causeDto,Integer id);
 
    /**
     * @Description 获取报案人列表
     * @Param [causeId]
     * @return java.util.List<com.example.jz.modle.vo.CauseReportVo>
     **/
    PageParam<CauseReportVo> getReporterList(Integer causeId);
 
    List<CauseReportExpDto> getExpList(Integer causeId);
 
    /**
     * @Description 案件群公告
     * @Param [groupId]
     * @return java.util.List<com.example.jz.modle.vo.AnnouncementVo>
     **/
    List<Announcement> getGroupAnnouncement(Integer groupId);
 
    /**
     * @Description 删除案件
     * @Param [id]
     * @return void
     **/
    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);
 
 
}