任务提交

This commit is contained in:
1
2025-08-28 19:17:03 +00:00
parent 02c0582fe5
commit 00f38b8c53
10 changed files with 176 additions and 59 deletions

View File

@@ -0,0 +1,12 @@
package task
import "blazing/common/socket/handler"
// DeleteTaskInboundInfo 对应Java的DeleteTaskInboundInfo类
type DeleteTaskInboundInfo struct {
Head handler.TomeeHeader `cmd:"2205|2232" struc:"[0]pad"`
TaskId uint32 `json:"taskId" description:"任务ID"` // 使用uint64对应Java的@UInt long
}
type DeleteTaskOutboundInfo struct {
TaskId uint32 `json:"taskId" description:"任务ID"` // 对应@UInt long和@FieldDescription
}