娃娃兌換記錄修改
This commit is contained in:
parent
24dd497af4
commit
4d30e087c6
|
@ -3,6 +3,7 @@ package main
|
|||
import (
|
||||
"fmt"
|
||||
"math/rand"
|
||||
"strconv"
|
||||
"time"
|
||||
|
||||
"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.UserTel = log.UserTel
|
||||
info.Addr = log.Addr
|
||||
info.CreateTs = log.CreateTs.String()
|
||||
info.OpTs = log.OpTs.String()
|
||||
info.CreateTs = strconv.FormatInt(log.CreateTs, 10)
|
||||
info.OpTs = strconv.FormatInt(log.OpTs, 10)
|
||||
info.Remark = log.Remark
|
||||
pack.Info = append(pack.Info, info)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue