PlatformInfoRequest.php 346 B

12345678910111213141516
  1. <?php
  2. class PlatformInfoRequest extends SdkRequest {
  3. const PLATFORM_INFO = "/company/platforminfo"; // 获取平台方信息
  4. public function getUrl() {
  5. return self::PLATFORM_INFO;
  6. }
  7. public function getHttpParamers() {
  8. $httpParameters = HttpParameter::httpGetParamer();
  9. return $httpParameters;
  10. }
  11. }