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
49
package com.gkhy.labRiskManage.domain.riskReport.service;
 
 
import com.gkhy.labRiskManage.api.controller.riskReport.dto.repDto.RiskAssessPlanEvaluateDeleteReqBO;
import com.gkhy.labRiskManage.domain.riskReport.entity.RiskAssessPlanEvaluateMes;
import com.gkhy.labRiskManage.domain.riskReport.model.bo.AssessMesInsertBO;
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.MesInsertDTO;
import com.gkhy.labRiskManage.domain.riskReport.model.dto.MesQueryDTO;
 
import java.util.List;
 
/**
 * 评价方法MES
 */
public interface RiskAssessPlanEvaluateMesService {
 
    /**
     * 评价方法MES - 插入
     */
    MesInsertDTO InsertMes(Long currentUserId, AssessMesInsertBO mesInsertBO);
    /**
     * 评价方法MES - 修改
     */
    MesInsertDTO updateMes(Long currentUserId, AssessMesInsertBO mesInsertBO);
    /**
     * 评价方法MES - 查询
     */
    MesQueryDTO getMesByPlanId(Long id);
    /**
     * 评价方法MES - 删除
     */
    EvaluateMethodDeleteDTO deleteMesByPlanId(Long currentUserId, RiskAssessPlanEvaluateDeleteReqBO deleteReqBO);
    /**
     * 评价方法MES - list
     */
    List<MesQueryDTO> listMesByPlanId(Long id);
 
    List<RiskAssessPlanEvaluateMes> getMesByIds(List<Long> assessPlanIds);
 
    int deleteMesByAssessPlanId(Long id);
 
    int deleteMesByPlan(Long id);
 
    RiskAssessPlanEvaluateMes getMesByIdentificationId(Long id, Byte identificationMethod);
 
    List<RiskAssessPlanEvaluateMes> listMesByParam(Long assessPlanId,Long identificationId, Byte identificationMethod);
}