addParam('contractId', $this->contractId); $paramSwitcher->addParam('bizId', $this->bizId); $paramSwitcher->addParam('tenantName', $this->tenantName); $paramSwitcher->addParam('contact', $this->contact); $httpParameter = HttpParameter::httpGetParamer(); $httpParameter->setParams($paramSwitcher->getParams()); return $httpParameter; } /** * @return mixed */ public function getContractId() { return $this->contractId; } /** * @param mixed $contractId */ public function setContractId($contractId) { $this->contractId = $contractId; } /** * @return mixed */ public function getBizId() { return $this->bizId; } /** * @param mixed $bizId */ public function setBizId($bizId) { $this->bizId = $bizId; } /** * @return mixed */ public function getTenantName() { return $this->tenantName; } /** * @param mixed $tenantName */ public function setTenantName($tenantName) { $this->tenantName = $tenantName; } /** * @return mixed */ public function getContact() { return $this->contact; } /** * @param mixed $contact */ public function setContact($contact) { $this->contact = $contact; } }