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
  | package com.smartor.service; 
 |    
 |  import com.smartor.domain.ServiceSLTDInhospReqVO; 
 |  import com.smartor.domain.ServiceSLTDInhospResDTO; 
 |    
 |  import java.util.List; 
 |    
 |  /** 
 |   * 省立同德健康记录查询Service接口 
 |   * 
 |   * @author smartor 
 |   * @date 2025-08-14 
 |   */ 
 |  public interface IServiceSLTDHealthcareRecordService { 
 |    
 |      /** 
 |       * 采集在院患者出入院、门急诊信息 
 |       * 
 |       * @param reqVO 查询请求参数 
 |       * @return 健康记录列表 
 |       * 参考 
 |       * { 
 |       * "orgId": 20001001, 
 |       * "campusIds": 30001002, 
 |       * "startHeadTime":"2025-08-14", 
 |       * "startTailTime":"2025-08-14", 
 |       * "healthcareRecordTypeList":["FH0108.01"], 
 |       * "subjectCode": null, 
 |       * "healthcareRecordNo":null, 
 |       * "orgSubjectCode": null, 
 |       * "deptDimensions": null, 
 |       * "serviceScopes": null, 
 |       * "inpatientArea": null, 
 |       * "status": null 
 |       * } 
 |       */ 
 |      List<ServiceSLTDInhospResDTO> queryHealthcareRecordList(ServiceSLTDInhospReqVO reqVO); 
 |    
 |      /** 
 |       * 采集医院用户信息 
 |       * 
 |       * @param reqVO 
 |       * @return 参考 
 |       * { 
 |       * "orgId": 20001001, 
 |       * "campusIds": 30001002, 
 |       * "unitIds": null, 
 |       * "relationType": null, 
 |       * "searchText": null, 
 |       * "status": 1 
 |       * } 
 |       */ 
 |      Boolean queryHospUserInfoList(ServiceSLTDInhospReqVO reqVO); 
 |    
 |    
 |  } 
 |  
  |