conversationId = $conversationId; $this->apiParas["conversation_id"] = $conversationId; } public function getConversationId() { return $this->conversationId; } public function setDate($date) { $this->date = $date; $this->apiParas["date"] = $date; } public function getDate() { return $this->date; } public function getApiMethodName() { return "dingtalk.oapi.dingmi.group.get"; } public function getApiParas() { return $this->apiParas; } public function check() { RequestCheckUtil::checkNotNull($this->conversationId,"conversationId"); RequestCheckUtil::checkNotNull($this->date,"date"); } public function putOtherTextParam($key, $value) { $this->apiParas[$key] = $value; $this->$key = $value; } }