songhuangfeng123
2022-08-09 1bdd6405e8caffc058066bdd26cb6de1ea9cf7ea
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
package com.gkhy.safePlatform.incidentManage.service;
 
import com.gkhy.safePlatform.commons.query.PageQuery;
import com.gkhy.safePlatform.commons.vo.ResultVO;
import com.gkhy.safePlatform.commons.vo.SearchResultVO;
import com.gkhy.safePlatform.incidentManage.model.dto.req.AccidentReportReqDTO;
import com.gkhy.safePlatform.incidentManage.model.dto.resp.AccidentReportCountRespDTO;
import com.gkhy.safePlatform.incidentManage.model.dto.resp.AccidentReportDetailRespDTO;
import com.gkhy.safePlatform.incidentManage.model.dto.resp.AccidentReportPageRespDTO;
import com.gkhy.safePlatform.incidentManage.query.AccidentReportQuery;
import com.gkhy.safePlatform.incidentManage.query.AccidentReportRPCQuery;
 
import java.util.List;
 
public interface AccidentReportService {
 
    SearchResultVO<List<AccidentReportPageRespDTO>> selectAccidentReportList(PageQuery<AccidentReportQuery> query);
 
    ResultVO addAccidentReport(Long valueOf, AccidentReportReqDTO AccidentReportReqDTO);
 
    ResultVO<AccidentReportDetailRespDTO> getAccidentReportById(Long id);
 
    ResultVO updateAccidentReport(Long uid, AccidentReportReqDTO AccidentReportReqDTO);
 
    ResultVO batchDeleteAccidentReport(Long[] ids);
 
    ResultVO<List<AccidentReportCountRespDTO>> countAccidentReport(AccidentReportRPCQuery query);
}