| | |
| | | /** |
| | | * 患者档案Service接口 |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-02-22 |
| | | * @author smartor |
| | | * @date 2023-03-01 |
| | | */ |
| | | public interface IPatArchiveService |
| | | { |
| | | /** |
| | | * 查询患者档案 |
| | | * |
| | | * @param PatID 患者档案主键 |
| | | * @param patid 患者档案主键 |
| | | * @return 患者档案 |
| | | */ |
| | | public PatArchive selectPatArchiveByPatID(Long PatID); |
| | | public PatArchive selectPatArchiveByPatid(Long patid); |
| | | |
| | | /** |
| | | * 查询患者档案列表 |
| | |
| | | /** |
| | | * 批量删除患者档案 |
| | | * |
| | | * @param PatIDs 需要删除的患者档案主键集合 |
| | | * @param patids 需要删除的患者档案主键集合 |
| | | * @return 结果 |
| | | */ |
| | | public int deletePatArchiveByPatIDs(Long[] PatIDs); |
| | | public int deletePatArchiveByPatids(Long[] patids); |
| | | |
| | | /** |
| | | * 删除患者档案信息 |
| | | * |
| | | * @param PatID 患者档案主键 |
| | | * @param patid 患者档案主键 |
| | | * @return 结果 |
| | | */ |
| | | public int deletePatArchiveByPatID(Long PatID); |
| | | public int deletePatArchiveByPatid(Long patid); |
| | | } |