Mt4PricesApi.php 273 B

123456789101112131415161718
  1. <?php
  2. namespace backend\models;
  3. class Mt4PricesApi extends BaseApi
  4. {
  5. public $apiUrl = 'mt4-prices';
  6. /**
  7. * 获取报价
  8. */
  9. public function getPricesList()
  10. {
  11. $result = $this->get($this->apiUrl . '/list', []);
  12. return $result;
  13. }
  14. }