2025-06-06 15:24:29 +08:00
|
|
|
package com.celnet.datadump.service;
|
|
|
|
|
|
|
|
import com.celnet.datadump.param.SalesforceParam;
|
|
|
|
import com.xxl.job.core.biz.model.ReturnT;
|
|
|
|
|
|
|
|
public interface DataImportBatchService {
|
|
|
|
|
|
|
|
|
|
|
|
ReturnT<String> immigrationBatch(SalesforceParam param) throws Exception;
|
|
|
|
|
|
|
|
ReturnT<String> immigrationUpdateBatch(SalesforceParam param) throws Exception;
|
|
|
|
|
2025-07-15 12:03:17 +08:00
|
|
|
ReturnT<String> insertSingleBatch(SalesforceParam param) throws Exception;
|
|
|
|
|
2025-06-06 15:24:29 +08:00
|
|
|
}
|