陈昶聿
昨天 fcb98e4558897945a316d04555923355b8e60605
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
package com.smartor.service;
 
import java.time.LocalDateTime;
 
/**
 * 河南采集患者信息接口
 *
 * @author smartor
 * @date 2023-03-04
 */
public interface IXHGatherPatArchiveService {
 
    /**
     * 河南数据采集
     *
     * @param patMedInhosp
     * @return
     */
    public void getInHospDataGather(String cry, LocalDateTime startTime, LocalDateTime endTime);
 
    /**
     * 获取预约停诊记录信息
     *
     * @param cry       出入院类型:0-入院,1-出院 2,预约记录
     * @param startTime 开始时间
     * @param endTime   结束时间
     */
    public void getAppointRecordInfo(String cry, LocalDateTime startTime, LocalDateTime endTime);
 
 
}