thumbup.go 568 B

1234567891011121314151617181920212223
  1. package model
  2. // All const variable used in thumbup
  3. const (
  4. ThumbupLike int8 = 1 // 点赞
  5. ThumbupLikeCancel int8 = 2 // 取消赞
  6. ThumbupHate int8 = 3 // 点踩
  7. ThumbupHateCancel int8 = 4 // 取消踩
  8. )
  9. // ThumbupStat thumbup state
  10. type ThumbupStat struct {
  11. Likes int64 `json:"likes"`
  12. UserLike int8 `json:"user_like"`
  13. }
  14. // CheckThumbup check thumbup.
  15. func CheckThumbup(Thumbup int8) bool {
  16. if Thumbup == ThumbupLikeCancel || Thumbup == ThumbupLike || Thumbup == ThumbupHateCancel || Thumbup == ThumbupHate {
  17. return true
  18. }
  19. return false
  20. }