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.
|
- package md
-
- type CanalUser struct {
- Id string `json:"id"`
- Level string `json:"level"`
- ParentUid string `json:"parent_uid"`
- }
-
- type CanalUserMessage[T any] struct {
- Data []T `json:"data"`
- Database string `json:"database"`
- ES int64 `json:"es"`
- ID int64 `json:"id"`
- IsDdl bool `json:"isDdl"`
- Old []T `json:"old"`
- PkNames []string `json:"pkNames"`
- Table string `json:"table"`
- TS int64 `json:"ts"`
- Type string `json:"type"`
- }
|