知识库数据隔离测试完成

This commit is contained in:
2025-11-08 13:42:33 +08:00
parent 38209a642d
commit 95919eb27b
13 changed files with 324 additions and 21 deletions

View File

@@ -99,6 +99,14 @@ export interface AiKnowledge extends BaseDTO {
creatorDept?: string;
/** 更新者 */
updater?: string;
/** 是否可读 */
canRead?: boolean;
/** 是否可写(修改知识库和文档) */
canWrite?: boolean;
/** 是否可删除(删除知识库和文档) */
canDelete?: boolean;
/** 权限类型all/department/role等 */
permissionType?: string;
}
/**