From 802cf07ae61c38d203c0fe13bfdb94042a20c19e Mon Sep 17 00:00:00 2001 From: shenjiachi Date: Fri, 27 Dec 2024 17:28:43 +0800 Subject: [PATCH] feat: add egg comment mq struct --- rule/egg_energy/md/mq_egg_app.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/rule/egg_energy/md/mq_egg_app.go b/rule/egg_energy/md/mq_egg_app.go index 4935271..9d1fadf 100644 --- a/rule/egg_energy/md/mq_egg_app.go +++ b/rule/egg_energy/md/mq_egg_app.go @@ -10,6 +10,7 @@ const ( EggRoutKeyForRecordActive = "egg_record_active" // 更新活跃记录 EggRoutKeyForAutoScoreData = "egg_auto_score" // 自动打分 EggRoutKeyForSendFriendCircle = "egg_send_friend_circle" // 发送朋友圈 + EggRoutKeyForComment = "egg_comment" // 发送朋友圈 ) type EggNewUserRegisterData struct { @@ -73,3 +74,7 @@ type AddPublicPlatoonUserRelationCommissionReq struct { type EggSendFriendCircleData struct { Uid int64 `json:"uid"` } + +type EggCommentData struct { + Uid int64 `json:"uid"` +}