LAPP标准接口程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
468 B

package etl
import "time"
type MongoData struct {
BatchId string `json:"batchId" bson:"batchId"`
DataId string `json:"dataId" bson:"dataId"`
TaskId int `json:"taskId" bson:"taskId"`
Data string `json:"data" bson:"data"`
ErrNum int `json:"errNum" bson:"errNum"`
ErrInfo string `json:"errInfo" bson:"errInfo"`
Status int `json:"status" bson:"status"`
Timestamp time.Time `json:"timestamp" bson:"timestamp"`
}