// 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 Content string `json:"content"` Timestamp int64 `json:"timestamp"` }