Failed.php 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <?php
  2. /**
  3. * 事件列表,一次最多200个
  4. * @author auto create
  5. */
  6. class Failed
  7. {
  8. /**
  9. * bpms_instance_change
  10. **/
  11. public $bpms_instance_change;
  12. /**
  13. * bpms_task_change
  14. **/
  15. public $bpms_task_change;
  16. /**
  17. * 事件类型,有20种,“user_add_org”, “user_modify_org”, “user_leave_org”,“org_admin_add”, “org_admin_remove”, “org_dept_create”, “org_dept_modify”, “org_dept_remove”, “org_remove”, “chat_add_member”, “chat_remove_member”, “chat_quit”, “chat_update_owner”, “chat_update_title”, “chat_disband”,“chat_disband_microapp”, “check_in”,“bpms_task_change”,“bpms_instance_change”,“label_user_change”, “label_conf_add”, “label_conf_modify”,“label_conf_del”
  18. **/
  19. public $call_back_tag;
  20. /**
  21. * check_in
  22. **/
  23. public $check_in;
  24. /**
  25. * data
  26. **/
  27. public $data;
  28. /**
  29. * event_time
  30. **/
  31. public $event_time;
  32. /**
  33. * org_admin_add
  34. **/
  35. public $org_admin_add;
  36. /**
  37. * org_admin_remove
  38. **/
  39. public $org_admin_remove;
  40. /**
  41. * org_change
  42. **/
  43. public $org_change;
  44. /**
  45. * org_dept_create
  46. **/
  47. public $org_dept_create;
  48. /**
  49. * org_dept_modify
  50. **/
  51. public $org_dept_modify;
  52. /**
  53. * org_dept_remove
  54. **/
  55. public $org_dept_remove;
  56. /**
  57. * user_add_org
  58. **/
  59. public $user_add_org;
  60. /**
  61. * user_leave_org
  62. **/
  63. public $user_leave_org;
  64. /**
  65. * user_modify_org
  66. **/
  67. public $user_modify_org;
  68. }
  69. ?>