手机绑定

master_huanxiang
zhangshanxue 2019-08-30 11:36:07 +08:00
parent c2e67f9668
commit ea06554658
3 changed files with 27 additions and 1 deletions

View File

@ -591,4 +591,8 @@ option optimize_for = SPEED;
message EndlessInfo{
optional int32 mapId = 1;
optional int32 worldLevel = 2;
}
message PlayerBindPhone{
optional string phoneNum = 1;
optional int32 state = 2;// 0 1 2
}

View File

@ -351,6 +351,10 @@ enum MessageType{
GET_MONSTER_RANK_INFO_REQUEST = 16652;//
GET_MONSTER_RANK_INFO_RESPONSE = 1663;
GET_PHONE_REWARD_REQUEST = 1664;//
GET_PHONE_REWARD_RESPONSE = 1665;
// H 10700
HERO_RAND_REQQUEST = 10701;
@ -582,6 +586,9 @@ enum MessageType{
UPDATE_USER_EXP_INDICATION = 12011 ; //
UPDATE_SECRET_BOX_SEASON_INDICATION = 12012; //
UPDATE_PHONE_INFO_REQUEST = 12013; //
UPDATE_PHONE_INFO_RESPONSE = 12014;
// V 12100
VIEW_FIGHTREPLAY_REQUEST = 12100; //

View File

@ -58,6 +58,7 @@ import "CommonProto.proto";
optional int32 monsterAttackTime = 19;//
optional int32 isDayFirst = 20;//0
optional EndlessInfo endInfo = 21;//
optional PlayerBindPhone playerBindPhone = 22;//
}
@ -352,6 +353,7 @@ import "CommonProto.proto";
repeated UserMissionInfo userMissionInfo =4;//( )
optional fiveResetTowerInfo fiveResetTowerInfo = 5;//
optional SignInInfo SignInInfo = 6;//
optional PlayerBindPhone playerBindPhone = 7;//
}
message GetMissionResponse{
@ -492,4 +494,17 @@ import "CommonProto.proto";
message PlayerBackCInfoIndication{
optional string nickName = 1;
}
message UpdatePhoneinfoRequest{
optional string phoneNum = 1;
}
message UpdatePhoneinfoResponse{
optional int32 state = 1;// 0 1 2
}
message GetPhoneRewardRequest{
}
message GetPhoneRewardResponse{
optional Drop drop =1 ;
}