|
|
|
@ -548,10 +548,10 @@ class Server |
|
|
|
|
* @notes:检测审核状态 |
|
|
|
|
* @param $appid |
|
|
|
|
* @param $auditid |
|
|
|
|
* @return bool |
|
|
|
|
* @return array|mixed |
|
|
|
|
* @author: wanghousheng |
|
|
|
|
*/ |
|
|
|
|
public function getAuditStatus($appid, $auditid): bool |
|
|
|
|
public function getAuditStatus($appid, $auditid) |
|
|
|
|
{ |
|
|
|
|
$access_token = $this->authorizerAccessToken($appid); |
|
|
|
|
if ($access_token && $auditid) { |
|
|
|
@ -578,10 +578,10 @@ class Server |
|
|
|
|
$model = new WxserverAccount(); |
|
|
|
|
$model->update($up, ['appid' => $appid]); |
|
|
|
|
} |
|
|
|
|
return true; |
|
|
|
|
return $result; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
return false; |
|
|
|
|
return []; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public function getAllCategory($appid): array |
|
|
|
|