fields = $fields; $this->apiParas["fields"] = $fields; } public function getFields() { return $this->fields; } public function setNick($nick) { $this->nick = $nick; $this->apiParas["nick"] = $nick; } public function getNick() { return $this->nick; } public function setUserPlatform($userPlatform) { $this->userPlatform = $userPlatform; $this->apiParas["user_platform"] = $userPlatform; } public function getUserPlatform() { return $this->userPlatform; } public function getApiMethodName() { return "taobao.tmc.user.get"; } public function getApiParas() { return $this->apiParas; } public function check() { RequestCheckUtil::checkNotNull($this->fields,"fields"); RequestCheckUtil::checkNotNull($this->nick,"nick"); RequestCheckUtil::checkMaxLength($this->nick,100,"nick"); } public function putOtherTextParam($key, $value) { $this->apiParas[$key] = $value; $this->$key = $value; } }