Update Protocol
This commit is contained in:
parent
9f41f46557
commit
c0c888a6dd
@ -4,6 +4,4 @@ package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message ReqCatReturnGift{
|
||||
|
||||
}
|
||||
message ReqCatReturnGift{}
|
||||
|
||||
9
original_split_proto_files/ReqCatReturnGiftScore.proto
Normal file
9
original_split_proto_files/ReqCatReturnGiftScore.proto
Normal file
@ -0,0 +1,9 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message ReqCatReturnGiftScore{
|
||||
int32 Score = 1;
|
||||
}
|
||||
12
original_split_proto_files/ResCatReturnGiftScore.proto
Normal file
12
original_split_proto_files/ResCatReturnGiftScore.proto
Normal file
@ -0,0 +1,12 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
import "RES_CODE.proto";
|
||||
|
||||
message ResCatReturnGiftScore{
|
||||
RES_CODE Code = 1;
|
||||
string Msg = 2;
|
||||
}
|
||||
@ -0,0 +1,4 @@
|
||||
namespace * Byway.Thrift.Data.Net
|
||||
struct ReqCatReturnGiftScore {
|
||||
1: i32 Score,
|
||||
}
|
||||
@ -0,0 +1,6 @@
|
||||
namespace * Byway.Thrift.Data.Net
|
||||
include "RES_CODE.thrift"
|
||||
struct ResCatReturnGiftScore {
|
||||
1: RES_CODE.RES_CODE Code,
|
||||
2: string Msg,
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user