service/dbstruct/footprint.go

13 lines
570 B
Go
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package dbstruct
type FootPrint struct {
Id *int64 `json:"id" bson:"_id"` // 用户足迹表id
SubMid *int64 `json:"sub_mid" bson:"sub_mid"` // 主语用户id
ObjMid *int64 `json:"obj_mid" bson:"obj_mid"` // 宾语用户mid
Predicate *int64 `json:"predicate" bson:"predicate"` // 谓词0-浏览过1-被浏览过
Ct *int64 `json:"ct" bson:"ct"` // 创建时间
Ut *int64 `json:"ut" bson:"ut"` // 更新时间
DelFlag *int64 `json:"del_flag" bson:"del_flag"` // 删除标记
}