feat: 更新队列数据结构

This commit is contained in:
2026-04-12 22:03:55 +08:00
parent 9a2024ee29
commit 5844029f7a

View File

@@ -37,7 +37,7 @@ type ZRangeData struct {
type Queue struct { type Queue struct {
Name string `json:"name"` // 队列名称 Name string `json:"name"` // 队列名称
DelayTime int64 `json:"delay_time"` // 延迟执行时间 DelayTime int64 `json:"delay_time"` // 延迟执行时间
Data map[string]interface{} `json:"data"` // 入队数据 Data any `json:"data"` // 入队数据
err error // 数据入队的异常信息 err error // 数据入队的异常信息
} }