From a8726adf79da778a4cddfdd5b792b87613693c56 Mon Sep 17 00:00:00 2001 From: Leufolium Date: Tue, 2 Apr 2024 18:55:05 +0800 Subject: [PATCH] by Robin at 20240402 --- dbstruct/zone.go | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/dbstruct/zone.go b/dbstruct/zone.go index 1e102c80..e556505b 100644 --- a/dbstruct/zone.go +++ b/dbstruct/zone.go @@ -1,11 +1,12 @@ package dbstruct type Zone struct { - Id *int64 `json:"id" bson:"_id"` // 空间表id - Mid *int64 `json:"mid" bson:"mid"` // 用户表id - Profile *string `json:"profile" bson:"profile"` // 空间简介 - Ct *int64 `json:"ct" bson:"ct"` // 创建时间 - Ut *int64 `json:"ut" bson:"ut"` // 更新时间 - DelFlag *int64 `json:"del_flag" bson:"del_flag"` // 删除标记 + Id *int64 `json:"id" bson:"_id"` // 空间表id + Mid *int64 `json:"mid" bson:"mid"` // 用户表id + Profile *string `json:"profile" bson:"profile"` // 空间简介 + LastZoneMomentCt *int64 `json:"last_zone_moment_ct" bson:"last_zone_moment_ct"` // 最后空间动态创建时间 + Ct *int64 `json:"ct" bson:"ct"` // 创建时间 + Ut *int64 `json:"ut" bson:"ut"` // 更新时间 + DelFlag *int64 `json:"del_flag" bson:"del_flag"` // 删除标记 }