You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
1.3 KiB

3 weeks ago
  1. // =================================================================================
  2. // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
  3. // =================================================================================
  4. package entity
  5. // Comment is the golang structure for table comment.
  6. type Comment struct {
  7. Id uint `json:"id" orm:"id" description:""` //
  8. WishId int `json:"wishId" orm:"wish_id" description:"心愿ID"` // 心愿ID
  9. Jwcode int `json:"jwcode" orm:"jwcode" description:"评论人code"` // 评论人code
  10. Content string `json:"content" orm:"content" description:"评论内容"` // 评论内容
  11. Image string `json:"image" orm:"image" description:"图片,多张图片用json格式保存"` // 图片,多张图片用json格式保存
  12. ReplyNum int `json:"replyNum" orm:"reply_num" description:"回复数"` // 回复数
  13. Pid int `json:"pid" orm:"pid" description:"父级评论ID"` // 父级评论ID
  14. Delete int `json:"delete" orm:"delete" description:"0正常1删除"` // 0正常1删除
  15. CreatedAt int `json:"createdAt" orm:"created_at" description:"评论时间"` // 评论时间
  16. }