Files
go-common/app/service/main/upcredit/model/canal/message.go
2019-04-22 18:49:16 +08:00

12 lines
238 B
Go

package canal
import "encoding/json"
// Msg canal databus msg.
type Msg struct {
Action string `json:"action"`
Table string `json:"table"`
New json.RawMessage `json:"new"`
Old json.RawMessage `json:"old"`
}