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
| package com.product.data.sync.service.ide;
|
| import com.product.core.exception.BaseException;
| import com.product.data.sync.entity.SyncResultEntity;
|
| /**
| * @Author cheng
| * @Date 2022/1/27 10:15
| * @Desc
| */
| public interface ISyncDataService {
| /**
| * 覆盖同步
| *
| * @return
| * @throws BaseException
| */
| SyncResultEntity coveringSyncData() throws BaseException;
|
| /**
| * 增量同步
| *
| * @return
| * @throws BaseException
| */
| SyncResultEntity incrementalSyncData() throws BaseException;
|
|
| }
|
|