feat: 增加博客评论模块

This commit is contained in:
2025-06-20 17:36:35 +08:00
parent e5ff5608a8
commit b9c18375f5
12 changed files with 500 additions and 6 deletions

View File

@@ -64,3 +64,21 @@ export interface IBlogVisit {
title: string;
visitTime: string;
}
export interface IBlogComment {
id: number;
blogId: number;
name: string;
website: string;
content: string;
ipAddress: string;
userAgent: string;
parentId: number;
isApproved: boolean;
createTime: string;
}
export interface IBlogNestedComment {
comment: IBlogComment;
replies: IBlogComment[];
}