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.RiskAssessPlanIdentificationAnalogy;
import com.gkhy.labRiskManage.domain.riskReport.model.dto.AnalogyInsertDTO;
import com.gkhy.labRiskManage.domain.riskReport.model.dto.AnalogyQueryDTO;
import com.gkhy.labRiskManage.domain.riskReport.model.dto.IdentificationMethodDeleteDTO;
 
import java.util.List;
 
/**
 * 辨识方法-类比法(Analogy)
 */
public interface RiskAssessPlanIdentificationAnalogyService {
 
    /**
     * 辨识方法-类比法(Analogy) - 插入
     */
    AnalogyInsertDTO insertAnalogy(Long currentUserId, RiskAssessPlanIdentificationAnalogy analogy);
    /**
     * 辨识方法-类比法(Analogy) - 修改
     */
    AnalogyInsertDTO updateAnalogy(Long currentUserId, RiskAssessPlanIdentificationAnalogy analogy);
    /**
     * 辨识方法-类比法(Analogy) - 查询
     */
    AnalogyQueryDTO getAnalogyByPlanId(Long id);
    /**
     * 辨识方法-类比法(Analogy) - 删除
     */
    IdentificationMethodDeleteDTO deleteAnalogyByPlanId(Long currentUserId, Long id);
    /**
     * 辨识方法-类比法(Analogy) - 查询 -- 不校验结果
     */
    RiskAssessPlanIdentificationAnalogy checkAnalogyByPlanId(Long identificationId);
    /**
     * 辨识方法-类比法(Analogy) - list
     */
    List<AnalogyQueryDTO> listAnalogyByPlanId(Long id);
}