From 3a00ae1f441f64d7ffdd8dff4610ca24f3259628 Mon Sep 17 00:00:00 2001 From: Syngnat Date: Tue, 23 Jun 2026 09:55:41 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20chore(wails):=20=E5=90=8C?= =?UTF-8?q?=E6=AD=A5=E6=95=B0=E6=8D=AE=E5=90=8C=E6=AD=A5=20targetSchema=20?= =?UTF-8?q?TS=20=E7=BB=91=E5=AE=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 为 sync 请求模型补充 targetSchema 字段映射 - 同步自动生成的 frontend wailsjs models.ts 绑定 - 更新 package.json.md5 生成校验文件 --- frontend/package.json.md5 | 2 +- frontend/wailsjs/go/models.ts | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/frontend/package.json.md5 b/frontend/package.json.md5 index 72cd1564..50f303f7 100755 --- a/frontend/package.json.md5 +++ b/frontend/package.json.md5 @@ -1 +1 @@ -1d8f9adbde8018f90d013cc740e0405b \ No newline at end of file +84ec3a6d42105c92f224232f0d83a33b \ No newline at end of file diff --git a/frontend/wailsjs/go/models.ts b/frontend/wailsjs/go/models.ts index b870e6ad..113c599f 100755 --- a/frontend/wailsjs/go/models.ts +++ b/frontend/wailsjs/go/models.ts @@ -1401,6 +1401,7 @@ export namespace sync { targetConfig: connection.ConnectionConfig; sourceDatabase?: string; targetDatabase?: string; + targetSchema?: string; tables: string[]; sourceQuery?: string; content?: string; @@ -1422,6 +1423,7 @@ export namespace sync { this.targetConfig = this.convertValues(source["targetConfig"], connection.ConnectionConfig); this.sourceDatabase = source["sourceDatabase"]; this.targetDatabase = source["targetDatabase"]; + this.targetSchema = source["targetSchema"]; this.tables = source["tables"]; this.sourceQuery = source["sourceQuery"]; this.content = source["content"];