common.go 1017 B

123456789101112131415161718192021222324252627
  1. // Copyright 2019 getensh.com. All rights reserved.
  2. // Use of this source code is governed by getensh.com.
  3. package apis
  4. type DwsMessage struct {
  5. OdsMsgType string `json:"ods_msg_type"`
  6. SourceCode string `json:"source_code"` // 来源编码
  7. OfflineTaskId int64 `json:"offline_task_id"` // 离线消息任务id
  8. TaskList []int32 `json:"task_list"` // 任务列表
  9. //SourceLevel int `json:"source_level"` // 源层级
  10. //Step int `json:"step"` // 步数
  11. Content string `json:"content"`
  12. Timestamp int64 `json:"timestamp"`
  13. MsgLen int `json:"-"`
  14. }
  15. type AdsMessage struct {
  16. OdsMsgType string `json:"ods_msg_type"`
  17. SourceCode string `json:"source_code"` //告诉ads层数据来源
  18. OfflineTaskId int64 `json:"offline_task_id"` // 离线消息任务id
  19. TaskList []int32 `json:"task_list"` // 任务列表
  20. Action string `json:"action"`
  21. //Step int `json:"step"` // 步数
  22. Content string `json:"content"`
  23. Timestamp int64 `json:"timestamp"`
  24. }