Merge branch 'master' of 60.1.1.230:backend/jieling_protocol

master_huanxiang
wangyuan 2019-05-16 14:37:13 +08:00
commit e6532f394e
2 changed files with 8 additions and 8 deletions

View File

@ -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 ;//

View File

@ -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; //
} }