feat: 增加博客评论模块
This commit is contained in:
@@ -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[];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user