songhuangfeng123
2022-07-28 306d231e1906f60e7ecf3d25aac45dee802a61e2
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
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.AccidentWorkApproveReqDTO;
import com.gkhy.safePlatform.incidentManage.model.dto.resp.AccidentWorkApproveDetailRespDTO;
import com.gkhy.safePlatform.incidentManage.model.dto.resp.AccidentWorkApprovePageRespDTO;
import com.gkhy.safePlatform.incidentManage.query.AccidentWorkApproveQuery;
 
import java.util.List;
 
public interface AccidentWorkApproveService {
 
    SearchResultVO<List<AccidentWorkApprovePageRespDTO>> selectWorkApproveList(PageQuery<AccidentWorkApproveQuery> query);
 
    ResultVO addWorkApprove(Long valueOf, AccidentWorkApproveReqDTO AccidentWorkApproveReqDTO);
 
    ResultVO<AccidentWorkApproveDetailRespDTO> getWorkApproveById(Long id);
 
    ResultVO updateWorkApprove(Long uid, AccidentWorkApproveReqDTO AccidentWorkApproveReqDTO);
 
    ResultVO batchDeleteWorkApprove(String ids);
 
}