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.cancel"; } public function getApiParas() { return $this->apiParas; } public function check() { RequestCheckUtil::checkNotNull($this->nick,"nick"); } public function putOtherTextParam($key, $value) { $this->apiParas[$key] = $value; $this->$key = $value; } }