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;
|
}
|
|
}
|