agentId = $agentId; $this->apiParas["agent_id"] = $agentId; } public function getAgentId() { return $this->agentId; } public function setFileId($fileId) { $this->fileId = $fileId; $this->apiParas["file_id"] = $fileId; } public function getFileId() { return $this->fileId; } public function setProcessInstanceId($processInstanceId) { $this->processInstanceId = $processInstanceId; $this->apiParas["process_instance_id"] = $processInstanceId; } public function getProcessInstanceId() { return $this->processInstanceId; } public function getApiMethodName() { return "dingtalk.oapi.processinstance.file.download"; } public function getApiParas() { return $this->apiParas; } public function check() { RequestCheckUtil::checkNotNull($this->agentId,"agentId"); RequestCheckUtil::checkNotNull($this->fileId,"fileId"); RequestCheckUtil::checkNotNull($this->processInstanceId,"processInstanceId"); } public function putOtherTextParam($key, $value) { $this->apiParas[$key] = $value; $this->$key = $value; } }