/**
  * 删除公众号.
  *
  * @param int $accountId
  *
  * @return \Illuminate\Http\Response
  */
 public function destroy($accountId)
 {
     $this->accountRepository->delete($accountId);
     return success('删除成功!');
 }