OpenHwDetailResponse.php 717 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?php
  2. /**
  3. * 结果
  4. * @author auto create
  5. */
  6. class OpenHwDetailResponse
  7. {
  8. /**
  9. * 扩展属性
  10. **/
  11. public $attributes;
  12. /**
  13. * 作业内容
  14. **/
  15. public $hw_content;
  16. /**
  17. * 作业视频
  18. **/
  19. public $hw_media;
  20. /**
  21. * 作业图片
  22. **/
  23. public $hw_photo;
  24. /**
  25. * 作业状态
  26. **/
  27. public $hw_status;
  28. /**
  29. * 作业标题
  30. **/
  31. public $hw_title;
  32. /**
  33. * 作业录音
  34. **/
  35. public $hw_video;
  36. /**
  37. * 是否定时作业
  38. **/
  39. public $scheduled_release;
  40. /**
  41. * 定时发送事件
  42. **/
  43. public $scheduled_time;
  44. /**
  45. * 发送时间
  46. **/
  47. public $send_time;
  48. /**
  49. * 老师ID
  50. **/
  51. public $teacher_id;
  52. /**
  53. * 老师姓名
  54. **/
  55. public $teacher_name;
  56. }
  57. ?>