use of com.dtstack.taier.develop.dto.devlop.DataSourceVO in project Taier by DTStack.
the class DatasourceService method createMateDataSource.
public void createMateDataSource(Long tenantId, Long userId, String dscJson, String dataName, Integer dataSourceType, String tenantDesc, String dbName) {
DataSourceVO dataSourceVO = convertParamToVO(tenantId, userId, dscJson, dataName, dataSourceType, dbName);
addOrUpdate(dataSourceVO, userId);
}
Aggregations