解析成功,待继续发掘有用数据

This commit is contained in:
2019-12-31 11:27:56 +08:00
parent a14d1361bb
commit 0e37230f69
8 changed files with 1302 additions and 91 deletions

10
Demo/XiguaGift.proto Normal file
View File

@ -0,0 +1,10 @@
syntax = "proto2";
// 礼物
message Gift {
message Detail {
required string gift_id = 1;
required string gift_name = 2;
}
required int32 id = 1;
required Detail gift = 2;
}