2025-08-29 14:30:42 +08:00
|
|
|
package com.celnet.datadump.service;
|
|
|
|
|
|
|
|
|
|
import com.celnet.datadump.param.SalesforceParam;
|
|
|
|
|
import com.xxl.job.core.biz.model.ReturnT;
|
|
|
|
|
|
|
|
|
|
public interface CommonBatchService {
|
|
|
|
|
|
|
|
|
|
ReturnT<String> dumpBatch(SalesforceParam param) throws Exception;
|
|
|
|
|
|
2025-09-25 10:19:57 +08:00
|
|
|
ReturnT<String> dumpBigObject(SalesforceParam param) throws Exception;
|
|
|
|
|
|
|
|
|
|
ReturnT<String> importBigObject(SalesforceParam param) throws Exception;
|
2025-08-29 14:30:42 +08:00
|
|
|
|
2025-09-25 10:19:57 +08:00
|
|
|
}
|