heheng
2025-01-13 a27162cb82ef0cabf9b43cbfd1f3eb8c177d1e14
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.RiskAssessPlanIdentificationScl;
import com.gkhy.labRiskManage.domain.riskReport.model.dto.IdentificationMethodDeleteDTO;
import com.gkhy.labRiskManage.domain.riskReport.model.dto.SclInsertDTO;
import com.gkhy.labRiskManage.domain.riskReport.model.dto.SclQueryDTO;
 
import java.util.List;
 
/**
 * 辨识方法-Scl
 */
public interface RiskAssessPlanIdentificationSclService {
 
    /**
     * 辨识方法-Scl - 插入
     */
    SclInsertDTO insertScl(Long currentUserId, RiskAssessPlanIdentificationScl scl);
    /**
     * 辨识方法-Scl - 修改
     */
    SclInsertDTO updateScl(Long currentUserId, RiskAssessPlanIdentificationScl scl);
    /**
     * 辨识方法-Scl - 查询
     */
    SclQueryDTO getSclByPlanId(Long id);
    /**
     * 辨识方法-Scl - 删除
     */
    IdentificationMethodDeleteDTO deleteSclByPlanId(Long currentUserId, Long id);
    /**
     * 辨识方法-Scl - 查询  -- 不校验结果
     */
    RiskAssessPlanIdentificationScl checkSclByPlanId(Long identificationId);
    /**
     * 辨识方法-Scl - list
     */
    List<SclQueryDTO> listSclByPlanId(Long id);
}