Files
EdgeAPI/internal/db/models/message_target.go

12 lines
285 B
Go
Raw Normal View History

2021-04-12 19:19:15 +08:00
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
package models
2021-07-18 15:52:34 +08:00
// MessageTaskTarget 消息接收对象
// 每个字段不一定都有值
2021-04-12 19:19:15 +08:00
type MessageTaskTarget struct {
2021-07-18 15:52:34 +08:00
ClusterId int64 // 集群ID
NodeId int64 // 节点ID
ServerId int64 // 服务ID
2021-04-12 19:19:15 +08:00
}