go-common/app/admin/main/dm/model/action.go
2019-04-22 18:49:16 +08:00

19 lines
301 B
Go

package model
import (
"encoding/json"
)
// All const variable used in admin
const (
ActFlushDM = "flush"
ActReportDel = "report_del"
)
// Action job msg.
type Action struct {
Oid int64 `json:"oid"`
Action string `json:"action"`
Data json.RawMessage `json:"data"`
}