canal.go 310 B

123456789101112131415161718
  1. package model
  2. import (
  3. "encoding/json"
  4. )
  5. // CanalBinLog is
  6. type CanalBinLog struct {
  7. Action string `json:"action"`
  8. Table string `json:"table"`
  9. Old json.RawMessage `json:"old"`
  10. New json.RawMessage `json:"new"`
  11. }
  12. // MidBinLog is
  13. type MidBinLog struct {
  14. Mid int64 `json:"mid"`
  15. }