16 lines
256 B
Protocol Buffer
16 lines
256 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package Byway.Thrift.Data.Net;
|
|
|
|
option go_package = "../msg";
|
|
|
|
message ClientReq{
|
|
string func = 1;
|
|
string cid = 2;
|
|
bytes info = 3;
|
|
string sessionId = 4;
|
|
string gatewayId = 5;
|
|
string userId = 6;
|
|
string userBase = 7;
|
|
}
|