BirdNETM | b0f7153 | 2025-05-26 17:37:33 +0800 | [diff] [blame] | 1 | /** 种子评论表 */ |
2 | export interface SysTorrentComment { | ||||
3 | /** 评论ID */ | ||||
4 | commentId: number; | ||||
5 | /** 种子ID */ | ||||
6 | torrentId: number; | ||||
7 | /** 评论用户ID */ | ||||
8 | userId: number; | ||||
9 | /** 评论内容 */ | ||||
10 | content: string; | ||||
11 | /** 创建时间 */ | ||||
12 | createTime: Date; | ||||
13 | /** 父评论ID,用于回复 */ | ||||
14 | parentId: number; | ||||
15 | } | ||||
BirdNETM | ed9f2f9 | 2025-05-26 20:12:30 +0800 | [diff] [blame^] | 16 | |
17 | export interface responseSysTorrentComment { | ||||
18 | /** 评论ID */ | ||||
19 | data: SysTorrentComment[]; | ||||
20 | } |