action.go 403 B

123456789101112131415161718192021
  1. package model
  2. import (
  3. xtime "go-common/library/time"
  4. )
  5. // Action 点赞或踩
  6. const (
  7. ActionNormal int32 = 0 // 未踩赞
  8. ActionLike int32 = 1 // 赞
  9. ActionHate int32 = 2 // 踩
  10. )
  11. // Action reply action info
  12. type Action struct {
  13. ID int64 `json:"-"`
  14. RpID int64 `json:"rpid"`
  15. Action int8 `json:"action"`
  16. Mid int64 `json:"mid"`
  17. CTime xtime.Time `json:"-"`
  18. }