mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-05 01:20:25 +08:00
12 lines
285 B
Go
12 lines
285 B
Go
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
|
|
|
package models
|
|
|
|
// MessageTaskTarget 消息接收对象
|
|
// 每个字段不一定都有值
|
|
type MessageTaskTarget struct {
|
|
ClusterId int64 // 集群ID
|
|
NodeId int64 // 节点ID
|
|
ServerId int64 // 服务ID
|
|
}
|