common.go 516 B

123456789101112131415
  1. // Copyright 2019 getensh.com. All rights reserved.
  2. // Use of this source code is governed by getensh.com.
  3. package apis
  4. type AdsMessage struct{
  5. OdsMsgType string `json:"ods_msg_type"`
  6. SourceCode string `json:"source_code"` //告诉ads层数据来源
  7. OfflineTaskId int64 `json:"offline_task_id"` // 离线消息任务id
  8. TaskList []int32 `json:"task_list"` // 任务列表
  9. Action string `json:"action"`
  10. //Step int `json:"step"` // 步数
  11. Content string `json:"content"`
  12. Timestamp int64 `json:"timestamp"`
  13. }