bizCode = $bizCode; $this->apiParas["biz_code"] = $bizCode; } public function getBizCode() { return $this->bizCode; } public function setDeliverChannel($deliverChannel) { $this->deliverChannel = $deliverChannel; $this->apiParas["deliver_channel"] = $deliverChannel; } public function getDeliverChannel() { return $this->deliverChannel; } public function setDeliverMsg($deliverMsg) { $this->deliverMsg = $deliverMsg; $this->apiParas["deliver_msg"] = $deliverMsg; } public function getDeliverMsg() { return $this->deliverMsg; } public function setDeliverOuterId($deliverOuterId) { $this->deliverOuterId = $deliverOuterId; $this->apiParas["deliver_outer_id"] = $deliverOuterId; } public function getDeliverOuterId() { return $this->deliverOuterId; } public function setDeliverStatus($deliverStatus) { $this->deliverStatus = $deliverStatus; $this->apiParas["deliver_status"] = $deliverStatus; } public function getDeliverStatus() { return $this->deliverStatus; } public function setJobId($jobId) { $this->jobId = $jobId; $this->apiParas["job_id"] = $jobId; } public function getJobId() { return $this->jobId; } public function getApiMethodName() { return "dingtalk.oapi.ats.job.deliver.add"; } public function getApiParas() { return $this->apiParas; } public function check() { RequestCheckUtil::checkNotNull($this->bizCode,"bizCode"); RequestCheckUtil::checkNotNull($this->deliverChannel,"deliverChannel"); RequestCheckUtil::checkNotNull($this->deliverStatus,"deliverStatus"); RequestCheckUtil::checkNotNull($this->jobId,"jobId"); } public function putOtherTextParam($key, $value) { $this->apiParas[$key] = $value; $this->$key = $value; } }