liusheng
2025-03-07 b0877b50c862541f9101c7e4dc05bfbf6ab60d5a
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
package com.smartor.service;
 
import java.util.List;
 
import com.ruoyi.common.core.domain.entity.SysUser;
import com.smartor.domain.PatArchiveImport;
import org.springframework.web.multipart.MultipartFile;
 
/**
 * Excel导入患者档案Service接口
 *
 * @author lihu
 * @date 2024-09-05
 */
public interface IPatArchiveImportService {
    /**
     * 查询Excel导入患者档案
     *
     * @param id Excel导入患者档案主键
     * @return Excel导入患者档案
     */
    public PatArchiveImport selectPatArchiveImportById(Long id);
 
    /**
     * 查询Excel导入患者档案列表
     *
     * @param patArchiveImport Excel导入患者档案
     * @return Excel导入患者档案集合
     */
    public List<PatArchiveImport> selectPatArchiveImportList(PatArchiveImport patArchiveImport);
 
    /**
     * 新增Excel导入患者档案
     *
     * @param patArchiveImport Excel导入患者档案
     * @return 结果
     */
    public int insertPatArchiveImport(PatArchiveImport patArchiveImport);
 
    /**
     * 修改Excel导入患者档案
     *
     * @param patArchiveImport Excel导入患者档案
     * @return 结果
     */
    public int updatePatArchiveImport(PatArchiveImport patArchiveImport);
 
    /**
     * 批量删除Excel导入患者档案
     *
     * @param ids 需要删除的Excel导入患者档案主键集合
     * @return 结果
     */
    public int deletePatArchiveImportByIds(Long[] ids);
 
    /**
     * 删除Excel导入患者档案信息
     *
     * @param id Excel导入患者档案主键
     * @return 结果
     */
    public int deletePatArchiveImportById(Long id);
 
    public List<PatArchiveImport> importPatInfo(MultipartFile multipartFile,SysUser user);
}