feat:更新朋友圈功能

This commit is contained in:
2025-06-27 15:58:06 +08:00
parent 233d7de144
commit 4276e9466a
9 changed files with 51 additions and 14 deletions

View File

@@ -88,9 +88,11 @@ export interface IComment {
export interface IMoment {
id?: number;
userId?: number;
username?: string;
avatar?: string;
content: string;
imageList: string[];
date?: string;
commentList?: IComment[];
}