1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package jnpf.limsService;
|
| import jnpf.exception.DataException;
|
| public interface LimsShebeiYiqiWeibaoService {
|
| /**
| * 将维保记录中的仪器和维保信息同步到关联的子项。
| *
| * @param weibaoId 维保记录主键(lims_shebei_yiqi_weibao.f_id)
| * @return 同步的子项数量
| */
| int syncToZixiang(String weibaoId) throws DataException;
| }
|
|