feat: 更新队列数据结构
This commit is contained in:
@@ -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 // 数据入队的异常信息
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user