12345678910111213141516171819202122 |
- <?php
- namespace app\person\controller;
- use app\person\common\PersonController;
- /**
- * Description of Education
- *
- * @author sgq
- */
- class Education extends PersonController {
- public function index() {
- return view();
- }
- public function choose() {
- return view();
- }
- }
|