getCompanyCount(); } /** * 获取基础统计信息 * * @return \think\response\Json */ public function index() { return ResponseHelper::success( [ 'companyCount' => $this->getCompanyCount(), 'adminCount' => $this->getAdminCount(), 'customerCount' => $this->getCustomerCount(), ] ); } }