package com.ruoyi.quartz.service; 
 | 
  
 | 
import com.ruoyi.common.core.domain.entity.SysDept; 
 | 
import com.ruoyi.common.core.domain.entity.SysUser; 
 | 
import com.smartor.domain.*; 
 | 
  
 | 
import java.util.List; 
 | 
  
 | 
public interface ICollectHISService { 
 | 
    /** 
 | 
     * 查询患者档案列表 
 | 
     * 
 | 
     * @param patArchive 患者档案 
 | 
     * @return 患者档案集合 
 | 
     */ 
 | 
    public List<PatArchive> selectPatArchiveList(PatArchive patArchive); 
 | 
  
 | 
    /** 
 | 
     * 出入院信息 
 | 
     * 
 | 
     * @param patMedInhosp 
 | 
     * @return 
 | 
     */ 
 | 
    public Integer selectPatMedInhospList(PatMedInhosp patMedInhosp); 
 | 
  
 | 
    /** 
 | 
     * 河南数据采集 
 | 
     * 
 | 
     * @param patMedInhosp 
 | 
     * @return 
 | 
     */ 
 | 
    public Boolean hnDataGather(HnDataGatherVO patMedInhosp); 
 | 
  
 | 
    /** 
 | 
     * 门急诊信息 
 | 
     * 
 | 
     * @param id 
 | 
     * @return 
 | 
     */ 
 | 
    public Integer selectPatMedOuthospList(PatMedOuthosp patMedOuthosp); 
 | 
  
 | 
  
 | 
    /** 
 | 
     * 查询疾病列表 
 | 
     * 
 | 
     * @param icd10 疾病 
 | 
     * @return 疾病集合 
 | 
     */ 
 | 
    public Integer selectIcd10List(Icd10 icd10); 
 | 
  
 | 
    /** 
 | 
     * 根据条件分页查询用户列表 
 | 
     * 
 | 
     * @param sysUser 用户信息 
 | 
     * @return 用户信息集合信息 
 | 
     */ 
 | 
    public Integer selectUserList(SysUser sysUser); 
 | 
  
 | 
    /** 
 | 
     * 查询部门管理数据 
 | 
     * 
 | 
     * @param dept 部门信息 
 | 
     * @return 部门信息集合 
 | 
     */ 
 | 
    public Integer selectDeptList(SysDept dept); 
 | 
} 
 |