OpenFeedWatchDetailRspModel.php 249 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * 返回值model
  4. * @author auto create
  5. */
  6. class OpenFeedWatchDetailRspModel
  7. {
  8. /**
  9. * 是否还有数据没返回(0还有/1没有)
  10. **/
  11. public $has_finish;
  12. /**
  13. * 观看数据列表
  14. **/
  15. public $viewer_watch_details;
  16. }
  17. ?>