processQueryKey = $processQueryKey; $this->apiParas["process_query_key"] = $processQueryKey; } public function getProcessQueryKey() { return $this->processQueryKey; } public function setToken($token) { $this->token = $token; $this->apiParas["token"] = $token; } public function getToken() { return $this->token; } public function getApiMethodName() { return "dingtalk.oapi.robot.message.grouptask.query"; } public function getApiParas() { return $this->apiParas; } public function check() { RequestCheckUtil::checkNotNull($this->processQueryKey,"processQueryKey"); RequestCheckUtil::checkNotNull($this->token,"token"); } public function putOtherTextParam($key, $value) { $this->apiParas[$key] = $value; $this->$key = $value; } }