Education.php 303 B

12345678910111213141516171819202122
  1. <?php
  2. namespace app\person\controller;
  3. use app\person\common\PersonController;
  4. /**
  5. * Description of Education
  6. *
  7. * @author sgq
  8. */
  9. class Education extends PersonController {
  10. public function index() {
  11. return view();
  12. }
  13. public function choose() {
  14. return view();
  15. }
  16. }