Merge branch 'master' of 60.1.1.230:backend/jieling_protocol

master_huanxiang
wangyuan 2019-12-12 13:35:22 +08:00
commit 9929a07d50
3 changed files with 14 additions and 3 deletions

View File

@ -378,8 +378,7 @@ option optimize_for = SPEED;
message VipBaseInfo{
optional int32 vipLevel =1; //vip
optional int32 hadTakeLevelBox = 2 ;// 1 0
optional int32 hadTakeDailyBox = 3 ;// 1vip -1
optional int32 hadTakeLevelBox = 2 ;// 1 0
}
message Friend {

View File

@ -692,6 +692,7 @@ enum MessageType{
TREASURE_REFRESH_INDICATION = 11916;//
TREASURE_LEVELUP_INDICATION = 11917;//
// U 12000
UP_HERO_LEVEL_REQUEST = 12000; //
@ -737,6 +738,9 @@ enum MessageType{
VIEW_HERO_INFO_REQUEST = 12106; //
VIEW_HERO_INFO_RESPONSE = 12107;
VIP_TAKE_DAILY_REQUEST = 12108; //vip
VIP_TAKE_DAILY_RESPONSE = 12109;
// W 12200
WORKSHOP_FOUNDATION_REQUEST = 12200; //
WORKSHOP_FOUNDATION_RESPONSE = 12201;

View File

@ -43,7 +43,7 @@ import "CommonProto.proto";
repeated GiftGoodsInfo giftGoodsInfo =4;
repeated int32 buyGoodsId = 5;
optional SuddenlyBossInfo SuddenlyBossInfo = 6;//
optional VipBaseInfo vipBaseInfo = 7;
repeated int32 vipLeveTake = 7;
optional int32 userCreateTime = 8; //
repeated int32 redType = 9;//
optional int32 randCount = 10;//
@ -63,6 +63,7 @@ import "CommonProto.proto";
optional int32 SoulEquipPool = 24;//
repeated int32 playedMapTypes = 25;//
optional int32 amount = 26;//
optional int32 vipDaily = 27;// 0 >0vip
}
@ -649,4 +650,11 @@ import "CommonProto.proto";
message RefreshRechargeIndication{
optional int32 amount = 1;//
}
message VipTakeDilyRequest{
}
message VipTakeDilyResponse{
optional Drop drop =1;
}