Files
bl/logic/service/task/AddTask.go
2025-08-27 20:52:15 +00:00

15 lines
589 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package task
import "blazing/common/socket/handler"
// AddTaskBufInboundInfo 对应Java的AddTaskBufInboundInfo类
// 用于接收添加任务缓冲区的入站信息
type AddTaskBufInboundInfo struct {
Head handler.TomeeHeader `cmd:"2204" struc:"[0]pad"`
TaskId uint32 `json:"taskId" description:"任务ID"` // 任务ID对应Java的@UInt long
TaskList []uint32 `struc:"[20]byte"` // 任务步骤信息对应Java的@ArraySerialize注解
}
type AddTaskBufOutboundInfo struct {
// 该结构体没有字段对应Java中的空类
}