协议提交

master_huanxiang
lvxinran 2019-07-25 19:09:54 +08:00
parent 87f93324d6
commit 34c93b9b68
3 changed files with 8 additions and 1 deletions

View File

@ -63,6 +63,7 @@ option optimize_for = SPEED;
optional int32 rebuildLevel = 5; //
optional int32 createTime = 6;//
optional int32 skillId = 7;//
optional int32 isLocked = 8; // 1 0:
}

View File

@ -123,6 +123,8 @@ enum MessageType{
EVENT_UPDATE_REQUEST = 10406; //
EVENT_UPDATE_RESPONSE = 10407;
EQUIP_LOCK_REQUEST = 10408; //
EQUIP_LOCK_RESPONSE = 10409;
// F 10500
FIGHT_START_REQUEST = 10500; //
FIGHT_START_RESPONSE = 10501;

View File

@ -401,5 +401,9 @@ import "CommonProto.proto";
message storeUpdateIndication{
repeated StoreInfo storeInfo =1;
}
//
message LockEquip{
repeated string id = 1;
optional int32 type = 2;//1 2
}