郑永安
2023-06-19 9d488beac4ff8bdb47f90e2ddd5fd9d907371797
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
package com.gkhy.labRiskManage.domain.riskReport.service;
 
import com.gkhy.labRiskManage.api.controller.riskReport.dto.repDto.RiskAssessPlanEvaluateDeleteReqBO;
import com.gkhy.labRiskManage.domain.riskReport.entity.RiskAssessPlanEvaluateRs;
import com.gkhy.labRiskManage.domain.riskReport.model.bo.AssessRsInsertBO;
import com.gkhy.labRiskManage.domain.riskReport.model.dto.EvaluateInsertDTO;
import com.gkhy.labRiskManage.domain.riskReport.model.dto.EvaluateMethodDeleteDTO;
import com.gkhy.labRiskManage.domain.riskReport.model.dto.RsInsertDTO;
import com.gkhy.labRiskManage.domain.riskReport.model.dto.RsQueryDTO;
 
import java.util.List;
 
/**
 * 评价方法RS
 */
public interface RiskAssessPlanEvaluateRsService {
 
 
    /**
     * 评价方法RS - 插入
     */
    RsInsertDTO InsertRs(Long currentUserId, AssessRsInsertBO rsInsertBO);
    /**
     * 评价方法RS - 修改
     */
    RsInsertDTO updateRs(Long currentUserId, AssessRsInsertBO rsInsertBO);
    /**
     * 评价方法RS - 查询
     */
    RsQueryDTO getRsByPlanId(Long id);
    /**
     * 评价方法RS - 删除
     */
    EvaluateMethodDeleteDTO deleteRsByPlanId(Long currentUserId, RiskAssessPlanEvaluateDeleteReqBO deleteReqBO);
    /**
     * 评价方法RS - list
     */
    List<RsQueryDTO> listRsByPlanId(Long id);
 
    List<RiskAssessPlanEvaluateRs> getRsByIds(List<Long> assessPlanIds);
 
    int deleteRsByAssessPlanId(Long id);
 
    int deleteRsByPlan(Long id);
 
    RiskAssessPlanEvaluateRs getRsByIdentificationId(Long id, Byte identificationMethod);
}