MsgStatResVo.php 357 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * list
  4. * @author auto create
  5. */
  6. class MsgStatResVo
  7. {
  8. /**
  9. * 机器人消息推送Id
  10. **/
  11. public $push_id;
  12. /**
  13. * 触达群数量
  14. **/
  15. public $reach_group_count;
  16. /**
  17. * 触达群成员数量
  18. **/
  19. public $reach_group_member_count;
  20. /**
  21. * 触达群成员未读数量
  22. **/
  23. public $reach_group_member_unread_count;
  24. }
  25. ?>