From 236504ee2c3bcefb8c118a25c75c005d08f94c13 Mon Sep 17 00:00:00 2001 From: lvxinran Date: Thu, 9 Jan 2020 14:52:20 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E7=82=B9=E8=B5=9E=E5=8D=8F=E8=AE=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/Family.proto | 6 ++++++ protos/MessageTypeProto.proto | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/protos/Family.proto b/protos/Family.proto index 70141ed..35bb146 100644 --- a/protos/Family.proto +++ b/protos/Family.proto @@ -336,4 +336,10 @@ import "CommonProto.proto"; optional string sendName = 3; optional int32 head = 4; optional int32 headFrame = 5; + } + message RedPackageLikeRequest{ + optional int32 uid = 1; + } + message GetAllSendLikeResponse{ + repeated int32 uid = 1; } \ No newline at end of file diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index 3ef9680..3ef04da 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -454,6 +454,12 @@ enum MessageType{ J_GET_REDPACKAGE_DETAIL_REQUEST = 10907;//查看红包详情 J_GET_REDPACKAGE_DETAIL_RESPONSE = 10908; + + J_REDPACKAGE_SEND_LIKE_REQUEST = 10910;//红包榜点赞 + J_REDPACKAGE_SEND_LIKE_REQUEST = 10911; + + J_GET_ALL_SEND_LIKE_REQUEST = 10912;//获取今天点赞过的 + J_GET_ALL_SEND_LIKE_RESPONSE = 10913; // K 11000 // L 11100 From 9d1bfd3fb9684ed2d895917e8197bbec2eb9a67c Mon Sep 17 00:00:00 2001 From: lvxinran Date: Thu, 9 Jan 2020 14:56:35 +0800 Subject: [PATCH 2/3] =?UTF-8?q?=E7=82=B9=E8=B5=9E=E5=8D=8F=E8=AE=AE?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/MessageTypeProto.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index 70085f1..8c8b2c2 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -456,7 +456,7 @@ enum MessageType{ J_GET_REDPACKAGE_DETAIL_RESPONSE = 10908; J_REDPACKAGE_SEND_LIKE_REQUEST = 10910;//红包榜点赞 - J_REDPACKAGE_SEND_LIKE_REQUEST = 10911; + J_REDPACKAGE_SEND_LIKE_RESPONSE = 10911; J_GET_ALL_SEND_LIKE_REQUEST = 10912;//获取今天点赞过的 J_GET_ALL_SEND_LIKE_RESPONSE = 10913; From 1ff66688f3c005841217ae4e372474357ae46206 Mon Sep 17 00:00:00 2001 From: zhangshanxue Date: Thu, 9 Jan 2020 15:00:48 +0800 Subject: [PATCH 3/3] =?UTF-8?q?TASK=E3=80=90ID1005460=E3=80=91=E3=80=90?= =?UTF-8?q?=E7=8E=A9=E6=B3=95=E9=9C=80=E6=B1=82=E3=80=91=E7=8C=8E=E5=A6=96?= =?UTF-8?q?=E4=B9=8B=E8=B7=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/CommonProto.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/protos/CommonProto.proto b/protos/CommonProto.proto index cbaa83d..0cf5dda 100644 --- a/protos/CommonProto.proto +++ b/protos/CommonProto.proto @@ -748,7 +748,7 @@ option optimize_for = SPEED; optional int32 heroTid = 1;//英雄模板id optional int32 star = 2; optional int32 level =3; - optional int32 remainHp =4;//剩余血量 + optional double remainHp =4;//剩余血量 } message ExpeditionTeamInfo{ @@ -759,6 +759,6 @@ option optimize_for = SPEED; message ExpeditionSimpleHeroInfo{ optional string heroId = 1;//英雄id - optional int32 remainHp =2;//剩余血量 + optional double remainHp =2;//剩余血量 } \ No newline at end of file