go-common/app/job/main/app-player/model/model.go
2019-04-22 18:49:16 +08:00

18 lines
258 B
Go

package model
import (
"encoding/json"
)
// Message is
type Message struct {
Action string `json:"action"`
Table string `json:"table"`
New json.RawMessage `json:"new"`
}
// ArcMsg is
var ArcMsg struct {
Aid int64 `json:"aid"`
}