| 1 | package domain |
| 2 | |
| 3 | type Comment struct { |
| 4 | Id int64 |
| 5 | UserId int64 |
| 6 | Biz string |
| 7 | BizId int64 |
| 8 | PostId int64 |
| 9 | Content string |
| 10 | RootComment *Comment // 根节点 |
| 11 | ParentComment *Comment // 父节点 |
| 12 | Children []Comment // 子节点 |
| 13 | CreatedAt int64 |
| 14 | UpdatedAt int64 |
| 15 | Status uint8 // 评论的审核状态 |
| 16 | } |
nothing calls this directly
no outgoing calls
no test coverage detected