service/dbstruct/zonemomentthumbsup.go

12 lines
550 B
Go

package dbstruct
type ZoneMomentThumbsUp struct {
Id *int64 `json:"id" bson:"_id"` // 点赞表id
ZoneMomentId *int64 `json:"zone_moment_id" bson:"zone_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"` // 删除标记
}