like.go 209 B

123456
  1. package response
  2. type RespLike struct {
  3. LikeNum int64 `description:"点赞总数" json:"like_num"`
  4. LikeEnabled int8 `description:"本次点赞结果: 0-已取消赞 1-有效赞" json:"like_enabled"`
  5. }