354798ggg
2023-08-29 fd0c7c174d7b7313aa49061df05350405a3c1bf1
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
30
31
32
33
34
35
36
package com.product.data.sync.service;
 
import com.product.core.exception.BaseException;
import com.product.data.sync.entity.SyncResultEntity;
import com.product.data.sync.service.ide.ISyncDataService;
 
/**
 * @Author cheng
 * @Date 2022/1/27 14:18
 * @Desc
 */
public class SyncDataService implements ISyncDataService {
    /**
     * 覆盖同步
     *
     * @return
     * @throws BaseException
     */
    @Override
    public SyncResultEntity coveringSyncData() throws BaseException {
        
        return null;
    }
 
    /**
     * 增量同步
     *
     * @return
     * @throws BaseException
     */
    @Override
    public SyncResultEntity incrementalSyncData() throws BaseException {
        return null;
    }
 
}