7 lines
207 B
Go
7 lines
207 B
Go
|
package dbstruct
|
||
|
|
||
|
type MomentCreateTimes struct {
|
||
|
Id int64 `json:"id" bson:"_id"` //id,主播的mid
|
||
|
CreateTimes int64 `json:"create_times" bson:"create_times"` //发送次数
|
||
|
}
|