action.go 301 B

123456789101112131415161718
  1. package model
  2. import (
  3. "encoding/json"
  4. )
  5. // All const variable used in admin
  6. const (
  7. ActFlushDM = "flush"
  8. ActReportDel = "report_del"
  9. )
  10. // Action job msg.
  11. type Action struct {
  12. Oid int64 `json:"oid"`
  13. Action string `json:"action"`
  14. Data json.RawMessage `json:"data"`
  15. }