详情点击 **/ private $scene; private $apiParas = array(); public function setOrderType($orderType) { $this->orderType = $orderType; $this->apiParas["order_type"] = $orderType; } public function getOrderType() { return $this->orderType; } public function setQueryList($queryList) { $this->queryList = $queryList; $this->apiParas["query_list"] = $queryList; } public function getQueryList() { return $this->queryList; } public function setScene($scene) { $this->scene = $scene; $this->apiParas["scene"] = $scene; } public function getScene() { return $this->scene; } public function getApiMethodName() { return "taobao.trades.sold.query"; } public function getApiParas() { return $this->apiParas; } public function check() { } public function putOtherTextParam($key, $value) { $this->apiParas[$key] = $value; $this->$key = $value; } }