master_huanxiang
gaojie 2019-06-06 17:22:03 +08:00
parent dd9651f8f7
commit 4ea63dbdbf
3 changed files with 30 additions and 0 deletions

View File

@ -359,3 +359,15 @@ option optimize_for = SPEED;
optional int32 hadTakeDailyBox = 4 ;// 1vip -1
}
message Friend {
optional int32 id = 1;//id
optional string name=2;//
optional int32 lv=3;//
optional uint64 offLineTime=4;//线 0线
optional int32 haveReward=5;//
optional int32 haveFriendPoint = 6; //
optional string head = 12; //
optional string frame = 13; //
optional int32 soulVal = 14; //
}

View File

@ -61,6 +61,9 @@ enum MessageType{
ADVENTURE_BOSS_FIND_INDICATION = 10044; //boss
ADD_FRIEND_REQUEST = 10045; //
ADD_FRIEND_RESPONSE = 10046;
// B 10100
BUY_STORE_ITEM_REQUEST = 10100; //
BUY_STORE_ITEM_RESPONSE = 10101;
@ -141,6 +144,10 @@ enum MessageType{
GET_CHAT_MESSAGE_REQUEST = 16636; //
GET_CHAT_MESSAGE_REPONSE = 16637;
GET_FRIEND_INFO_REQUEST = 16638; //
GET_FRIEND_INFO_REPONSE = 16639;
// H 10700
HERO_RAND_REQQUEST = 10701;
HERO_RAND_RESPONSE = 10702;

View File

@ -238,6 +238,17 @@ import "CommonProto.proto";
repeated UserMissionInfo UserMissionInfo =1;//
}
message GetFriendInfoRequest{
optional int32 type = 1; //1:, 2: 3:
}
message GetFriendInfoResponse{
repeated Friend Friends =1; //
}