job.go 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. package model
  2. const (
  3. // type
  4. FieldFav = "folder"
  5. FieldArc = "video"
  6. FieldResource = "resource"
  7. // action
  8. ActionAdd = "add"
  9. ActionDel = "del"
  10. ActionMove = "move"
  11. ActionCopy = "copy"
  12. ActionMdel = "mdel"
  13. ActionIndef = "indef"
  14. ActionIncol = "incol"
  15. ActionClean = "clean"
  16. ActionInitRelationFids = "initRelationFids"
  17. ActionInitFolderRelations = "initFolderRelations"
  18. ActionMultiAdd = "multiAdd"
  19. ActionMultiDel = "multiDel"
  20. ActionFolderAdd = "folderAdd"
  21. ActionFolderDel = "folderDel"
  22. )
  23. type Message struct {
  24. Field string `json:"field"`
  25. Action string `json:"action"`
  26. Oid int64 `json:"oid"`
  27. Type int8 `json:"type"`
  28. Mid int64 `json:"mid"`
  29. OldMid int64 `json:"old_mid"`
  30. Fid int64 `json:"fid"`
  31. FidState int8 `json:"fid_state"`
  32. FolderAttr int8 `json:"folder_attr"`
  33. OldFolderAttr int8 `json:"old_folder_attr"`
  34. NewFolderAttr int8 `json:"new_folder_attr"`
  35. Aid int64 `json:"aid"`
  36. OldFid int64 `json:"old_fid"`
  37. OldFidState int8 `json:"old_fid_state"`
  38. NewFid int64 `json:"new_fid"`
  39. NewFidState int8 `json:"new_fid_state"`
  40. Affected int64 `json:"affected"`
  41. Aids []int64 `json:"aids"`
  42. Oids []int64 `json:"oids"`
  43. Mids []int64 `json:"mids"`
  44. FTime int64 `json:"ftime"`
  45. }