23 lines
813 B

5 months ago
  1. // =================================================================================
  2. // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
  3. // =================================================================================
  4. package do
  5. import (
  6. "github.com/gogf/gf/v2/frame/g"
  7. )
  8. // Comment is the golang structure of table comment for DAO operations like Where/Data.
  9. type Comment struct {
  10. g.Meta `orm:"table:comment, do:true"`
  11. Id interface{} //
  12. WishId interface{} // 心愿ID
  13. Jwcode interface{} // 评论人code
  14. Content interface{} // 评论内容
  15. Image interface{} // 图片,多张图片用json格式保存
  16. ReplyNum interface{} // 回复数
  17. Pid interface{} // 父级评论ID
  18. Delete interface{} // 0正常1删除
  19. CreatedAt interface{} // 评论时间
  20. }