__construct(); } public function getBizContent() { /*$this->bizContent = "{"; foreach ($this->bizParas as $k=>$v){ $this->bizContent.= "\"".$k."\":\"".$v."\","; } $this->bizContent = substr($this->bizContent,0,-1); $this->bizContent.= "}";*/ if(!empty($this->bizParas)){ $this->bizContent = json_encode($this->bizParas,JSON_UNESCAPED_UNICODE); } return $this->bizContent; } public function getAppAuthToken() { return $this->appAuthToken; } public function setAppAuthToken($appAuthToken) { $this->appAuthToken = $appAuthToken; $this->bizParas['app_auth_token'] = $appAuthToken; } public function getGrantType() { return $this->grantType; } public function setGrantType($grantType) { $this->grantType = $grantType; $this->bizParas['grant_type'] = $grantType; } public function getZimMetaInfo() { return $this->zimMetaInfo; } public function setZimMetaInfo($zimMetaInfo) { $this->zimMetaInfo = $zimMetaInfo; $this->bizParas['zimmetainfo'] = $zimMetaInfo; } } ?>