OpenStudentParam.php 183 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * 学生入参
  4. * @author auto create
  5. */
  6. class OpenStudentParam
  7. {
  8. /**
  9. * 班级id
  10. **/
  11. public $class_id;
  12. /**
  13. * 班级列表
  14. **/
  15. public $student_ids;
  16. }
  17. ?>