| | |
| | | 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; |
| | | |
| | |
| | | * @date 2024-09-05 |
| | | */ |
| | | @Mapper |
| | | public interface PatArchiveImportMapper |
| | | { |
| | | public interface PatArchiveImportMapper { |
| | | /** |
| | | * 查询Excel导入患者档案 |
| | | * |
| | |
| | | * @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); |
| | | } |