玩家信息添加v卡消耗和充值金额

This commit is contained in:
sk 2024-07-10 15:53:06 +08:00
parent 3c910a4ad7
commit b3d95e3512
3 changed files with 797 additions and 773 deletions

View File

@ -708,6 +708,8 @@ func ConvertPlayerDataToWebData(param *WebPlayerDataParam) *webapi.PlayerData {
pdfw.IsPermit = param.IsPermit pdfw.IsPermit = param.IsPermit
pdfw.PermitScore = param.PermitScore pdfw.PermitScore = param.PermitScore
pdfw.Long = param.Long pdfw.Long = param.Long
pdfw.VCardCost = param.VCardCost
pdfw.MoneyTotal = param.MoneyTotal
return pdfw return pdfw
} }
func (this *PlayerData) IsMarkFlag(flag int) bool { func (this *PlayerData) IsMarkFlag(flag int) bool {

File diff suppressed because it is too large Load Diff

View File

@ -205,6 +205,8 @@ message PlayerData{
bool IsPermit = 56; // bool IsPermit = 56; //
int64 Long = 57; // int64 Long = 57; //
int64 PermitScore = 58; // int64 PermitScore = 58; //
int64 VCardCost = 59; // v卡消耗
int64 MoneyTotal = 60; //
} }
message RoomInfo{ message RoomInfo{