update: 1.新增职业管理模块和角色职业关联 2.章节分析自动更新角色职业状态 3.优化章节生成的角色信息构建 4.批量生成强制开启同步分析 5.章节内容批量生成增加系统提示

This commit is contained in:
xiamuceer
2025-12-22 19:53:31 +08:00
parent 6886d903fe
commit b2dec41464
25 changed files with 4635 additions and 89 deletions
+7
View File
@@ -217,6 +217,13 @@ export interface Character {
location?: string;
motto?: string;
color?: string;
// 职业相关字段
main_career_id?: string;
main_career_stage?: number;
sub_careers?: Array<{
career_id: string;
stage: number;
}>;
created_at: string;
updated_at: string;
}