From b573fd95ccfbf30b952108b5b48962a729dfa9cf Mon Sep 17 00:00:00 2001 From: wjm Date: Wed, 18 Mar 2026 11:18:51 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8E=A5=E5=8F=A3=E6=BC=8F=E6=8F=90=E4=BA=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/wailsjs/go/app/App.d.ts | 2 ++ frontend/wailsjs/go/app/App.js | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/frontend/wailsjs/go/app/App.d.ts b/frontend/wailsjs/go/app/App.d.ts index 0dd7bc6f..338dfc08 100755 --- a/frontend/wailsjs/go/app/App.d.ts +++ b/frontend/wailsjs/go/app/App.d.ts @@ -190,3 +190,5 @@ export function SelectSSHKeyFile(arg1:string):Promise; export function SetWindowTranslucency(arg1:number,arg2:number):Promise; export function TestConnection(arg1:connection.ConnectionConfig):Promise; + +export function TruncateTables(arg1:connection.ConnectionConfig,arg2:string,arg3:Array):Promise; diff --git a/frontend/wailsjs/go/app/App.js b/frontend/wailsjs/go/app/App.js index 1ca50600..fcec9ed0 100755 --- a/frontend/wailsjs/go/app/App.js +++ b/frontend/wailsjs/go/app/App.js @@ -373,3 +373,7 @@ export function SetWindowTranslucency(arg1, arg2) { export function TestConnection(arg1) { return window['go']['app']['App']['TestConnection'](arg1); } + +export function TruncateTables(arg1, arg2, arg3) { + return window['go']['app']['App']['TruncateTables'](arg1, arg2, arg3); +}