16639036659
2023-08-28 7a9a4f4764b0a402e3d0b4a1dafc7ecf96cb1583
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
package com.gkhy.labRiskManage.domain.riskReport.service;
 
import com.gkhy.labRiskManage.domain.riskReport.entity.RiskAssessPlanIdentificationJha;
import com.gkhy.labRiskManage.domain.riskReport.model.dto.IdentificationMethodDeleteDTO;
import com.gkhy.labRiskManage.domain.riskReport.model.dto.JhaInsertDTO;
import com.gkhy.labRiskManage.domain.riskReport.model.dto.JhaQueryDTO;
 
import java.util.List;
 
/**
 * 辨识方法-Jha
 */
public interface RiskAssessPlanIdentificationJhaService {
 
    /**
     * 辨识方法-Jha -- 插入
     */
    JhaInsertDTO insertJha(Long currentUserId, RiskAssessPlanIdentificationJha jha);
    /**
     * 辨识方法-Jha -- 修改
     */
    JhaInsertDTO updateJha(Long currentUserId, RiskAssessPlanIdentificationJha jha);
    /**
     * 辨识方法-Jha -- 查询
     */
    JhaQueryDTO getJhaByPlanId(Long id);
    /**
     * 辨识方法-Jha -- 删除
     */
    IdentificationMethodDeleteDTO deleteJhaByPlanId(Long currentUserId, Long id);
    /**
     * 辨识方法-Jha -- 查询 --不校验结果
     */
    RiskAssessPlanIdentificationJha checkJhaByPlanId(Long identificationId);
    /**
     * 辨识方法-Jha -- list
     */
    List<JhaQueryDTO> listJhaByPlanId(Long id);
}