CourseParticipantOption.php 222 B

123456789101112131415
  1. <?php
  2. /**
  3. * 参与方选项信息
  4. * @author auto create
  5. */
  6. class CourseParticipantOption
  7. {
  8. /**
  9. * 群类型:teacherStudentGroup(师生群)、officialClassGroup(家校群)
  10. **/
  11. public $group_type;
  12. }
  13. ?>