update Page and Response T

This commit is contained in:
Timi
2026-01-05 14:54:09 +08:00
parent e20d2ea351
commit 05e354f148
4 changed files with 10 additions and 8 deletions
+2 -2
View File
@@ -53,7 +53,7 @@ export type CommentReplyView = {
export type CommentPage = {
bizType?: CommentBizType;
bizId?: number;
} & Page;
} & Page<Comment>;
export enum CommentReplyBizType {
@@ -67,7 +67,7 @@ export enum CommentReplyBizType {
export type CommentReplyPage = {
bizType: CommentReplyBizType
bizId?: number
} & Page;
} & Page<Comment>;
export enum CommentBizType {
ARTICLE = "ARTICLE",