TeacherRespone.php 391 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. /**
  3. * result
  4. * @author auto create
  5. */
  6. class TeacherRespone
  7. {
  8. /**
  9. * 校区ID
  10. **/
  11. public $campus_id;
  12. /**
  13. * 年级ID
  14. **/
  15. public $grade_id;
  16. /**
  17. * 是否为班主任,1是,0不是
  18. **/
  19. public $is_adviser;
  20. /**
  21. * 学段ID
  22. **/
  23. public $period_id;
  24. /**
  25. * 名称
  26. **/
  27. public $teacher_name;
  28. /**
  29. * 老师ID
  30. **/
  31. public $teacher_userid;
  32. }
  33. ?>