update:1.新增AI生成组织功能,扩展优化组织字段(所在地 代表颜色 格言/口号)

2.适配移动端项目管理-剧情分析UI页面
This commit is contained in:
xiamuceer
2025-11-05 16:22:14 +08:00
parent ff58548a79
commit 397ca30bcb
17 changed files with 1155 additions and 185 deletions
+10
View File
@@ -172,6 +172,11 @@ export interface Character {
organization_members?: string;
traits?: string;
avatar_url?: string;
// 组织扩展字段(从Organization表关联)
power_level?: number;
location?: string;
motto?: string;
color?: string;
created_at: string;
updated_at: string;
}
@@ -190,6 +195,11 @@ export interface CharacterUpdate {
organization_purpose?: string;
organization_members?: string;
traits?: string;
// 组织扩展字段
power_level?: number;
location?: string;
motto?: string;
color?: string;
}
// 章节类型定义