123456789101112131415161718192021 |
- package model
- // 服务器_微信-ServerWX exported from 服务器名字.xlsx
- type ServerWX struct {
- ServerId int64 `json:"ServerId"` // 服务器id
- ServerName string `json:"ServerName"` // 服务器名称
- MaxPlayerNumber int64 `json:"MaxPlayerNumber"` // 最大同时在线人数
- OpenTime string `json:"OpenTime"` // 开服时间
- }
- // 一页显示几个服务器
- type ServerConfig struct {
- ServerId int64 `json:"serverId"`
- Page int64 `json:"page"`
- MaxNum int64 `json:"maxPlayerNumber"`
- OpenTime int64 `json:"openTime"`
- }
- // type VersionControl struct {
- // Version string `json:"version"`
- // }
|