OpenEduBureauStatisticalDataResponse.php 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. <?php
  2. /**
  3. * 结果
  4. * @author auto create
  5. */
  6. class OpenEduBureauStatisticalDataResponse
  7. {
  8. /**
  9. * 最近1天活跃班级圈数
  10. **/
  11. public $act_class_circle_cnt1d;
  12. /**
  13. * 最近7天活跃班级圈数
  14. **/
  15. public $act_class_circle_cnt7d;
  16. /**
  17. * 最近1天活跃班级群数
  18. **/
  19. public $act_class_group_cnt1d;
  20. /**
  21. * 最近7天活跃班级群数
  22. **/
  23. public $act_class_group_cnt7d;
  24. /**
  25. * 最近1天活跃家长数量
  26. **/
  27. public $act_patriarch_cnt1d;
  28. /**
  29. * 最近7天活跃家长数量
  30. **/
  31. public $act_patriarch_cnt7d;
  32. /**
  33. * 最近1天活跃教师数量
  34. **/
  35. public $act_teacher_cnt1d;
  36. /**
  37. * 最近7天活跃教师数量
  38. **/
  39. public $act_teacher_cnt7d;
  40. /**
  41. * 数字化教师数量
  42. **/
  43. public $auth_teacher_cnt_std;
  44. /**
  45. * 最近1天班级打卡使用人数
  46. **/
  47. public $class_card_user_cnt1d;
  48. /**
  49. * 最近7天班级打卡使用人数
  50. **/
  51. public $class_card_user_cnt7d;
  52. /**
  53. * 最近1天班级圈使用人数
  54. **/
  55. public $class_circle_user_cnt1d;
  56. /**
  57. * 最近7天班级圈使用人数
  58. **/
  59. public $class_circle_user_cnt7d;
  60. /**
  61. * 注册班级数
  62. **/
  63. public $class_cnt_std;
  64. /**
  65. * 最近1天班级群使用人数
  66. **/
  67. public $class_group_user_cnt1d;
  68. /**
  69. * 最近7天班级群使用人数
  70. **/
  71. public $class_group_user_cnt7d;
  72. /**
  73. * 局id
  74. **/
  75. public $corp_id;
  76. /**
  77. * 注册家长数
  78. **/
  79. public $patriarch_cnt_std;
  80. /**
  81. * 最近1天接收DING的家长数
  82. **/
  83. public $rcv_ding_patriarch_cnt1d;
  84. /**
  85. * 最近7天接收DING的家长数
  86. **/
  87. public $rcv_ding_patriarch_cnt7d;
  88. /**
  89. * 注册学校数
  90. **/
  91. public $school_cnt_std;
  92. /**
  93. * 最近1天班级圈发送数
  94. **/
  95. public $send_circle_post_cnt1d;
  96. /**
  97. * 最近7天班级圈发送数
  98. **/
  99. public $send_circle_post_cnt7d;
  100. /**
  101. * 统计日期
  102. **/
  103. public $stat_date;
  104. /**
  105. * 注册学生数
  106. **/
  107. public $student_cnt_std;
  108. /**
  109. * 注册教师数
  110. **/
  111. public $teacher_cnt_std;
  112. /**
  113. * 最近1天教师钉消息发送数
  114. **/
  115. public $teacher_send_ding_cnt1d;
  116. /**
  117. * 最近7天教师钉消息发送数
  118. **/
  119. public $teacher_send_ding_cnt7d;
  120. }
  121. ?>