缓存模块

This commit is contained in:
bob
2025-08-15 18:12:04 +08:00
parent d5689258fc
commit 34b25273a7
19 changed files with 275 additions and 79 deletions

View File

@@ -23,6 +23,17 @@ message Game2G_ExitResponse // IRouteResponse
}
///获取玩家基础信息
message S2G_GetPlayerBasicInfoRequest // IRouteRequest,G2S_GetPlayerBasicInfoResponse
{
repeated int64 IdList = 1; // 查询列表
}
///获取玩家基础信息响应
message G2S_GetPlayerBasicInfoResponse // IRouteResponse
{
repeated RoleSimpleInfo RoleList = 1;
}
///通知游戏服角色进入该聊天服

View File

@@ -115,7 +115,7 @@ message S2C_GetChatRecordResponse // ICustomRouteResponse
}
////////////// ******** 工会 *******/////////////
message ClubInfo
{

View File

@@ -9,6 +9,8 @@ message RoleBaseInfo
string Country = 3; //国家
int32 Level = 4; //等级
int32 Exp = 5; //当前等级
bool Vip = 6; //是否vip
VipInfo VipInfo = 7; //vip信息
}
message KeyValueStringInt64
@@ -51,6 +53,7 @@ message RoleSimpleInfo
string Head = 3; //头像
string Country = 4; //国家
int32 Level = 5; //等级
bool Vip = 6; //是否vip
}
/// VIP信息