From 9a89f95cc4cfe46a62dc69e9b1593f30376935bb Mon Sep 17 00:00:00 2001 From: hahwu <31872165+hahwu@users.noreply.github.com> Date: Fri, 31 Oct 2025 10:44:31 +0800 Subject: [PATCH] =?UTF-8?q?=E6=89=93=E6=8B=9B=E5=91=BC=E5=8D=8F=E8=AE=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- proto/Gameapi.proto | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/proto/Gameapi.proto b/proto/Gameapi.proto index 0b5d29ca..4e61668e 100644 --- a/proto/Gameapi.proto +++ b/proto/Gameapi.proto @@ -1512,6 +1512,7 @@ message ResFriendLog{ message NotifyFriendLog{ ResFriendLog info = 1; FriendBubbleInfo Bubble = 2; // 气泡 + ResFriendReply Reply = 3; // 回复 } message FriendBubbleInfo{ @@ -1629,6 +1630,16 @@ message ResWishApply{ message ReqFriendTimeLine{} message ResFriendTimeLine{ repeated ResFriendLog Log = 1; + repeated ResFriendReply Reply = 2; +} + +message ResFriendReply{ + int32 Id = 1; // 回复id + int32 Type = 2; // 回复类型 1:点赞 2:评论 + string Param = 3; // 回复内容 + int32 Status = 4; // 状态 0:未处理 1:已处理 + int64 AddTime = 5; // 添加时间 + int64 EndTime = 6; // 结束时间 } message ResFriendBubble{