update
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import { Model, Page } from "./Model";
|
||||
import { UserView } from "./User";
|
||||
import { User } from "./User";
|
||||
|
||||
/** 评论 */
|
||||
export type Comment = {
|
||||
@@ -10,7 +10,7 @@ export type Comment = {
|
||||
content?: string;
|
||||
|
||||
/** 所属用户 */
|
||||
user?: UserView;
|
||||
user?: User;
|
||||
|
||||
/** 回复列表 */
|
||||
replies?: CommentReply[];
|
||||
@@ -41,8 +41,8 @@ export type CommentReply = {
|
||||
content?: string;
|
||||
|
||||
comment?: Comment;
|
||||
sender?: UserView;
|
||||
receiver?: UserView;
|
||||
sender?: User;
|
||||
receiver?: User;
|
||||
} & Model;
|
||||
|
||||
export enum CommentReplyBizType {
|
||||
|
||||
Reference in New Issue
Block a user