娃娃兌換記錄修改

This commit is contained in:
by 2024-09-19 18:33:27 +08:00
parent 24dd497af4
commit 4d30e087c6
1 changed files with 3 additions and 2 deletions

View File

@ -3,6 +3,7 @@ package main
import ( import (
"fmt" "fmt"
"math/rand" "math/rand"
"strconv"
"time" "time"
"mongo.games.com/goserver/core/basic" "mongo.games.com/goserver/core/basic"
@ -579,8 +580,8 @@ func CSDollChangeLog(s *netlib.Session, packetid int, data interface{}, sid int6
info.UserName = log.UserName info.UserName = log.UserName
info.UserTel = log.UserTel info.UserTel = log.UserTel
info.Addr = log.Addr info.Addr = log.Addr
info.CreateTs = log.CreateTs.String() info.CreateTs = strconv.FormatInt(log.CreateTs, 10)
info.OpTs = log.OpTs.String() info.OpTs = strconv.FormatInt(log.OpTs, 10)
info.Remark = log.Remark info.Remark = log.Remark
pack.Info = append(pack.Info, info) pack.Info = append(pack.Info, info)
} }