job.go 512 B

12345678910111213141516171819
  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. )