From 2a12aee17044c7ba5e59c903383dc73c6c7a3584 Mon Sep 17 00:00:00 2001 From: Leufolium Date: Thu, 29 Aug 2024 16:01:45 +0800 Subject: [PATCH] by Robin at 20240829 --- dbstruct/streamer_acct.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dbstruct/streamer_acct.go b/dbstruct/streamer_acct.go index bc55648f..2d7cd9cd 100644 --- a/dbstruct/streamer_acct.go +++ b/dbstruct/streamer_acct.go @@ -8,6 +8,7 @@ type EsStreamerAcct struct { Age int64 `json:"age"` // 年龄 Height int64 `json:"height"` // 身高 Weight int64 `json:"weight"` // 体重 + Fans int64 `json:"fans"` // 粉丝量 City string `json:"city"` // 所在城市 Constellation string `json:"constellation"` // 星座 LastZoneMomentCreateDayStart int64 `json:"last_zone_moment_create_day_start"` // 最后空间动态创建日始整点 @@ -26,6 +27,7 @@ type EsStreamerAcctUpdater struct { Age *int64 `json:"age" bson:"age"` // 年龄 Height *int64 `json:"height" bson:"height"` // 身高 Weight *int64 `json:"weight" bson:"weight"` // 体重 + Fans *int64 `json:"fans"` // 粉丝量 City *string `json:"city" bson:"city"` // 所在城市 Constellation *string `json:"constellation" bson:"constellation"` // 星座 LastZoneMomentCreateDayStart *int64 `json:"last_zone_moment_create_day_start" bson:"last_zone_moment_create_day_start"` // 最后空间动态创建日始整点