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
40
package com.gkhy.labRiskManage.domain.riskReport.service;
 
import com.gkhy.labRiskManage.domain.riskReport.entity.RiskAssessPlanIdentificationPha;
import com.gkhy.labRiskManage.domain.riskReport.model.dto.IdentificationMethodDeleteDTO;
import com.gkhy.labRiskManage.domain.riskReport.model.dto.PhaInsertDTO;
import com.gkhy.labRiskManage.domain.riskReport.model.dto.PhaQueryDTO;
 
import java.util.List;
 
/**
 * 辨识方法-Pha
 */
public interface RiskAssessPlanIdentificationPhaService {
 
    /**
     * 辨识方法-Pha  - 插入
     */
    PhaInsertDTO insertPha(Long currentUserId, RiskAssessPlanIdentificationPha pha);
    /**
     * 辨识方法-Pha  - 修改
     */
    PhaInsertDTO updatePha(Long currentUserId, RiskAssessPlanIdentificationPha pha);
    /**
     * 辨识方法-Pha  - 查询
     */
    PhaQueryDTO getPhaByPlanId(Long id);
    /**
     * 辨识方法-Pha  - 删除
     */
    IdentificationMethodDeleteDTO deletePhaByPlanId(Long currentUserId, Long id);
    /**
     * 辨识方法-Pha  - 查询 - 不校验结果
     */
    RiskAssessPlanIdentificationPha checkPhaByPlanId(Long identificationId);
    /**
     * 辨识方法-Pha  - list
     */
    List<PhaQueryDTO> listPhaByPlanId(Long id);
 
}