liusheng
2 天以前 c2b8fdfd594d68574325d94eff312c8c00b6b73a
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
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, String zyOrmz);
 
    /**
     * 查询 第三方门急诊信息
     */
    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, String zyOrmz);
 
 
}