no message

This commit is contained in:
sk 2024-12-21 09:46:34 +08:00
parent 8177397b26
commit 1235383c87
2 changed files with 2 additions and 0 deletions

View File

@ -986,6 +986,7 @@ func (this *StateOp) OnLeave(s *base.Scene) {
SnId: player.SnId,
AutoTime: player.AutoMill.Milliseconds(),
HandTime: player.HandMill.Milliseconds(),
Ts: time.Now().Unix(),
}, mq.BackThirteenAutoLog)
}

View File

@ -7,4 +7,5 @@ type ThirteenAutoLog struct {
SnId int32 `gorm:"index;column:snid"`
AutoTime int64 // 自动时长,毫秒
HandTime int64 // 手动时长,毫秒
Ts int64
}