12345678910111213141516171819202122232425262728 |
- <?php
- namespace app\enterprise\controller;
- use app\enterprise\common\EnterpriseController;
- use app\enterprise\api\TalentApi;
- /**
- * Description of Talent
- *
- * @author sgq
- */
- class Talent extends EnterpriseController {
- public function index() {
- return view();
- }
- public function list() {
- $res = TalentApi::getList($this->request);
- return json($res);
- }
-
- public function add(){
- return view();
- }
- }
|