活动优化

This commit is contained in:
hahwu 2025-03-21 16:21:56 +08:00
parent bd9cce0536
commit 33e4ff1c55
2 changed files with 3 additions and 0 deletions

View File

@ -878,6 +878,7 @@ func (p *Player) initAcitivity() {
EndT: v.EndTime,
Id: v.Id,
Type: v.Type,
Status: ACT_STATUS_START,
Title: v.Title,
}
}
@ -892,6 +893,7 @@ func (p *Player) BackDataActivity() {
Type: int32(v.Type),
StartTime: int32(v.StartT),
EndTime: int32(v.EndT),
Status: int32(v.Status),
Title: v.Title,
Red: int32(Red),
})

View File

@ -49,6 +49,7 @@ type ActivityInfo struct {
Type int
Title string
Name string
Status int
Info interface{}
}