郑永安
2023-06-19 7a6abd05683528032687c75e80e0bd2030a3e46c
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
package com.gkhy.safePlatform.specialWork.service;
 
import com.gkhy.safePlatform.commons.co.ContextCacheUser;
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.equipment.rpc.api.model.dto.resp.SafeRfidMaterialDetailRPCRespDto;
import com.gkhy.safePlatform.specialWork.model.dto.req.WorkProcessCheckReqDTO;
import com.gkhy.safePlatform.specialWork.model.dto.req.WorkProcessDetectionReqDTO;
import com.gkhy.safePlatform.specialWork.model.dto.resp.*;
import com.gkhy.safePlatform.specialWork.model.query.WorkProcessCheckPageQuery;
import com.gkhy.safePlatform.specialWork.model.query.WorkProcessDetectionPageQuery;
import com.gkhy.safePlatform.specialWork.model.query.WorkProcessWarningPageQuery;
import com.gkhy.safePlatform.specialWork.model.query.WorkProcessWorkApplyQuery;
 
import java.util.List;
import java.util.Map;
 
public interface WorkProcessService {
 
    /**
    * @Description: 检测上报
    */
    void detectionReport(ContextCacheUser currentUser, WorkProcessDetectionReqDTO reqDTO);
 
    /**
    * @Description: 检测分页
    */
    SearchResultVO<List<WorkProcessDetectionInfoRespDTO>> listDetectionByPage(ContextCacheUser currentUser, PageQuery<WorkProcessDetectionPageQuery> pageQuery);
 
    /**
    * @Description: 检查上报
    */
    void checkReport(ContextCacheUser currentUser, WorkProcessCheckReqDTO reqDTO);
 
    /**
    * @Description: 检查分页
    */
    SearchResultVO<List<WorkProcessCheckInfoRespDTO>> listCheckByPage(ContextCacheUser currentUser, PageQuery<WorkProcessCheckPageQuery> pageQuery);
 
    /**
    * @Description: 预警分页
    */
    SearchResultVO<List<WorkProcessWarningInfoRespDTO>> listWarningByPage(ContextCacheUser currentUser, PageQuery<WorkProcessWarningPageQuery> pageQuery);
 
    /**
    * @Description: 查询可上报的作业
    */
    List<WorkApplyReportableRespDTO> listReportableWorkApply(ContextCacheUser currentUser, WorkProcessWorkApplyQuery query);
 
    ResultVO<List<ConfigurationLevelCheckRespDTO>> chekMaterialList(ContextCacheUser currentUser, String workPermitNo);
    List<WorkMaterialRecordsRespDTO> getListByRfids(List<String> rfids);
}