16 lines
614 B
Go
16 lines
614 B
Go
|
package dbstruct
|
||
|
|
||
|
type UserMomentVisitOffset struct {
|
||
|
Id int64 `json:"id" bson:"_id"` // id,用户的mid
|
||
|
MomentRecommOffset int64 `json:"moment_recomm_offset" bson:"moment_recomm_offset"` // 动态推荐列表偏移量
|
||
|
BottomFlag *int64 `json:"bottom_flag" bson:"bottom_flag"` // 是否触底标志
|
||
|
Ver int64 `json:"ver" bson:"ver"` // 乐观锁
|
||
|
}
|
||
|
|
||
|
func (p *UserMomentVisitOffset) GetBottomFlag() int64 {
|
||
|
if p == nil || p.BottomFlag == nil {
|
||
|
return 0
|
||
|
}
|
||
|
return *p.BottomFlag
|
||
|
}
|