玩家信息添加v卡消耗和充值金额
This commit is contained in:
parent
3c910a4ad7
commit
b3d95e3512
|
|
@ -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
|
|
@ -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{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue