mq.go 548 B

1234567891011121314
  1. // Copyright 2019 getensh.com. All rights reserved.
  2. // Use of this source code is governed by getensh.com.
  3. package apis
  4. type OdsMessage struct {
  5. MsgType string `json:"msg_type"`
  6. SourceCode string `json:"source_code"` // 来源编码
  7. OfflineTaskId int64 `json:"offline_task_id"` // 离线消息任务id
  8. TaskList []int `json:"task_list"` // 任务列表
  9. From int `json:"from"` // 消息来源类型 0 数据库 1 excel
  10. Content string `json:"content"`
  11. Timestamp int64 `json:"timestamp"`
  12. }