refactor(common): 统一使用 common.TomeeHeader 替代 player.TomeeHeader

将多处
This commit is contained in:
2025-11-19 16:11:02 +08:00
parent 31439b707c
commit c0b09c92c4
57 changed files with 455 additions and 480 deletions

View File

@@ -1,7 +1,7 @@
package task
import (
"blazing/logic/service/player"
"blazing/logic/service/common"
"encoding/binary"
"errors"
@@ -9,7 +9,7 @@ import (
)
type GetTaskBufInboundInfo struct {
Head player.TomeeHeader `cmd:"2203|2234" struc:"[0]pad"`
Head common.TomeeHeader `cmd:"2203|2234" struc:"[0]pad"`
TaskId uint32 `json:"taskId" description:"任务ID"` // 任务ID
}