heheng
2024-11-07 37b0d2560607d1e0bfd5247a59a154704cac60f8
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
50
51
package com.gkhy.labRiskManage.domain.basic.service;
 
 
import com.gkhy.labRiskManage.application.basic.dto.bo.BasicExperimentPersonAppInsertBO;
import com.gkhy.labRiskManage.application.basic.dto.bo.BasicExperimentPersonAppQueryBO;
import com.gkhy.labRiskManage.application.basic.dto.bo.BasicExperimentPersonAppUpdateBO;
import com.gkhy.labRiskManage.commons.domain.SearchResult;
import com.gkhy.labRiskManage.domain.basic.model.dto.*;
 
import java.util.List;
 
/**
 * 基础实验人员管理
 */
public interface BasicExperimentPersonService {
 
    /**
     * 基础实验人员 - 插入
     * */
    PersonInsertDTO insertBasicExperimentPerson(Long currentUserId, BasicExperimentPersonAppInsertBO personAppInsertDO);
    /**
     * 基础实验人员 - 分页查询
     * */
    SearchResult<PersonQueryDTO> getBasicExperimentPersonPage(Long currentUserId, BasicExperimentPersonAppQueryBO queryParam);
    /**
     * 基础实验人员 - 修改
     * */
    PersonUpdateDTO updateBasicExperimentPerson(Long currentUserId, BasicExperimentPersonAppUpdateBO updateParam);
    /**
     * 基础实验人员 - 删除
     * */
    PersonDeleteDTO deleteBasicExperimentPerson(Long currentUserId, Long id);
    /**
     * 基础实验人员 - 列表
     * */
    List<PersonListDTO> listBasicExperimentPerson(Long currentUserId);
    /**
     * 基础实验人员 - 查询 by id
     * */
    PersonQueryDTO getBasicExperimentPersonById(Long id);
    /**
     * 基础实验人员 - 通过id列表查询
     * */
    List<PersonQueryDTO> getBasicExperimentPersonByIdList(List<Long> ids);
 
 
    /**
     * 基础实验人员 - 查询 by id --评估计划使用
     * */
    PersonQueryDTO getPersonByIdAndSellInfo(Long id, String Info);
}