- <?php
- class PlatformInfoRequest extends SdkRequest {
- const PLATFORM_INFO = "/company/platforminfo"; // 获取平台方信息
- public function getUrl() {
- return self::PLATFORM_INFO;
- }
- public function getHttpParamers() {
- $httpParameters = HttpParameter::httpGetParamer();
- return $httpParameters;
- }
- }
|