1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.hx.phip.his.service;
|
|
| import com.hx.phip.model.SyncBasicInformationRecord;
|
| public interface SyncEmployeeService {
| /**
| * 根据id同步员工
| */
| void syncEmployeeById(String id);
|
| /**
| * 同步所有员工
| */
| void syncEmployee(SyncBasicInformationRecord syncBasicInformationRecord);
|
|
| }
|
|