Files
openbilibili/app/service/main/assist/model/message/message.go

18 lines
360 B
Go
Raw Normal View History

2019-04-22 20:46:32 +08:00
package message
// Relation str map to databus message
type Relation struct {
Action string `json:"action"`
Table string `json:"table"`
New struct {
Attr int `json:"attribute"`
FID int64 `json:"fid"`
MID int64 `json:"mid"`
} `json:"new"`
Old struct {
Attr int `json:"attribute"`
FID int64 `json:"fid"`
MID int64 `json:"mid"`
}
}