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