GroupStatisticalSummaryResponse.php 224 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * 返回结果对象
  4. * @author auto create
  5. */
  6. class GroupStatisticalSummaryResponse
  7. {
  8. /**
  9. * 部门群数量
  10. **/
  11. public $dept_group_cnt;
  12. /**
  13. * 内部群数量
  14. **/
  15. public $inner_group_cnt;
  16. }
  17. ?>