mirror of
https://github.com/Syngnat/GoNavi.git
synced 2026-05-31 10:09:50 +08:00
- 集成 go-ora, dm, gokb 驱动,封装统一的 Database 接口实现,支持自定义 DSN 连接 - 新增 SyncEngine 同步引擎,支持基于主键的增量数据比对 (Insert/Update) - 新增 DataSyncModal 组件,实现三步走同步向导逻辑,修复 Transfer 组件空状态显示问题 - 优化 ConnectionModal 交互逻辑,支持驱动参数动态显隐 - 引入 antd/locale/zh_CN,统一应用界面的中文本地化显示
100 lines
2.8 KiB
JavaScript
Executable File
100 lines
2.8 KiB
JavaScript
Executable File
// @ts-check
|
|
// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL
|
|
// This file is automatically generated. DO NOT EDIT
|
|
|
|
export function ApplyChanges(arg1, arg2, arg3, arg4) {
|
|
return window['go']['app']['App']['ApplyChanges'](arg1, arg2, arg3, arg4);
|
|
}
|
|
|
|
export function CreateDatabase(arg1, arg2) {
|
|
return window['go']['app']['App']['CreateDatabase'](arg1, arg2);
|
|
}
|
|
|
|
export function DBConnect(arg1) {
|
|
return window['go']['app']['App']['DBConnect'](arg1);
|
|
}
|
|
|
|
export function DBGetAllColumns(arg1, arg2) {
|
|
return window['go']['app']['App']['DBGetAllColumns'](arg1, arg2);
|
|
}
|
|
|
|
export function DBGetColumns(arg1, arg2, arg3) {
|
|
return window['go']['app']['App']['DBGetColumns'](arg1, arg2, arg3);
|
|
}
|
|
|
|
export function DBGetDatabases(arg1) {
|
|
return window['go']['app']['App']['DBGetDatabases'](arg1);
|
|
}
|
|
|
|
export function DBGetForeignKeys(arg1, arg2, arg3) {
|
|
return window['go']['app']['App']['DBGetForeignKeys'](arg1, arg2, arg3);
|
|
}
|
|
|
|
export function DBGetIndexes(arg1, arg2, arg3) {
|
|
return window['go']['app']['App']['DBGetIndexes'](arg1, arg2, arg3);
|
|
}
|
|
|
|
export function DBGetTables(arg1, arg2) {
|
|
return window['go']['app']['App']['DBGetTables'](arg1, arg2);
|
|
}
|
|
|
|
export function DBGetTriggers(arg1, arg2, arg3) {
|
|
return window['go']['app']['App']['DBGetTriggers'](arg1, arg2, arg3);
|
|
}
|
|
|
|
export function DBQuery(arg1, arg2, arg3) {
|
|
return window['go']['app']['App']['DBQuery'](arg1, arg2, arg3);
|
|
}
|
|
|
|
export function DBShowCreateTable(arg1, arg2, arg3) {
|
|
return window['go']['app']['App']['DBShowCreateTable'](arg1, arg2, arg3);
|
|
}
|
|
|
|
export function DataSync(arg1) {
|
|
return window['go']['app']['App']['DataSync'](arg1);
|
|
}
|
|
|
|
export function ExportData(arg1, arg2, arg3, arg4) {
|
|
return window['go']['app']['App']['ExportData'](arg1, arg2, arg3, arg4);
|
|
}
|
|
|
|
export function ExportTable(arg1, arg2, arg3, arg4) {
|
|
return window['go']['app']['App']['ExportTable'](arg1, arg2, arg3, arg4);
|
|
}
|
|
|
|
export function ImportConfigFile() {
|
|
return window['go']['app']['App']['ImportConfigFile']();
|
|
}
|
|
|
|
export function ImportData(arg1, arg2, arg3) {
|
|
return window['go']['app']['App']['ImportData'](arg1, arg2, arg3);
|
|
}
|
|
|
|
export function MySQLConnect(arg1) {
|
|
return window['go']['app']['App']['MySQLConnect'](arg1);
|
|
}
|
|
|
|
export function MySQLGetDatabases(arg1) {
|
|
return window['go']['app']['App']['MySQLGetDatabases'](arg1);
|
|
}
|
|
|
|
export function MySQLGetTables(arg1, arg2) {
|
|
return window['go']['app']['App']['MySQLGetTables'](arg1, arg2);
|
|
}
|
|
|
|
export function MySQLQuery(arg1, arg2, arg3) {
|
|
return window['go']['app']['App']['MySQLQuery'](arg1, arg2, arg3);
|
|
}
|
|
|
|
export function MySQLShowCreateTable(arg1, arg2, arg3) {
|
|
return window['go']['app']['App']['MySQLShowCreateTable'](arg1, arg2, arg3);
|
|
}
|
|
|
|
export function OpenSQLFile() {
|
|
return window['go']['app']['App']['OpenSQLFile']();
|
|
}
|
|
|
|
export function TestConnection(arg1) {
|
|
return window['go']['app']['App']['TestConnection'](arg1);
|
|
}
|