service/dbstruct/thumbsup.go

12 lines
456 B
Go

package dbstruct
type ThumbsUp struct {
Id *int64 `json:"id" bson:"_id"` // 点赞表id
MomentId *int64 `json:"moment_id" bson:"moment_id"` // 动态id
Mid *int64 `json:"mid" bson:"mid"` // 点赞用户mid
Ct *int64 `json:"ct" bson:"ct"` // 创建时间
Ut *int64 `json:"ut" bson:"ut"` // 更新时间
DelFlag *int64 `json:"del_flag" bson:"del_flag"` // 删除标记
}