123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- <?php
- class AddEndSignAttachmentRequest extends SdkRequest {
- const REQUEST_URL = "/v2/contract/forceend/addattachment"; // 附件接口地址
- private $contractId;
- private $bizId;
- private $tenantName;
- private $title;
- private $fileSuffix;
- private $file;
- public function getUrl() {
- return self::REQUEST_URL;
- }
- public function getHttpParamers() {
- $paramSwitcher = ParamSwitcher::instanceParam();
- $paramSwitcher->addParam('contractId', $this->contractId);
- $paramSwitcher->addParam('bizId', $this->bizId);
- $paramSwitcher->addParam('tenantName', $this->tenantName);
- $paramSwitcher->addParam('title',$this->title);
- $paramSwitcher->addParam('fileSuffix',$this->fileSuffix);
- $paramSwitcher->addParam('file',$this->file);
- $httpParameters = HttpParameter::httpPostParamer();
- $httpParameters->setParams($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 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 getTitle()
- {
- return $this->title;
- }
- /**
- * @param mixed $title
- */
- public function setTitle($title)
- {
- $this->title = $title;
- }
- /**
- * @return mixed
- */
- public function getFileSuffix()
- {
- return $this->fileSuffix;
- }
- /**
- * @param mixed $fileSuffix
- */
- public function setFileSuffix($fileSuffix)
- {
- $this->fileSuffix = $fileSuffix;
- }
- /**
- * @return mixed
- */
- public function getFile()
- {
- return $this->file;
- }
- /**
- * @param mixed $file
- */
- public function setFile($file)
- {
- $this->file = $file;
- }
- }
|