service/dbstruct/zonesession.go

18 lines
540 B
Go
Raw Normal View History

2024-04-04 20:48:42 +08:00
package dbstruct
type ZoneSession struct {
Id *int64 `json:"id" bson:"_id"` // 空间对话表id
SubMid *int64 `json:"sub_mid" bson:"sub_mid"` // 主语mid
ObjZid *int64 `json:"obj_zid" bson:"obj_zid"` // 宾语zid
Ct *int64 `json:"ct" bson:"ct"` // 创建时间
Ut *int64 `json:"ut" bson:"ut"` // 更新时间
DelFlag *int64 `json:"del_flag" bson:"del_flag"` // 删除标记
}
2024-04-16 07:41:52 +08:00
func (p *ZoneSession) GetUt() int64 {
if p != nil && p.Ut != nil {
return *p.Ut
}
return 0
}