OpenHwCommentResponse.php 613 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?php
  2. /**
  3. * 结果
  4. * @author auto create
  5. */
  6. class OpenHwCommentResponse
  7. {
  8. /**
  9. * 扩展属性
  10. **/
  11. public $attributes;
  12. /**
  13. * 评论内容
  14. **/
  15. public $comment;
  16. /**
  17. * 评论ID
  18. **/
  19. public $comment_id;
  20. /**
  21. * 评论时间
  22. **/
  23. public $comment_time;
  24. /**
  25. * 视频
  26. **/
  27. public $media;
  28. /**
  29. * 图片
  30. **/
  31. public $photo;
  32. /**
  33. * 学生ID
  34. **/
  35. public $student_id;
  36. /**
  37. * 学生姓名
  38. **/
  39. public $student_name;
  40. /**
  41. * 老师ID
  42. **/
  43. public $teacher_id;
  44. /**
  45. * 老师姓名
  46. **/
  47. public $teacher_name;
  48. /**
  49. * 音频
  50. **/
  51. public $video;
  52. }
  53. ?>