123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- <?php
- class ContractAuditRequest extends SdkRequest {
- const AUDIT_URL = "/v2/contract/employeeaudit";
- private $contractId;
- private $bizId;
- private $tenantName;
- private $pass;
- private $comment;
- public function getUrl() {
- return self::AUDIT_URL;
- }
- public function getHttpParamers() {
- $paramSwitcher = ParamSwitcher::instanceParam();
- $paramSwitcher->addParam('contractId', $this->getContractId());
- $paramSwitcher->addParam('bizId', $this->bizId);
- $paramSwitcher->addParam('tenantName', $this->tenantName);
- $paramSwitcher->addParam('pass', $this->getPass());
- $paramSwitcher->addParam('comment', $this->getComment());
- $httpParameters = HttpParameter::httpPostParamer();
- $httpParameters->setJsonParams(json_encode($paramSwitcher->getParams()));
- return $httpParameters;
- }
- /**
- * @return mixed
- */
- public function getContractId()
- {
- return $this->contractId;
- }
- /**
- * @param mixed $contractId
- */
- public function setContractId($contractId)
- {
- $this->contractId = $contractId;
- }
- /**
- * @return mixed
- */
- public function getPass()
- {
- return $this->pass;
- }
- /**
- * @param mixed $pass
- */
- public function setPass($pass)
- {
- $this->pass = $pass;
- }
- /**
- * @return mixed
- */
- public function getComment()
- {
- return $this->comment;
- }
- /**
- * @param mixed $comment
- */
- public function setComment($comment)
- {
- $this->comment = $comment;
- }
- /**
- * @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;
- }
- }
|