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