12345678910111213141516171819202122232425262728 |
- // Copyright 2019 getensh.com. All rights reserved.
- // Use of this source code is governed by getensh.com.
- package apis
- type OdsMessage struct {
- MsgType string `json:"msg_type"`
- SourceCode string `json:"source_code"` // 来源编码
- OfflineTaskId int64 `json:"offline_task_id"` // 离线消息任务id
- TaskList []int `json:"task_list"` // 任务列表
- From int `json:"from"` // 消息来源类型 0 数据库 1 excel
- //SourceLevel int `json:"source_level"` // 源层级
- //Step int `json:"step"` // 步数
- Content string `json:"content"`
- Timestamp int64 `json:"timestamp"`
- }
- type DwsMessage struct {
- OdsMsgType string `json:"ods_msg_type"`
- SourceCode string `json:"source_code"` // 来源编码
- OfflineTaskId int64 `json:"offline_task_id"` // 离线消息任务id
- TaskList []int `json:"task_list"` // 任务列表
- //SourceLevel int `json:"source_level"` // 源层级
- //Step int `json:"step"` // 步数
- Content string `json:"content"`
- Timestamp int64 `json:"timestamp"`
- //NeedSleep bool `json:"-"`
- }
|