heheng
2025-05-23 761bdc5b3f17df62aae1b424f2d2dabc11e844bc
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
package com.gkhy.labRiskManage.domain.riskReport.service;
 
import com.gkhy.labRiskManage.api.controller.riskReport.dto.repDto.RiskAssessPlanEvaluateDeleteReqBO;
import com.gkhy.labRiskManage.domain.riskReport.entity.RiskAssessPlanEvaluateLec;
import com.gkhy.labRiskManage.domain.riskReport.model.bo.AssessLecInsertBO;
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.LecInsertDTO;
import com.gkhy.labRiskManage.domain.riskReport.model.dto.LecQueryDTO;
 
import java.util.List;
 
/**
 * 评价方法LEC
 */
public interface RiskAssessPlanEvaluateLecService {
 
    /**
     * 评价方法LEC - 评价插入
     */
    LecInsertDTO insertLec(Long currentUserId, AssessLecInsertBO lecInsertBO);
    /**
     * 评价方法LEC - 修改
     */
    LecInsertDTO updateLec(Long currentUserId, AssessLecInsertBO lecInsertBO);
    /**
     * 评价方法LEC - 查询
     */
    LecQueryDTO getLecByPlanId(Long id);
    /**
     * 评价方法LEC - 删除
     */
    EvaluateMethodDeleteDTO deleteLecByPlanId(Long currentUserId,  RiskAssessPlanEvaluateDeleteReqBO deleteReqBO);
    /**
     * 评价方法LEC - list
     */
    List<LecQueryDTO> listLecByPlanId(Long id);
 
    List<RiskAssessPlanEvaluateLec> getLecByIds(List<Long> assessPlanIds);
 
    int deleteLecByAssessPlanId(Long id);
 
    int deleteLecByPlan(Long id);
 
    RiskAssessPlanEvaluateLec getLecByIdentificationId(Long identificationId , Byte identificationMethod);
 
    List<RiskAssessPlanEvaluateLec> listLecByParam(Long id,Long identificationId,  Byte identificationMethod);
}