package com.celnet.datadump.service; import com.celnet.datadump.param.SalesforceParam; import com.xxl.job.core.biz.model.ReturnT; public interface DataImportBatchService { ReturnT immigrationBatch(SalesforceParam param) throws Exception; ReturnT immigrationUpdateBatch(SalesforceParam param) throws Exception; ReturnT insertSingleBatch(SalesforceParam param) throws Exception; }