From 86daff5763b0e3b6d44310d118deffde84a6dd6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E5=AF=BB=E6=AC=A2?= Date: Fri, 3 Nov 2023 11:48:34 +0800 Subject: [PATCH] =?UTF-8?q?:bug:=20=E4=BF=AE=E5=A4=8D=E6=96=B0=E6=88=90?= =?UTF-8?q?=E5=91=98=E6=97=A0=E6=B3=95=E5=85=A5=E5=BA=93=E7=9A=84BUG?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config.yaml | 8 ++++---- entity/friend.go | 14 +++++++------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/config.yaml b/config.yaml index 3b300b4..c463825 100644 --- a/config.yaml +++ b/config.yaml @@ -3,7 +3,7 @@ wechat: # 微信HOOK接口地址 host: 10.0.0.73:19088 # 是否在启动的时候自动设置hook服务的回调 - autoSetCallback: true + autoSetCallback: false # 回调IP,如果是Docker运行,本参数必填,如果Docker修改了映射,格式为 ip:port callback: 10.0.0.51 @@ -16,12 +16,12 @@ mysql: db: wechat task: - enable: false + enable: true syncFriends: enable: true - cron: '0 * * * *' + cron: '*/5 * * * *' # 五分钟一次 waterGroup: - enable: true + enable: false cron: '30 9 * * *' # 需要发送水群排行榜的群Id groups: diff --git a/entity/friend.go b/entity/friend.go index 7d6f04a..0508b26 100644 --- a/entity/friend.go +++ b/entity/friend.go @@ -19,13 +19,13 @@ func (Friend) TableName() string { // GroupUser // @description: 群成员 type GroupUser struct { - GroupId string `json:"groupId"` // 群Id - Account string `json:"account"` // 账号 - HeadImage string `json:"headImage"` // 头像 - Nickname string `json:"nickname"` // 昵称 - Wxid string `json:"wxid"` // 微信Id - IsMember bool `json:"isMember" gorm:"type:tinyint(1)"` // 是否群成员 - LeaveTime time.Time `json:"leaveTime"` // 离开时间 + GroupId string `json:"groupId"` // 群Id + Account string `json:"account"` // 账号 + HeadImage string `json:"headImage"` // 头像 + Nickname string `json:"nickname"` // 昵称 + Wxid string `json:"wxid"` // 微信Id + IsMember bool `json:"isMember" gorm:"type:tinyint(1)"` // 是否群成员 + LeaveTime *time.Time `json:"leaveTime"` // 离开时间 } func (GroupUser) TableName() string {