go-common/app/job/main/app-player/model/model.go

18 lines
258 B
Go
Raw Normal View History

2019-04-22 10:49:16 +00:00
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"`
}