service/dbstruct/zone_moment_create_times.go

7 lines
211 B
Go
Raw Normal View History

2024-04-11 19:34:51 +08:00
package dbstruct
type ZoneMomentCreateTimes struct {
2024-04-27 00:27:53 +08:00
Id int64 `json:"id" bson:"_id"` //id,主播的mid
CreateTimes int64 `json:"create_times" bson:"create_times"` //发帖次数
2024-04-11 19:34:51 +08:00
}