From c08e01e0b9a4a38b85fe2c33b6fca2c8c37b0546 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?ACT=E4=B8=B6=E6=B5=81=E6=98=9F=E9=9B=A8?= <1340145680@qq.com> Date: Fri, 6 Feb 2026 14:08:09 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=88=E5=B9=B6=E4=BB=A3=E7=A0=81=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0=E6=96=B0sql=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/types/database.d.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/types/database.d.ts b/src/types/database.d.ts index daff42e..482bd85 100644 --- a/src/types/database.d.ts +++ b/src/types/database.d.ts @@ -1,6 +1,11 @@ -// @db-hash 4b4fd23f99ba4269f4992c7260b5a03c +// @db-hash e1460b0ace03f6aaed458653a32b6ffb //该文件由脚本自动生成,请勿手动修改 +export interface t_aiModelMap { + 'configId'?: number | null; + 'id'?: number; + 'promptsId'?: number | null; +} export interface t_assets { 'duration'?: string | null; 'episode'?: string | null; @@ -147,6 +152,7 @@ export interface t_videoConfig { } export interface DB { + "t_aiModelMap": t_aiModelMap; "t_assets": t_assets; "t_chatHistory": t_chatHistory; "t_config": t_config;