陈昶聿
19 小时以前 c3128a1a8493a98c3de55f57f6cf8e15fe847435
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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);
 
 
}