api_response_body.php 366 B

1234567891011121314
  1. <?php
  2. $config = include('platform_request_body.php');
  3. unset($config['struct']['platform_id']);
  4. //$config['struct']['value']['name'] = '转换参数名';
  5. $config['struct'] += array
  6. (
  7. 'api_id' => array
  8. (
  9. 'name' => '接口id',
  10. 'type' => 'int(11)',
  11. ),
  12. );
  13. $config['name'] = '接口响应体参数配置';
  14. return $config;