Update Protocol

This commit is contained in:
wsycarlos 2026-04-05 00:36:40 +08:00
parent 9f41f46557
commit c0c888a6dd
5 changed files with 32 additions and 3 deletions

View File

@ -4,6 +4,4 @@ package Byway.Thrift.Data.Net;
option go_package = "../msg";
message ReqCatReturnGift{
}
message ReqCatReturnGift{}

View File

@ -0,0 +1,9 @@
syntax = "proto3";
package Byway.Thrift.Data.Net;
option go_package = "../msg";
message ReqCatReturnGiftScore{
int32 Score = 1;
}

View 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;
}

View File

@ -0,0 +1,4 @@
namespace * Byway.Thrift.Data.Net
struct ReqCatReturnGiftScore {
1: i32 Score,
}

View File

@ -0,0 +1,6 @@
namespace * Byway.Thrift.Data.Net
include "RES_CODE.thrift"
struct ResCatReturnGiftScore {
1: RES_CODE.RES_CODE Code,
2: string Msg,
}