<?php namespace backend\models; class Mt4PricesApi extends BaseApi { public $apiUrl = 'mt4-prices'; /** * 获取报价 */ public function getPricesList() { $result = $this->get($this->apiUrl . '/list', []); return $result; } }