幸运探宝

master_huanxiang
zhangshanxue 2019-09-25 15:54:49 +08:00
parent 58490572dd
commit 244ad16a51
3 changed files with 36 additions and 1 deletions

View File

@ -659,4 +659,9 @@ option optimize_for = SPEED;
optional int32 score = 8;
}
message LuckWheelRewardPosInfo{
optional int32 pos = 1;
optional int32 luckId = 2;//id
}

View File

@ -386,7 +386,9 @@ enum MessageType{
GET_QUESTION_REQUEST = 1666;//
GET_QUESTION_RESPONSE = 1667;
GET_LUCKWHEEL_RANDREWARD_REQUEST = 1668;//
GET_LUCKWHEEL_RANDREWARD_RESPONSE = 1669;//
// H 10700
HERO_RAND_REQQUEST = 10701;
HERO_RAND_RESPONSE = 10702;
@ -532,6 +534,9 @@ enum MessageType{
ROOM_LOGIN_REQEUST = 11740; //
ROOM_LOGIN_RESPONSE = 11750;
REFRESH_LUCKWHEEL_REQUEST = 11751;//
REFRESH_LUCKWHEEL_RESPONSE = 11752;
// S 11800
SUCCESS_RESPONSE = 11800; //

View File

@ -356,6 +356,8 @@ import "CommonProto.proto";
optional fiveResetTowerInfo fiveResetTowerInfo = 5;//
optional SignInInfo SignInInfo = 6;//
optional PlayerBindPhone playerBindPhone = 7;//
repeated LuckWheelRewardPosInfo posInfos = 8;//
repeated LuckWheelRewardPosInfo posInfosAdvance = 9;//
}
@ -551,4 +553,27 @@ import "CommonProto.proto";
optional int32 goodsId = 1; // id
optional Drop drop = 2; //
}
message RefreshLuckWheelRequest{
optional int32 activityId = 1;
optional bool isFree = 2;
}
message RefreshLuckWheelResponse{
repeated LuckWheelRewardPosInfo posInfos = 1;
}
message GetLuckWheelRandRewardRequest{
optional int32 activityId = 1;
optional bool repeated = 2;
}
message GetLuckWheelRandRewardResponse{
optional int32 activityId = 1;
optional int32 pos = 2;
optional Drop drop = 3;
}