service/dbstruct/single_distribute_lock.go

14 lines
268 B
Go
Raw Normal View History

2024-06-24 19:14:31 +08:00
package dbstruct
type SingleDistributeLock struct {
Id int64 `json:"id" bson:"_id"` //id,主播的mid
Lock int64 `json:"lock" bson:"lock"` //发帖次数
}
func (p *SingleDistributeLock) IsLocked() bool {
if p == nil {
return false
}
return p.Lock > 0
}