package com.smartor.service;
|
|
import com.ruoyi.common.core.domain.entity.SysUser;
|
import com.smartor.domain.*;
|
import org.springframework.web.multipart.MultipartFile;
|
|
import java.util.List;
|
|
/**
|
* 患者档案Service接口
|
*
|
* @author smartor
|
* @date 2023-03-04
|
*/
|
public interface ExternalInfoService {
|
public PatArchive getExternalPatientInfo(Long brid);
|
|
/**
|
* 查询 第三方门急诊信息
|
*/
|
public Boolean getExternalOutHospInfo();
|
|
|
/**
|
* 查询 第三方门急诊患者信息
|
*/
|
public Boolean getExternalOutHospPatientInfo();
|
|
/**
|
* 第三方出院患者信息
|
*/
|
public Boolean getExternalLeaveHospPatientInfo();
|
|
/**
|
* 第三方入院患者信息
|
*/
|
public Boolean getExternalInHospPatientInfo();
|
|
/**
|
* 第三方入院患者信息
|
*/
|
public Boolean getExternalInHospPatientInfoBY250325();
|
|
/**
|
* 获取出数院信息往前推30天的(主要用与数据传的不对,进行修改)
|
*/
|
public Boolean getExternalLeaveHospPatientInfo30Day();
|
|
/**
|
* 第三方用户和部门信息
|
*/
|
public Boolean getExternalUserAndDeptInfo();
|
|
public Long dealPatArchive(Long brid);
|
|
|
|
|
}
|