**/ private $ext; private $apiParas = array(); public function setBizId($bizId) { $this->bizId = $bizId; $this->apiParas["biz_id"] = $bizId; } public function getBizId() { return $this->bizId; } public function setExt($ext) { $this->ext = $ext; $this->apiParas["ext"] = $ext; } public function getExt() { return $this->ext; } public function getApiMethodName() { return "dingtalk.isv.blazers.generatecode"; } public function getApiParas() { return $this->apiParas; } public function check() { RequestCheckUtil::checkNotNull($this->bizId,"bizId"); RequestCheckUtil::checkNotNull($this->ext,"ext"); } public function putOtherTextParam($key, $value) { $this->apiParas[$key] = $value; $this->$key = $value; } }