apiParams; } /** * @return null */ public function getRequestPlatform(){ return $this->interfaceBelongToWhichPlatform; } /** * @notice 无论是openapi还是nop都需要设置appKey参数,所以放到基类中来 * @param int $appKey */ public function setAppKey($appKey){ $this->apiParams['appKey'] = $appKey; } /** * @param $rsaSign * @notice 无论是openapi还是nop都需要设置rsaSign参数,所以放到基类中来 */ public function setRsaSign($rsaSign){ $this->apiParams['rsaSign'] = $rsaSign; } }