go-common/app/job/main/dm/model/job.go

22 lines
380 B
Go
Raw Normal View History

2019-04-22 10:49:16 +00:00
package model
import (
"encoding/json"
)
// All const variable used in job
const (
// binlog type
SyncInsert = "insert"
SyncUpdate = "update"
SyncDelete = "delete"
)
// BinlogMsg dm binlog msg
type BinlogMsg struct {
Action string `json:"action"`
Table string `json:"table"`
New json.RawMessage `json:"new"`
Old json.RawMessage `json:"old"`
}