You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
793 B
22 lines
793 B
package bplus |
|
|
|
import ( |
|
xtime "go-common/library/time" |
|
) |
|
|
|
// Picture struct |
|
type Picture struct { |
|
DynamicID int64 `json:"dynamic_id,omitempty"` |
|
PublishTime xtime.Time `json:"publish_time,omitempty"` |
|
Mid int64 `json:"mid,omitempty"` |
|
RidType int8 `json:"rid_type,omitempty"` |
|
Rid int64 `json:"rid,omitempty"` |
|
ImgCount int `json:"img_count,omitempty"` |
|
Imgs []string `json:"imgs,omitempty"` |
|
DynamicText string `json:"dynamic_text,omitempty"` |
|
ViewCount int64 `json:"view_count,omitempty"` |
|
Topics []string `json:"topics,omitempty"` |
|
NickName string `json:"nick_name,omitempty"` |
|
FaceImg string `json:"face_img,omitempty"` |
|
CommentCount int64 `json:"comment_count,omitempty"` |
|
}
|
|
|