更新协议

This commit is contained in:
hahwu 2025-04-10 11:57:01 +08:00
parent 9152784831
commit a2d5f17724

View File

@ -119,7 +119,7 @@ enum TIME_LINE_TYPE {
LOG_TYPE_CHARGE_RECEIVED = 19; //
LOG_TYPE_WISH = 20; //
LOG_TYPE_FRIEND_BECOME_NPC = 21; // NPC成为好友
LOG_TYPE_PLAYROOM_UPVOTE = 22; // playroom点赞
}
@ -512,9 +512,14 @@ message ResSetEnergyMul{
string Msg = 2;
}
enum LANG_TYPE {
LANG_CN = 0; //
LANG_EN = 1; //
}
//
message ReqLang{
int32 Lang = 1; // 1 2
LANG_TYPE Lang = 1; // 1 0
}
message ResLang{
@ -527,7 +532,7 @@ message BaseInfo {
bool IsFirstBuy = 2; //
int32 EnergyBuy = 3; //
int32 EnergyAD = 4; // 广
int32 Lang = 5; // 1 2
LANG_TYPE Lang = 5; // 1 2
}
message ReqUserInfo{}
@ -1447,6 +1452,8 @@ message MailInfo{
int32 Status = 5; // 0 1 2 3
repeated ItemInfo Items = 6; //
int32 Type = 7; // 1 2 3
string TitleEn = 8; //
string ContentEn = 9; //
}
message MailNotify {
MailInfo Info = 1;
@ -1894,6 +1901,16 @@ message ResPlayroom{
map<int32, int32> DressSet = 17; // = id
repeated int32 PetAir = 18; //
int32 PetAirSet = 19; //
int32 Upvote = 20; //
}
message ReqPlayroomUpvote{
int64 Id = 1; // id
}
message ResPlayroomUpvote{
RES_CODE Code = 1;
string Msg = 2;
int64 Id = 3; // id
}
message PlayroomDress{
@ -1979,6 +1996,7 @@ message ResPlayroomInfo{
int32 Chip = 11; //
string PetName = 12; //
map<int32, int32> Emoji = 13; //
bool Upvote = 14; //
}
//