From e94c653ae1df759d817d6e8b77b143733698d100 Mon Sep 17 00:00:00 2001 From: sk <123456@qq.com> Date: Thu, 6 Feb 2025 14:20:28 +0800 Subject: [PATCH] =?UTF-8?q?add=20facebook=E8=B4=A6=E5=8F=B7=E5=88=A0?= =?UTF-8?q?=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dao/internal/account_log.go | 2 +- model/accountlog.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dao/internal/account_log.go b/dao/internal/account_log.go index ef83b53..a15eadd 100644 --- a/dao/internal/account_log.go +++ b/dao/internal/account_log.go @@ -45,7 +45,7 @@ type AccountLogColumns struct { var accountLogColumns = &AccountLogColumns{ ID: "_id", Platform: "platform", - SnId: "snId", + SnId: "snid", AccountType: "accounttype", FaceBookId: "facebookid", } diff --git a/model/accountlog.go b/model/accountlog.go index daaff4e..f2c021b 100644 --- a/model/accountlog.go +++ b/model/accountlog.go @@ -14,7 +14,7 @@ import ( type AccountLog struct { ID primitive.ObjectID `bson:"_id" gen:"autoFill"` Platform string `bson:"platform"` - SnId int32 `bson:"snId"` + SnId int32 `bson:"snid"` AccountType int32 `bson:"accounttype"` FaceBookId string `bson:"facebookid"` }