CourseVO.php 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <?php
  2. /**
  3. * list
  4. * @author auto create
  5. */
  6. class CourseVO
  7. {
  8. /**
  9. * 业务唯一键
  10. **/
  11. public $biz_key;
  12. /**
  13. * list
  14. **/
  15. public $classrooms;
  16. /**
  17. * 课程编码
  18. **/
  19. public $code;
  20. /**
  21. * 创建者的组织CorpId
  22. **/
  23. public $creator_corpid;
  24. /**
  25. * 创建者的用户ID
  26. **/
  27. public $creator_userid;
  28. /**
  29. * 创建者的用户名
  30. **/
  31. public $creator_username;
  32. /**
  33. * 结束时间,Unix毫秒时间戳
  34. **/
  35. public $end_time;
  36. /**
  37. * 课程扩展信息
  38. **/
  39. public $ext_info;
  40. /**
  41. * 课程介绍
  42. **/
  43. public $introduce;
  44. /**
  45. * 课程名称
  46. **/
  47. public $name;
  48. /**
  49. * 新版在线课堂
  50. **/
  51. public $platform;
  52. /**
  53. * 开始时间,Unix毫秒时间戳
  54. **/
  55. public $start_time;
  56. /**
  57. * 课程状态 -1取消,0未开始,1进行中,2已结束
  58. **/
  59. public $status;
  60. /**
  61. * 老的的组织CorpId
  62. **/
  63. public $teacher_corpid;
  64. /**
  65. * 老师的用户ID
  66. **/
  67. public $teacher_userid;
  68. /**
  69. * 老师的用户名
  70. **/
  71. public $teacher_username;
  72. }
  73. ?>