QueryLiveViewRecordDetail.php 420 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. /**
  3. * 返回结果
  4. * @author auto create
  5. */
  6. class QueryLiveViewRecordDetail
  7. {
  8. /**
  9. * 部门id
  10. **/
  11. public $dept_id;
  12. /**
  13. * 群名称
  14. **/
  15. public $group_name;
  16. /**
  17. * 是否分页拉取完成,true:完成
  18. **/
  19. public $has_more;
  20. /**
  21. * 直播uuid
  22. **/
  23. public $live_uuid;
  24. /**
  25. * 用户观看记录
  26. **/
  27. public $record_list;
  28. /**
  29. * 直播标题
  30. **/
  31. public $title;
  32. }
  33. ?>