feat(DOC): 完整地审查了代码,更完整的注释说明

- 无代码修改
This commit is contained in:
tobegold574
2025-11-23 22:26:39 +08:00
parent 4e741a0523
commit c5853847ae
27 changed files with 119 additions and 110 deletions

View File

@@ -15,6 +15,7 @@ export interface ModelComment extends BaseEntity {
author: BaseUser; // 作者信息
content: string; // 评论内容
parentId?: string; // 父评论ID用于嵌套评论
// 其实没必要
stats: ModelCommentStats; // 统计信息
}

View File

@@ -1,4 +1,5 @@
// AI模型评论排序枚举
// 和post的重复了而且字段还不一样
export enum CommentSortType {
LATEST = 'latest', // 最新
HOTTEST = 'hottest', // 最热