yb_like.go 1.1 KB

123456789101112131415161718192021
  1. package yb_like
  2. import "time"
  3. // YbLike 研报 点赞
  4. type YbLike struct {
  5. LikeId uint64 `gorm:"primaryKey;column:like_id;type:bigint(20) unsigned;not null" json:"like_id" ` //消息序号
  6. UserId uint64 `gorm:"column:user_id" json:"user_id" ` //用户id
  7. Enabled int8 `gorm:"column:enabled" json:"enabled" ` //状态. 0-已取消赞 1-有效赞
  8. CreateTime time.Time `gorm:"column:create_time" json:"create_time" ` //创建时间
  9. ModifyTime time.Time `gorm:"column:modify_time" json:"modify_time" ` //修改时间
  10. ReportId int `gorm:"column:report_id" json:"report_id" ` //报告ID
  11. ReportChapterId int `gorm:"column:report_chapter_id" json:"report_chapter_id" ` //报告章节ID
  12. SourceAgent int `gorm:"column:source_agent"` //留言入口来源,1:小程序,2:pc
  13. OldReportId int `gorm:"column:old_report_id" json:"old_report_id" ` //老报告ID
  14. OldReportChapterId int `gorm:"column:old_report_chapter_id" json:"old_report_chapter_id" ` //老报告章节ID
  15. }
  16. func (yl *YbLike) TableName() string {
  17. return "yb_like"
  18. }