Merge branch 'master' of 60.1.1.230:backend/jieling_protocol
commit
e6532f394e
|
@ -275,6 +275,12 @@ option optimize_for = SPEED;
|
||||||
repeated ArenaEnemy arenaEnemys = 5; //对手信息
|
repeated ArenaEnemy arenaEnemys = 5; //对手信息
|
||||||
}
|
}
|
||||||
|
|
||||||
|
message StoreItem{
|
||||||
|
optional int32 id = 1; // StoreConfig id
|
||||||
|
optional int32 buyNum = 2; //购买次数
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
message StoreInfo{
|
message StoreInfo{
|
||||||
optional int32 id = 1;
|
optional int32 id = 1;
|
||||||
optional int64 lastRefreshTime =2; //上次刷新时间
|
optional int64 lastRefreshTime =2; //上次刷新时间
|
||||||
|
@ -284,11 +290,6 @@ option optimize_for = SPEED;
|
||||||
repeated StoreItem storeItem = 6; //商店物品
|
repeated StoreItem storeItem = 6; //商店物品
|
||||||
}
|
}
|
||||||
|
|
||||||
message StoreItem{
|
|
||||||
optional int32 id = 1; // StoreConfig id
|
|
||||||
optional int32 buyNum = 2; //购买次数
|
|
||||||
}
|
|
||||||
|
|
||||||
message ArenaRecordInfo{
|
message ArenaRecordInfo{
|
||||||
optional string id=1;//唯一标识
|
optional string id=1;//唯一标识
|
||||||
optional ArenaPersonInfo attackInfo =2 ;// 进攻者信息
|
optional ArenaPersonInfo attackInfo =2 ;// 进攻者信息
|
||||||
|
|
|
@ -168,8 +168,7 @@ import "CommonProto.proto";
|
||||||
}
|
}
|
||||||
|
|
||||||
message GetStoreInfosResponse{
|
message GetStoreInfosResponse{
|
||||||
repeated StoreInfo StoreInfo = 1; //商店信息
|
repeated StoreInfo storeInfo = 1; //商店信息
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
message BuyStoreItemRequest{
|
message BuyStoreItemRequest{
|
||||||
|
@ -188,7 +187,7 @@ import "CommonProto.proto";
|
||||||
}
|
}
|
||||||
|
|
||||||
message StoreGoodsRefreshResponse{
|
message StoreGoodsRefreshResponse{
|
||||||
optional StoreInfo StoreInfo = 1; //商店信息
|
optional StoreInfo storeInfo = 1; //商店信息
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue