ConversationInfo.php 244 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * 群信息列表
  4. * @author auto create
  5. */
  6. class ConversationInfo
  7. {
  8. /**
  9. * 班级群名称
  10. **/
  11. public $title;
  12. /**
  13. * 群类型,officialClassGroup: 家校群; teacherStudentGroup: 师生群
  14. **/
  15. public $type;
  16. }
  17. ?>