liusheng
2025-04-25 fce30cf9f7692d49c3d408475dfb72d289b1cd4f
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
package com.smartor.mapper;
 
import java.util.List;
 
import com.ruoyi.common.core.domain.entity.SysUser;
import com.ruoyi.common.core.domain.entity.SysUserRole;
import org.apache.ibatis.annotations.Mapper;
import com.smartor.domain.PatArchiveImport;
 
/**
 * Excel导入患者档案Mapper接口
 *
 * @author lihu
 * @date 2024-09-05
 */
@Mapper
public interface PatArchiveImportMapper {
    /**
     * 查询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 id Excel导入患者档案主键
     * @return 结果
     */
    public int deletePatArchiveImportById(Long id);
 
    /**
     * 批量删除Excel导入患者档案
     *
     * @param ids 需要删除的数据主键集合
     * @return 结果
     */
    public int deletePatArchiveImportByIds(Long[] ids);
 
    /**
     * 校验用户名称是否唯一
     *
     * @param idCard 用户名称
     * @return 结果
     */
    public SysUser checkUserExist(String idCard);
 
 
    /**
     * 新增用户信息
     *
     * @param user 用户信息
     * @return 结果
     */
    public int insertUser(SysUser user);
 
    /**
     * 角色新增
     * @param sysUserRole
     * @return
     */
    public int insertUserRole(SysUserRole sysUserRole);
}