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"`
|
|
}
|