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.

21 lines
861 B

package etl
import (
"time"
)
type Record struct {
TaskId int `json:"Record-TaskId" bson:"taskId"`
Message string `json:"Record-Message" bson:"message"`
Stage string `json:"Record-Stage" bson:"stage"`
Data string `json:"Record-Data" bson:"data"`
TimeStamp time.Time `json:"Record-TimeStamp" bson:"time"`
SourceDB int `json:"Record-SourceDB" bson:"sourceDb"`
SourceTable string `json:"Record-SourceTable" bson:"sourceTable"`
TargetDB int `json:"Record-TargetDB" bson:"targetDb"`
TargetTable string `json:"Record-TargetTable" bson:"targetTable"`
Times int `json:"Record-Times" bson:"times"`
Status string `json:"Record-Status" bson:"status"`
BatchId string `json:"Record-BatchId" bson:"batchId"`
DataId string `json:"Record-DataId" bson:"dataId"`
}