123456789101112131415161718192021222324 |
- <?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);
- }
- }
|