代码拉取完成,页面将自动刷新
package main
import (
"fmt"
"time"
"github.com/EndlessCheng/mahjong-helper/util"
"strconv"
)
// 观战基本信息
type majsoulLiveRecordBaseInfo struct {
UUID string `json:"uuid"`
StartTime int64 `json:"start_time"`
GameConfig *majsoulGameConfig `json:"game_config"`
Players []_majsoulRecordAccount `json:"players"`
SeatList []int `json:"seat_list"`
}
func (i *majsoulLiveRecordBaseInfo) String() string {
const timeFormat = "2006-01-02 15:04:05"
output := fmt.Sprintf("%s\n开始于 %s\n\n", i.UUID, time.Unix(i.StartTime, 0).Format(timeFormat))
maxAccountID := 0
for _, account := range i.Players {
maxAccountID = util.MaxInt(maxAccountID, account.AccountID)
}
accountShownWidth := len(strconv.Itoa(maxAccountID))
for _, account := range i.Players {
output += fmt.Sprintf("%*d %s\n", accountShownWidth, account.AccountID, account.Nickname)
}
return output
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。