package model // 玩家等级表-PlayerLevel exported from 玩家等级.xlsx type PlayerLevel struct { Level int64 `json:"Level"` // 等级 Exp int64 `json:"Exp"` // 所需经验 Reward [][]int64 `json:"reward"` // 升级奖励 }