bplus.go 793 B

12345678910111213141516171819202122
  1. package bplus
  2. import (
  3. xtime "go-common/library/time"
  4. )
  5. // Picture struct
  6. type Picture struct {
  7. DynamicID int64 `json:"dynamic_id,omitempty"`
  8. PublishTime xtime.Time `json:"publish_time,omitempty"`
  9. Mid int64 `json:"mid,omitempty"`
  10. RidType int8 `json:"rid_type,omitempty"`
  11. Rid int64 `json:"rid,omitempty"`
  12. ImgCount int `json:"img_count,omitempty"`
  13. Imgs []string `json:"imgs,omitempty"`
  14. DynamicText string `json:"dynamic_text,omitempty"`
  15. ViewCount int64 `json:"view_count,omitempty"`
  16. Topics []string `json:"topics,omitempty"`
  17. NickName string `json:"nick_name,omitempty"`
  18. FaceImg string `json:"face_img,omitempty"`
  19. CommentCount int64 `json:"comment_count,omitempty"`
  20. }