master_huanxiang
gaojie 2019-05-14 17:14:13 +08:00
parent b7be080011
commit 7254e72af6
2 changed files with 8 additions and 7 deletions

View File

@ -277,6 +277,12 @@ option optimize_for = SPEED;
repeated ArenaEnemy arenaEnemys = 5; //
}
message StoreItem{
optional int32 id = 1; // StoreConfig id
optional int32 buyNum = 2; //
}
message StoreInfo{
optional int32 id = 1;
optional int64 lastRefreshTime =2; //
@ -286,11 +292,6 @@ option optimize_for = SPEED;
repeated StoreItem storeItem = 6; //
}
message StoreItem{
optional int32 id = 1; // StoreConfig id
optional int32 buyNum = 2; //
}
message ArenaRecordInfo{
optional string id=1;//
optional ArenaPersonInfo attackInfo =2 ;//

View File

@ -167,7 +167,7 @@ import "CommonProto.proto";
}
message GetStoreInfosResponse{
repeated StoreInfo StoreInfo = 1; //
repeated StoreInfo storeInfo = 1; //
}
message BuyStoreItemRequest{
@ -185,5 +185,5 @@ import "CommonProto.proto";
optional int32 storeId = 2; //id
}
message StoreGoodsRefreshResponse{
optional StoreInfo StoreInfo = 1; //
optional StoreInfo storeInfo = 1; //
}