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