fix: 1.接入ai_suggestion.

2. 接入合同起草功能。
This commit is contained in:
2025-12-05 00:04:45 +08:00
parent eca98fc540
commit 33f10896a0
29 changed files with 3184 additions and 981 deletions
+1 -1
View File
@@ -196,7 +196,7 @@ export async function getRoles(params?: {
description: role.description || '',
parent_role_id: role.parent_role_id || null,
priority: role.priority || 0,
is_system_role: role.is_system || false,
is_system_role: (role.role_key == 'admin' || role.role_key == 'common') ? true : role.is_system || false,
created_at: role.created_at,
updated_at: role.updated_at
}));