Add Current Original Proto Files
This commit is contained in:
parent
78003d1eb3
commit
be734269d6
14
original_split_proto_files/ACTIVITY_TYPE.proto
Normal file
14
original_split_proto_files/ACTIVITY_TYPE.proto
Normal file
@ -0,0 +1,14 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
enum ACTIVITY_TYPE {
|
||||
ACTIVITY_TYPE_DEFAULT = 0;
|
||||
ACT_TYPE_MINING = 1;
|
||||
ACT_TYPE_GUESS_COLOR = 2;
|
||||
ACT_TYPE_RACE = 3;
|
||||
ACT_TYPE_DISCOUNT_GIFT = 4;
|
||||
ACT_TYPE_ADD_GIFT = 5;
|
||||
}
|
||||
11
original_split_proto_files/ActLog.proto
Normal file
11
original_split_proto_files/ActLog.proto
Normal file
@ -0,0 +1,11 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message ActLog {
|
||||
int32 Type = 1;
|
||||
int64 Time = 2;
|
||||
string Param = 3;
|
||||
}
|
||||
32
original_split_proto_files/ActLogType.proto
Normal file
32
original_split_proto_files/ActLogType.proto
Normal file
@ -0,0 +1,32 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
enum ActLogType {
|
||||
ACT_LOG_TYPE_NONE = 0;
|
||||
ACT_LOG_TYPE_FIRST_LOGIN = 1;
|
||||
ACT_LOG_TYPE_COMPLETE_RESTROOM = 2;
|
||||
ACT_LOG_TYPE_COMPLETE_RESTAURANT = 3;
|
||||
ACT_LOG_TYPE_COMPLETE_BATHROOM = 4;
|
||||
ACT_LOG_TYPE_COMPLETE_CLOAKROOM = 5;
|
||||
ACT_LOG_TYPE_GET_NEW_AVATAR = 6;
|
||||
ACT_LOG_TYPE_GET_NEW_AVATAR_FRAME = 7;
|
||||
ACT_LOG_TYPE_GET_NEW_EMOTION = 8;
|
||||
ACT_LOG_TYPE_GET_NEW_DECORATION = 9;
|
||||
ACT_LOG_TYPE_GET_NEW_COSTUME = 10;
|
||||
ACT_LOG_TYPE_COMPLETE_CARD_ALBUM = 11;
|
||||
ACT_LOG_TYPE_COMPLETE_ALL_CARDS = 12;
|
||||
ACT_LOG_TYPE_GET_CHAMPIONSHIP_RANK = 13;
|
||||
ACT_LOG_TYPE_GET_CHAMPIONSHIP_PRIZE = 14;
|
||||
ACT_LOG_TYPE_GET_LIMITED_ACTIVITY_PRIZE = 15;
|
||||
ACT_LOG_TYPE_JOIN_FRIEND_COOP_ACTIVITY = 16;
|
||||
ACT_LOG_TYPE_GET_VISIT_GAME_PRIZE = 17;
|
||||
ACT_LOG_TYPE_GET_VISIT_GAME_PRIZE_1 = 18;
|
||||
ACT_LOG_TYPE_OPEN_PET_TREASURE = 19;
|
||||
ACT_LOG_TYPE_VISIT_UPVOTE = 20;
|
||||
ACT_LOG_TYPE_COMPLETE_HANDBOOK_ACHIEVEMENT = 21;
|
||||
ACT_LOG_TYPE_COMPLETE_CHAPTER_SCENES = 22;
|
||||
ACT_LOG_TYPE_LOST_USER_RETURN = 23;
|
||||
}
|
||||
15
original_split_proto_files/ActivityInfo.proto
Normal file
15
original_split_proto_files/ActivityInfo.proto
Normal file
@ -0,0 +1,15 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message ActivityInfo{
|
||||
int32 Id = 1;
|
||||
int32 Type = 2;
|
||||
int32 StartTime = 3;
|
||||
int32 EndTime = 4;
|
||||
int32 Status = 5;
|
||||
string Title = 6;
|
||||
int32 Red = 7;
|
||||
}
|
||||
11
original_split_proto_files/ActivityNotify.proto
Normal file
11
original_split_proto_files/ActivityNotify.proto
Normal file
@ -0,0 +1,11 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
import "ActivityInfo.proto";
|
||||
|
||||
message ActivityNotify {
|
||||
ActivityInfo Info = 1;
|
||||
}
|
||||
11
original_split_proto_files/AdItem.proto
Normal file
11
original_split_proto_files/AdItem.proto
Normal file
@ -0,0 +1,11 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message AdItem {
|
||||
int32 Watch = 1;
|
||||
int32 LastWatch = 2;
|
||||
int32 ItemId = 3;
|
||||
}
|
||||
10
original_split_proto_files/AdminReq.proto
Normal file
10
original_split_proto_files/AdminReq.proto
Normal file
@ -0,0 +1,10 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message AdminReq{
|
||||
string Func = 1;
|
||||
bytes Info = 2;
|
||||
}
|
||||
10
original_split_proto_files/AdminRes.proto
Normal file
10
original_split_proto_files/AdminRes.proto
Normal file
@ -0,0 +1,10 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message AdminRes{
|
||||
string Func = 1;
|
||||
bytes Info = 2;
|
||||
}
|
||||
11
original_split_proto_files/AvatarInfo.proto
Normal file
11
original_split_proto_files/AvatarInfo.proto
Normal file
@ -0,0 +1,11 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message AvatarInfo{
|
||||
int32 Id = 1;
|
||||
int64 EndTime = 2;
|
||||
int64 AddTime = 3;
|
||||
}
|
||||
15
original_split_proto_files/BaseInfo.proto
Normal file
15
original_split_proto_files/BaseInfo.proto
Normal file
@ -0,0 +1,15 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
import "LANG_TYPE.proto";
|
||||
|
||||
message BaseInfo {
|
||||
int32 EnergyMul = 1;
|
||||
bool IsFirstBuy = 2;
|
||||
int32 EnergyBuy = 3;
|
||||
int32 EnergyAD = 4;
|
||||
LANG_TYPE Lang = 5;
|
||||
}
|
||||
14
original_split_proto_files/CHESS_EX_TYPE.proto
Normal file
14
original_split_proto_files/CHESS_EX_TYPE.proto
Normal file
@ -0,0 +1,14 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
enum CHESS_EX_TYPE {
|
||||
CHESS_EX_NONE = 0;
|
||||
CHESS_EX_BUBBLE = 1;
|
||||
CHESS_EX_BOX = 2;
|
||||
CHESS_EX_QUICK_BUY = 3;
|
||||
CHESS_EX_EVENT = 4;
|
||||
CHESS_EX_EVENT_LITTLE_APPRENTICE = 5;
|
||||
}
|
||||
10
original_split_proto_files/Card.proto
Normal file
10
original_split_proto_files/Card.proto
Normal file
@ -0,0 +1,10 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message Card {
|
||||
int32 Id = 1;
|
||||
int32 Count = 2;
|
||||
}
|
||||
10
original_split_proto_files/CardPack.proto
Normal file
10
original_split_proto_files/CardPack.proto
Normal file
@ -0,0 +1,10 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message CardPack{
|
||||
int32 Id = 1;
|
||||
repeated int32 Card = 2;
|
||||
}
|
||||
18
original_split_proto_files/CatnipGame.proto
Normal file
18
original_split_proto_files/CatnipGame.proto
Normal file
@ -0,0 +1,18 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
import "ResPlayerSimple.proto";
|
||||
|
||||
message CatnipGame{
|
||||
int32 Id = 1;
|
||||
int32 Status = 2;
|
||||
int32 Progress = 3;
|
||||
repeated int32 Reward = 4;
|
||||
ResPlayerSimple Partner = 5;
|
||||
int32 Emoji = 6;
|
||||
int32 SendEmoji = 7;
|
||||
int32 FriendProgress = 8;
|
||||
}
|
||||
14
original_split_proto_files/CatnipInvite.proto
Normal file
14
original_split_proto_files/CatnipInvite.proto
Normal file
@ -0,0 +1,14 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
import "ResPlayerSimple.proto";
|
||||
|
||||
message CatnipInvite{
|
||||
int64 Uid = 1;
|
||||
int64 Time = 2;
|
||||
int32 Type = 3;
|
||||
ResPlayerSimple Player = 4;
|
||||
}
|
||||
13
original_split_proto_files/ChessBag.proto
Normal file
13
original_split_proto_files/ChessBag.proto
Normal file
@ -0,0 +1,13 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
import "ChessBagGrid.proto";
|
||||
|
||||
message ChessBag{
|
||||
repeated ChessBagGrid ChessBagGrids = 1;
|
||||
int32 ChessBuyCnt = 2;
|
||||
int32 ChessFreeCnt = 3;
|
||||
}
|
||||
11
original_split_proto_files/ChessBagGrid.proto
Normal file
11
original_split_proto_files/ChessBagGrid.proto
Normal file
@ -0,0 +1,11 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message ChessBagGrid{
|
||||
int32 Id = 1;
|
||||
int32 ChessId = 2;
|
||||
int32 EmitId = 3;
|
||||
}
|
||||
15
original_split_proto_files/ChessHandle.proto
Normal file
15
original_split_proto_files/ChessHandle.proto
Normal file
@ -0,0 +1,15 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
import "HANDLE_TYPE.proto";
|
||||
|
||||
message ChessHandle{
|
||||
HANDLE_TYPE type = 1;
|
||||
int32 Emit = 2;
|
||||
int32 ChessId = 3;
|
||||
int32 Id = 4;
|
||||
repeated int32 ActType = 5;
|
||||
}
|
||||
10
original_split_proto_files/ChipInfo.proto
Normal file
10
original_split_proto_files/ChipInfo.proto
Normal file
@ -0,0 +1,10 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message ChipInfo {
|
||||
int64 Uid = 1;
|
||||
int32 EmojiId = 2;
|
||||
}
|
||||
15
original_split_proto_files/ClientReq.proto
Normal file
15
original_split_proto_files/ClientReq.proto
Normal file
@ -0,0 +1,15 @@
|
||||
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;
|
||||
}
|
||||
11
original_split_proto_files/ClientRes.proto
Normal file
11
original_split_proto_files/ClientRes.proto
Normal file
@ -0,0 +1,11 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message ClientRes{
|
||||
string func = 1;
|
||||
string cid = 2;
|
||||
bytes info = 3;
|
||||
}
|
||||
12
original_split_proto_files/CollectItem.proto
Normal file
12
original_split_proto_files/CollectItem.proto
Normal file
@ -0,0 +1,12 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
import "ItemInfo.proto";
|
||||
|
||||
message CollectItem{
|
||||
int32 Id = 1;
|
||||
repeated ItemInfo Items = 2;
|
||||
}
|
||||
17
original_split_proto_files/DailyTask.proto
Normal file
17
original_split_proto_files/DailyTask.proto
Normal file
@ -0,0 +1,17 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
import "ItemInfo.proto";
|
||||
import "QuestProgress.proto";
|
||||
|
||||
message DailyTask{
|
||||
int32 Status = 1;
|
||||
bool UnLock = 2;
|
||||
QuestProgress Progress = 3;
|
||||
repeated ItemInfo Items = 4;
|
||||
int32 Id = 5;
|
||||
int32 Index = 6;
|
||||
}
|
||||
13
original_split_proto_files/DailyWeek.proto
Normal file
13
original_split_proto_files/DailyWeek.proto
Normal file
@ -0,0 +1,13 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
import "ItemInfo.proto";
|
||||
|
||||
message DailyWeek{
|
||||
repeated ItemInfo Items = 1;
|
||||
bool Status = 2;
|
||||
int32 NeedActive = 3;
|
||||
}
|
||||
12
original_split_proto_files/DecoratePart.proto
Normal file
12
original_split_proto_files/DecoratePart.proto
Normal file
@ -0,0 +1,12 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
import "ItemInfo.proto";
|
||||
|
||||
message DecoratePart{
|
||||
int32 Id = 1;
|
||||
repeated ItemInfo Items = 2;
|
||||
}
|
||||
11
original_split_proto_files/EmojiInfo.proto
Normal file
11
original_split_proto_files/EmojiInfo.proto
Normal file
@ -0,0 +1,11 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message EmojiInfo{
|
||||
int32 Id = 1;
|
||||
int64 EndTime = 2;
|
||||
int64 AddTime = 3;
|
||||
}
|
||||
@ -0,0 +1,10 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
enum FRIEND_REPLY_HANDLE_ERR_TYPE{
|
||||
NONE = 0;
|
||||
CATNIP = 1;
|
||||
}
|
||||
13
original_split_proto_files/FRIEND_REPLY_TYPE.proto
Normal file
13
original_split_proto_files/FRIEND_REPLY_TYPE.proto
Normal file
@ -0,0 +1,13 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
enum FRIEND_REPLY_TYPE {
|
||||
FRIEND_REPLY_TYPE_NONE = 0;
|
||||
FRIEND_REPLY_TYPE_GREET = 1;
|
||||
FRIEND_REPLY_TYPE_RETURN_GREET = 2;
|
||||
REPLY_TYPE_CATNIP = 3;
|
||||
REPLY_TYPE_CATNIP_ITEMS = 4;
|
||||
}
|
||||
11
original_split_proto_files/FaceInfo.proto
Normal file
11
original_split_proto_files/FaceInfo.proto
Normal file
@ -0,0 +1,11 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message FaceInfo{
|
||||
int32 Id = 1;
|
||||
int64 EndTime = 2;
|
||||
int64 AddTime = 3;
|
||||
}
|
||||
9
original_split_proto_files/ForceKickOut.proto
Normal file
9
original_split_proto_files/ForceKickOut.proto
Normal file
@ -0,0 +1,9 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message ForceKickOut{
|
||||
|
||||
}
|
||||
13
original_split_proto_files/FriendBubbleInfo.proto
Normal file
13
original_split_proto_files/FriendBubbleInfo.proto
Normal file
@ -0,0 +1,13 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
import "ItemInfo.proto";
|
||||
|
||||
message FriendBubbleInfo{
|
||||
int32 Id = 1;
|
||||
int32 Type = 2;
|
||||
repeated ItemInfo Items = 3;
|
||||
}
|
||||
13
original_split_proto_files/FriendRoom.proto
Normal file
13
original_split_proto_files/FriendRoom.proto
Normal file
@ -0,0 +1,13 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message FriendRoom{
|
||||
int64 Uid = 1;
|
||||
string Name = 2;
|
||||
int32 Face = 3;
|
||||
int32 Avatar = 4;
|
||||
int32 Times = 5;
|
||||
}
|
||||
9
original_split_proto_files/GuessColorInfo.proto
Normal file
9
original_split_proto_files/GuessColorInfo.proto
Normal file
@ -0,0 +1,9 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message GuessColorInfo{
|
||||
map<int32, int32> Map = 1;
|
||||
}
|
||||
13
original_split_proto_files/GuideTask.proto
Normal file
13
original_split_proto_files/GuideTask.proto
Normal file
@ -0,0 +1,13 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
import "QuestProgress.proto";
|
||||
|
||||
message GuideTask{
|
||||
int32 Status = 1;
|
||||
QuestProgress Progress = 2;
|
||||
int32 Id = 3;
|
||||
}
|
||||
13
original_split_proto_files/HANDLE_TYPE.proto
Normal file
13
original_split_proto_files/HANDLE_TYPE.proto
Normal file
@ -0,0 +1,13 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
enum HANDLE_TYPE {
|
||||
ADD = 0;
|
||||
COMPOSE = 1;
|
||||
BUY = 2;
|
||||
SELL = 3;
|
||||
REMOVE = 4;
|
||||
}
|
||||
12
original_split_proto_files/Handbook.proto
Normal file
12
original_split_proto_files/Handbook.proto
Normal file
@ -0,0 +1,12 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
import "HandbookInfo.proto";
|
||||
|
||||
message Handbook {
|
||||
repeated HandbookInfo Handbooks = 1;
|
||||
repeated string Collect = 2;
|
||||
}
|
||||
10
original_split_proto_files/HandbookInfo.proto
Normal file
10
original_split_proto_files/HandbookInfo.proto
Normal file
@ -0,0 +1,10 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message HandbookInfo {
|
||||
int32 ChessId = 1;
|
||||
int32 Status = 2;
|
||||
}
|
||||
87
original_split_proto_files/ITEM_POP_LABEL.proto
Normal file
87
original_split_proto_files/ITEM_POP_LABEL.proto
Normal file
@ -0,0 +1,87 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
enum ITEM_POP_LABEL {
|
||||
Playroom = 0;
|
||||
PiggyBank = 1;
|
||||
Charge = 2;
|
||||
Endless = 3;
|
||||
LevUpReward = 4;
|
||||
HandleChess = 5;
|
||||
HandbookReward = 6;
|
||||
OrderReward = 7;
|
||||
DecorateCost = 8;
|
||||
DecorateAdd = 9;
|
||||
BuyChessBagGrid = 10;
|
||||
ChessEx = 11;
|
||||
CardCollectReward = 12;
|
||||
ExStarReward = 13;
|
||||
AllCollectReward = 14;
|
||||
GuideReward = 15;
|
||||
DailyTaskReward = 16;
|
||||
DailyWeekReward = 17;
|
||||
BuyEnergy = 18;
|
||||
SevenLoginRewardLabel = 19;
|
||||
MonthLoginReward = 20;
|
||||
FastProduceReward = 21;
|
||||
LimitSenceReward = 22;
|
||||
MailReward = 23;
|
||||
FreeShop = 24;
|
||||
ChessShop = 25;
|
||||
RefreshChessShop = 26;
|
||||
EndlessReward = 27;
|
||||
PiggyBankReward = 28;
|
||||
ChampshipReward = 29;
|
||||
LimitEventReward = 30;
|
||||
ChampshipRankReward = 31;
|
||||
invite = 32;
|
||||
SelectLimitEvent = 33;
|
||||
MiningTake = 34;
|
||||
MiningReward = 35;
|
||||
GuessColor = 36;
|
||||
GuessColorReward = 37;
|
||||
RaceReward = 38;
|
||||
PlayroomGame = 39;
|
||||
PlayroomDraw = 40;
|
||||
PlayroomChip = 41;
|
||||
PlayroomFlip = 42;
|
||||
FriendtreasureFilp = 43;
|
||||
FriendtreasureEnd = 44;
|
||||
GM = 45;
|
||||
Friendtreasure = 46;
|
||||
CardHandbookReward = 47;
|
||||
LimitEventChestRain = 48;
|
||||
GetEnergyByAD = 49;
|
||||
SourceChest = 50;
|
||||
PlayroomBuyItem = 51;
|
||||
CardSeasonFirstReward = 52;
|
||||
AllCollectRewardHB = 53;
|
||||
PlayroomShop = 54;
|
||||
HandbookAllReward = 55;
|
||||
TLUpvote = 56;
|
||||
Collect = 57;
|
||||
ActivityGift = 58;
|
||||
ActivityReward = 59;
|
||||
CatTrickReward = 60;
|
||||
AddWish = 61;
|
||||
GetWish = 62;
|
||||
PlayroomTask = 63;
|
||||
PlayroomTaskReward = 64;
|
||||
PlayroomUpvote = 65;
|
||||
DecorateReward = 66;
|
||||
CatnipReward = 67;
|
||||
CatnipGrandReward = 68;
|
||||
CatnipPlay = 69;
|
||||
FriendTReward = 70;
|
||||
PetTheif = 71;
|
||||
GuideTaskReward = 72;
|
||||
GuideActiveReward = 73;
|
||||
PassCharge = 74;
|
||||
ActPassReward = 75;
|
||||
FriendReplyHandle = 76;
|
||||
GetChessRetireReward = 77;
|
||||
ApplyFriendSponsor = 78;
|
||||
}
|
||||
11
original_split_proto_files/ITEM_TYPE.proto
Normal file
11
original_split_proto_files/ITEM_TYPE.proto
Normal file
@ -0,0 +1,11 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
enum ITEM_TYPE {
|
||||
ENERGY = 0;
|
||||
STAR = 1;
|
||||
DIAMOND = 2;
|
||||
}
|
||||
10
original_split_proto_files/ItemInfo.proto
Normal file
10
original_split_proto_files/ItemInfo.proto
Normal file
@ -0,0 +1,10 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message ItemInfo{
|
||||
int32 Id = 1;
|
||||
int32 Num = 2;
|
||||
}
|
||||
9
original_split_proto_files/ItemNotify.proto
Normal file
9
original_split_proto_files/ItemNotify.proto
Normal file
@ -0,0 +1,9 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message ItemNotify{
|
||||
map<int32, int32> Item = 1;
|
||||
}
|
||||
11
original_split_proto_files/LANG_TYPE.proto
Normal file
11
original_split_proto_files/LANG_TYPE.proto
Normal file
@ -0,0 +1,11 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
enum LANG_TYPE {
|
||||
LANG_CN = 0;
|
||||
LANG_EN = 1;
|
||||
LANG_PTBR = 2;
|
||||
}
|
||||
12
original_split_proto_files/LOGIN_TYPE.proto
Normal file
12
original_split_proto_files/LOGIN_TYPE.proto
Normal file
@ -0,0 +1,12 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
enum LOGIN_TYPE {
|
||||
ACCOUNT_LOGIN = 0;
|
||||
CODE_LOGIN = 1;
|
||||
DEVICE_LOGIN = 2;
|
||||
SDK_LOGIN = 3;
|
||||
}
|
||||
14
original_split_proto_files/LimitEvent.proto
Normal file
14
original_split_proto_files/LimitEvent.proto
Normal file
@ -0,0 +1,14 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message LimitEvent {
|
||||
int32 EndTime = 1;
|
||||
int32 Cd = 2;
|
||||
float mul = 3;
|
||||
int32 StartTime = 4;
|
||||
map<string, int32> Param = 5;
|
||||
int32 ShowTime = 6;
|
||||
}
|
||||
12
original_split_proto_files/LimitEventNotify.proto
Normal file
12
original_split_proto_files/LimitEventNotify.proto
Normal file
@ -0,0 +1,12 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message LimitEventNotify {
|
||||
int32 Id = 1;
|
||||
int32 Type = 2;
|
||||
int32 EndTime = 3;
|
||||
int32 Cd = 4;
|
||||
}
|
||||
13
original_split_proto_files/LimitEventParam.proto
Normal file
13
original_split_proto_files/LimitEventParam.proto
Normal file
@ -0,0 +1,13 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
enum LimitEventParam{
|
||||
LEP_NONE = 0;
|
||||
CAT_TRICK_ENERGY = 1;
|
||||
CAT_TRICK_TYPE = 2;
|
||||
PAYBACK_DAY_COUNT = 3;
|
||||
LUCKY_CAT_EARNINGS = 4;
|
||||
}
|
||||
10
original_split_proto_files/LogoutPetWork.proto
Normal file
10
original_split_proto_files/LogoutPetWork.proto
Normal file
@ -0,0 +1,10 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message LogoutPetWork{
|
||||
int64 WorkTime = 1;
|
||||
int64 RemainTime = 2;
|
||||
}
|
||||
24
original_split_proto_files/MailInfo.proto
Normal file
24
original_split_proto_files/MailInfo.proto
Normal file
@ -0,0 +1,24 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
import "ItemInfo.proto";
|
||||
|
||||
message MailInfo{
|
||||
int32 Id = 1;
|
||||
string Title = 2;
|
||||
string Content = 3;
|
||||
int32 Time = 4;
|
||||
int32 Status = 5;
|
||||
repeated ItemInfo Items = 6;
|
||||
int32 Type = 7;
|
||||
string TitleEn = 8;
|
||||
string ContentEn = 9;
|
||||
string SubTitle = 10;
|
||||
string SubTitleEn = 11;
|
||||
string TitlePtBr = 12;
|
||||
string ContentPtBr = 13;
|
||||
string SubTitlePtBr = 14;
|
||||
}
|
||||
11
original_split_proto_files/MailNotify.proto
Normal file
11
original_split_proto_files/MailNotify.proto
Normal file
@ -0,0 +1,11 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
import "MailInfo.proto";
|
||||
|
||||
message MailNotify {
|
||||
MailInfo Info = 1;
|
||||
}
|
||||
9
original_split_proto_files/NofiPlayroomStatus.proto
Normal file
9
original_split_proto_files/NofiPlayroomStatus.proto
Normal file
@ -0,0 +1,9 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message NofiPlayroomStatus{
|
||||
int32 WorkOutline = 1;
|
||||
}
|
||||
10
original_split_proto_files/NotifyActRed.proto
Normal file
10
original_split_proto_files/NotifyActRed.proto
Normal file
@ -0,0 +1,10 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message NotifyActRed{
|
||||
int32 Id = 1;
|
||||
int32 Red = 2;
|
||||
}
|
||||
10
original_split_proto_files/NotifyAddEnergy.proto
Normal file
10
original_split_proto_files/NotifyAddEnergy.proto
Normal file
@ -0,0 +1,10 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message NotifyAddEnergy{
|
||||
int64 dwUin = 1;
|
||||
int32 addCnt = 2;
|
||||
}
|
||||
11
original_split_proto_files/NotifyFriendCard.proto
Normal file
11
original_split_proto_files/NotifyFriendCard.proto
Normal file
@ -0,0 +1,11 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
import "ResFriendCard.proto";
|
||||
|
||||
message NotifyFriendCard{
|
||||
ResFriendCard Info = 1;
|
||||
}
|
||||
13
original_split_proto_files/NotifyFriendLog.proto
Normal file
13
original_split_proto_files/NotifyFriendLog.proto
Normal file
@ -0,0 +1,13 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
import "FriendBubbleInfo.proto";
|
||||
import "ResFriendLog.proto";
|
||||
|
||||
message NotifyFriendLog{
|
||||
ResFriendLog info = 1;
|
||||
FriendBubbleInfo Bubble = 2;
|
||||
}
|
||||
10
original_split_proto_files/NotifyInvitedSuccess.proto
Normal file
10
original_split_proto_files/NotifyInvitedSuccess.proto
Normal file
@ -0,0 +1,10 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message NotifyInvitedSuccess{
|
||||
int32 ResultCode = 1;
|
||||
repeated int32 IdLists = 2;
|
||||
}
|
||||
9
original_split_proto_files/NotifyPlayroomKiss.proto
Normal file
9
original_split_proto_files/NotifyPlayroomKiss.proto
Normal file
@ -0,0 +1,9 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message NotifyPlayroomKiss{
|
||||
int32 Kiss = 1;
|
||||
}
|
||||
14
original_split_proto_files/NotifyPlayroomLose.proto
Normal file
14
original_split_proto_files/NotifyPlayroomLose.proto
Normal file
@ -0,0 +1,14 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
import "ChipInfo.proto";
|
||||
import "ItemInfo.proto";
|
||||
|
||||
message NotifyPlayroomLose{
|
||||
repeated ItemInfo LoseItem = 1;
|
||||
repeated ChipInfo Chip = 2;
|
||||
int64 Revenge = 3;
|
||||
}
|
||||
14
original_split_proto_files/NotifyPlayroomMood.proto
Normal file
14
original_split_proto_files/NotifyPlayroomMood.proto
Normal file
@ -0,0 +1,14 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
import "AdItem.proto";
|
||||
|
||||
message NotifyPlayroomMood{
|
||||
int32 AllMood = 1;
|
||||
map<int32, int32> Mood = 2;
|
||||
map<int32, int32> Physiology = 3;
|
||||
repeated AdItem AdItem = 4;
|
||||
}
|
||||
12
original_split_proto_files/NotifyPlayroomTask.proto
Normal file
12
original_split_proto_files/NotifyPlayroomTask.proto
Normal file
@ -0,0 +1,12 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
import "DailyTask.proto";
|
||||
|
||||
message NotifyPlayroomTask{
|
||||
repeated DailyTask DailyTask = 1;
|
||||
repeated int32 DailyTaskReward = 2;
|
||||
}
|
||||
10
original_split_proto_files/NotifyPlayroomWork.proto
Normal file
10
original_split_proto_files/NotifyPlayroomWork.proto
Normal file
@ -0,0 +1,10 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message NotifyPlayroomWork{
|
||||
int32 StartTime = 1;
|
||||
int32 WorkStatus = 2;
|
||||
}
|
||||
10
original_split_proto_files/NotifyRenewBuyEnergyCnt.proto
Normal file
10
original_split_proto_files/NotifyRenewBuyEnergyCnt.proto
Normal file
@ -0,0 +1,10 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message NotifyRenewBuyEnergyCnt{
|
||||
int64 dwUin = 1;
|
||||
int32 CurCnt = 2;
|
||||
}
|
||||
23
original_split_proto_files/ORDER_TYPE.proto
Normal file
23
original_split_proto_files/ORDER_TYPE.proto
Normal file
@ -0,0 +1,23 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
enum ORDER_TYPE {
|
||||
ORDER_TYPE_DEFAULT = 0;
|
||||
Common_type = 1;
|
||||
Extra_type = 2;
|
||||
Super_type = 3;
|
||||
Preheat_type = 4;
|
||||
Trigger_type = 5;
|
||||
Clean_type = 6;
|
||||
Clean_Order_type = 7;
|
||||
Clean_type2 = 8;
|
||||
COMFORT_TYPE = 9;
|
||||
Guide_type = 10;
|
||||
Pet_type = 11;
|
||||
Preview_type = 12;
|
||||
Fixed_type = 13;
|
||||
Playroom_type = 14;
|
||||
}
|
||||
14
original_split_proto_files/Order.proto
Normal file
14
original_split_proto_files/Order.proto
Normal file
@ -0,0 +1,14 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
import "ItemInfo.proto";
|
||||
|
||||
message Order{
|
||||
int32 Id = 1;
|
||||
repeated int32 ChessId = 2;
|
||||
int32 type = 3;
|
||||
repeated ItemInfo Items = 4;
|
||||
}
|
||||
11
original_split_proto_files/PartBag.proto
Normal file
11
original_split_proto_files/PartBag.proto
Normal file
@ -0,0 +1,11 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
import "PartBagGrid.proto";
|
||||
|
||||
message PartBag{
|
||||
repeated PartBagGrid PartBagGrids = 1;
|
||||
}
|
||||
10
original_split_proto_files/PartBagGrid.proto
Normal file
10
original_split_proto_files/PartBagGrid.proto
Normal file
@ -0,0 +1,10 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message PartBagGrid{
|
||||
int32 PartId = 1;
|
||||
int32 Count = 2;
|
||||
}
|
||||
12
original_split_proto_files/PlayroomAirInfo.proto
Normal file
12
original_split_proto_files/PlayroomAirInfo.proto
Normal file
@ -0,0 +1,12 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message PlayroomAirInfo{
|
||||
int32 Id = 1;
|
||||
int64 EndTime = 2;
|
||||
int64 AddTime = 3;
|
||||
string Label = 4;
|
||||
}
|
||||
12
original_split_proto_files/PlayroomCollectInfo.proto
Normal file
12
original_split_proto_files/PlayroomCollectInfo.proto
Normal file
@ -0,0 +1,12 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message PlayroomCollectInfo{
|
||||
int32 Id = 1;
|
||||
int64 EndTime = 2;
|
||||
int64 AddTime = 3;
|
||||
string Label = 4;
|
||||
}
|
||||
11
original_split_proto_files/PlayroomDress.proto
Normal file
11
original_split_proto_files/PlayroomDress.proto
Normal file
@ -0,0 +1,11 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
import "PlayroomDressInfo.proto";
|
||||
|
||||
message PlayroomDress{
|
||||
repeated PlayroomDressInfo List = 1;
|
||||
}
|
||||
12
original_split_proto_files/PlayroomDressInfo.proto
Normal file
12
original_split_proto_files/PlayroomDressInfo.proto
Normal file
@ -0,0 +1,12 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message PlayroomDressInfo{
|
||||
int32 Id = 1;
|
||||
int64 EndTime = 2;
|
||||
int64 AddTime = 3;
|
||||
string Label = 4;
|
||||
}
|
||||
13
original_split_proto_files/QuestProgress.proto
Normal file
13
original_split_proto_files/QuestProgress.proto
Normal file
@ -0,0 +1,13 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message QuestProgress{
|
||||
string Label = 1;
|
||||
int32 Num = 2;
|
||||
int32 Target = 3;
|
||||
bool Status = 4;
|
||||
int32 Param = 5;
|
||||
}
|
||||
19
original_split_proto_files/RES_CODE.proto
Normal file
19
original_split_proto_files/RES_CODE.proto
Normal file
@ -0,0 +1,19 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
enum RES_CODE {
|
||||
FAIL = 0;
|
||||
SUCCESS = 1;
|
||||
Protocol_Error_Account_Exist = 100;
|
||||
Protocol_Error_Account_OR_PWD_ERROR = 101;
|
||||
Protocol_Error_Account_OR_PWD_Short = 102;
|
||||
Protocol_Error_Account_Fail = 103;
|
||||
Protocol_Error_Account_NoExsit = 104;
|
||||
Protocol_Error_Account_Code_Error = 105;
|
||||
Protocol_Error_Account_Device_Error = 106;
|
||||
Protocol_Error_Id_Not_Verify = 107;
|
||||
Protocol_Error_Id_Verify_Error = 108;
|
||||
}
|
||||
9
original_split_proto_files/RegHandbookAllReward.proto
Normal file
9
original_split_proto_files/RegHandbookAllReward.proto
Normal file
@ -0,0 +1,9 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message RegHandbookAllReward{
|
||||
string Type = 1;
|
||||
}
|
||||
7
original_split_proto_files/ReqActPass.proto
Normal file
7
original_split_proto_files/ReqActPass.proto
Normal file
@ -0,0 +1,7 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message ReqActPass{}
|
||||
8
original_split_proto_files/ReqActPassReward.proto
Normal file
8
original_split_proto_files/ReqActPassReward.proto
Normal file
@ -0,0 +1,8 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message ReqActPassReward{
|
||||
}
|
||||
9
original_split_proto_files/ReqActivityReward.proto
Normal file
9
original_split_proto_files/ReqActivityReward.proto
Normal file
@ -0,0 +1,9 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message ReqActivityReward{
|
||||
int32 Id = 1;
|
||||
}
|
||||
9
original_split_proto_files/ReqAddNpc.proto
Normal file
9
original_split_proto_files/ReqAddNpc.proto
Normal file
@ -0,0 +1,9 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message ReqAddNpc{
|
||||
int32 NpcId = 1;
|
||||
}
|
||||
10
original_split_proto_files/ReqAddWish.proto
Normal file
10
original_split_proto_files/ReqAddWish.proto
Normal file
@ -0,0 +1,10 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message ReqAddWish{
|
||||
int32 Id = 1;
|
||||
int32 Type = 2;
|
||||
}
|
||||
11
original_split_proto_files/ReqAdminBan.proto
Normal file
11
original_split_proto_files/ReqAdminBan.proto
Normal file
@ -0,0 +1,11 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message ReqAdminBan{
|
||||
int64 Uid = 1;
|
||||
int64 Time = 2;
|
||||
string Reason = 3;
|
||||
}
|
||||
10
original_split_proto_files/ReqAdminGm.proto
Normal file
10
original_split_proto_files/ReqAdminGm.proto
Normal file
@ -0,0 +1,10 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message ReqAdminGm{
|
||||
int64 Uid = 1;
|
||||
string Command = 2;
|
||||
}
|
||||
9
original_split_proto_files/ReqAdminInfo.proto
Normal file
9
original_split_proto_files/ReqAdminInfo.proto
Normal file
@ -0,0 +1,9 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message ReqAdminInfo{
|
||||
int64 Uid = 1;
|
||||
}
|
||||
11
original_split_proto_files/ReqAdminShipping.proto
Normal file
11
original_split_proto_files/ReqAdminShipping.proto
Normal file
@ -0,0 +1,11 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message ReqAdminShipping{
|
||||
string OrderSn = 1;
|
||||
int32 Status = 2;
|
||||
string ChannelOrderSn = 3;
|
||||
}
|
||||
9
original_split_proto_files/ReqAgreeCardExchange.proto
Normal file
9
original_split_proto_files/ReqAgreeCardExchange.proto
Normal file
@ -0,0 +1,9 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message ReqAgreeCardExchange{
|
||||
string Id = 1;
|
||||
}
|
||||
9
original_split_proto_files/ReqAgreeCardGive.proto
Normal file
9
original_split_proto_files/ReqAgreeCardGive.proto
Normal file
@ -0,0 +1,9 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message ReqAgreeCardGive{
|
||||
string Id = 1;
|
||||
}
|
||||
9
original_split_proto_files/ReqAgreeFriend.proto
Normal file
9
original_split_proto_files/ReqAgreeFriend.proto
Normal file
@ -0,0 +1,9 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message ReqAgreeFriend{
|
||||
int64 Uid = 1;
|
||||
}
|
||||
9
original_split_proto_files/ReqAllCollectReward.proto
Normal file
9
original_split_proto_files/ReqAllCollectReward.proto
Normal file
@ -0,0 +1,9 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message ReqAllCollectReward{
|
||||
|
||||
}
|
||||
10
original_split_proto_files/ReqApplyFriend.proto
Normal file
10
original_split_proto_files/ReqApplyFriend.proto
Normal file
@ -0,0 +1,10 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message ReqApplyFriend{
|
||||
int64 Uid = 1;
|
||||
int32 Type = 2;
|
||||
}
|
||||
9
original_split_proto_files/ReqAreaReward.proto
Normal file
9
original_split_proto_files/ReqAreaReward.proto
Normal file
@ -0,0 +1,9 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message ReqAreaReward{
|
||||
int32 AreaId = 1;
|
||||
}
|
||||
9
original_split_proto_files/ReqAutoAddInviteFriend.proto
Normal file
9
original_split_proto_files/ReqAutoAddInviteFriend.proto
Normal file
@ -0,0 +1,9 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message ReqAutoAddInviteFriend{
|
||||
int64 id = 1;
|
||||
}
|
||||
9
original_split_proto_files/ReqAutoAddInviteFriend2.proto
Normal file
9
original_split_proto_files/ReqAutoAddInviteFriend2.proto
Normal file
@ -0,0 +1,9 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message ReqAutoAddInviteFriend2{
|
||||
string id = 1;
|
||||
}
|
||||
10
original_split_proto_files/ReqBindFacebookAccount.proto
Normal file
10
original_split_proto_files/ReqBindFacebookAccount.proto
Normal file
@ -0,0 +1,10 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message ReqBindFacebookAccount{
|
||||
int64 dwUin = 1;
|
||||
string BindAccountId = 2;
|
||||
}
|
||||
8
original_split_proto_files/ReqBuyChessBagGrid.proto
Normal file
8
original_split_proto_files/ReqBuyChessBagGrid.proto
Normal file
@ -0,0 +1,8 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message ReqBuyChessBagGrid{
|
||||
}
|
||||
9
original_split_proto_files/ReqBuyChessShop.proto
Normal file
9
original_split_proto_files/ReqBuyChessShop.proto
Normal file
@ -0,0 +1,9 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message ReqBuyChessShop{
|
||||
int32 Id = 1;
|
||||
}
|
||||
10
original_split_proto_files/ReqBuyChessShop2.proto
Normal file
10
original_split_proto_files/ReqBuyChessShop2.proto
Normal file
@ -0,0 +1,10 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message ReqBuyChessShop2{
|
||||
int32 Id = 1;
|
||||
map<string, int32> mChessData = 2;
|
||||
}
|
||||
9
original_split_proto_files/ReqBuyEnergy.proto
Normal file
9
original_split_proto_files/ReqBuyEnergy.proto
Normal file
@ -0,0 +1,9 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message ReqBuyEnergy{
|
||||
int32 Energy = 1;
|
||||
}
|
||||
9
original_split_proto_files/ReqCardCollectReward.proto
Normal file
9
original_split_proto_files/ReqCardCollectReward.proto
Normal file
@ -0,0 +1,9 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message ReqCardCollectReward{
|
||||
int32 Color = 1;
|
||||
}
|
||||
11
original_split_proto_files/ReqCardExchange.proto
Normal file
11
original_split_proto_files/ReqCardExchange.proto
Normal file
@ -0,0 +1,11 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message ReqCardExchange{
|
||||
int64 Uid = 1;
|
||||
int32 CardId = 2;
|
||||
int32 Emoji = 3;
|
||||
}
|
||||
10
original_split_proto_files/ReqCardGive.proto
Normal file
10
original_split_proto_files/ReqCardGive.proto
Normal file
@ -0,0 +1,10 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message ReqCardGive{
|
||||
repeated int64 Uid = 1;
|
||||
int32 CardId = 2;
|
||||
}
|
||||
9
original_split_proto_files/ReqCardHandbookReward.proto
Normal file
9
original_split_proto_files/ReqCardHandbookReward.proto
Normal file
@ -0,0 +1,9 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message ReqCardHandbookReward{
|
||||
int32 CardId = 1;
|
||||
}
|
||||
7
original_split_proto_files/ReqCardInfo.proto
Normal file
7
original_split_proto_files/ReqCardInfo.proto
Normal file
@ -0,0 +1,7 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message ReqCardInfo{}
|
||||
@ -0,0 +1,7 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Byway.Thrift.Data.Net;
|
||||
|
||||
option go_package = "../msg";
|
||||
|
||||
message ReqCardSeasonFirstReward{}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user