You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
808 B
23 lines
808 B
package com.platform.service;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
import com.platform.entities.DataInfoEntity;
|
|
import com.platform.entities.GatherOracleInfo;
|
|
import com.platform.entities.OracleConnectorParams;
|
|
|
|
public interface IOracleExtractService {
|
|
|
|
/** 抽取数据库
|
|
* @param name
|
|
* @param dataInfo //采集库连接参数
|
|
* @param oracleConnect
|
|
* @return
|
|
* @throws Exception
|
|
*/
|
|
// public boolean extractOracle(String name, List<OracleConnectorParams> dataInfos, GatherOracleInfo oracleConnect) throws Exception;
|
|
// public boolean extractOracle(String name, List<DataInfoEntity> dataInfos, Map<String, String> oracleConnect) throws Exception;
|
|
public boolean extractOracle(String name, List<Map<String, String>> dataInfo, Map<String, String> oracleConnect) throws Exception;
|
|
}
|