fetch(); } /** * VIP认证 * @return mixed */ public function vip() { return $this->fetch(); } /** * 人工牵线 * @return mixed */ public function hand() { return $this->fetch(); } /** * 身份证认证 * @return mixed */ public function idcard() { $params = input(); $data = isset($params['data'])? $params['data'] : []; $bizNo = isset($data['bizNo'])? $data['bizNo'] : ''; PRedis::set("caches:faceAuth:result:{$bizNo}", $params, 3600); return $this->fetch(); } /** * 学历认证 * @return mixed */ public function education() { return $this->fetch(); } /** * 职位认证 * @return mixed */ public function position() { return $this->fetch(); } }