<?php


namespace Meibuyu\Rpc\Service\Interfaces\DatacenterNew;


interface RateServiceInterface
{



    /**
     * 根据币种代码currency_code获取最新 对应的汇率
     * @param array $codes currency_code币种代码数组
     * @param array $month month月份数组
     * @return array
     * @author Zero
     */
    public function getRateByCurrencyCode(array $codes,  array $month = []);


    /**
     * 根据币种代码currency_code获取最新 对应的汇率列表
     * @param array $codes currency_code币种代码数组
     * @param array $month month月份数组
     * @return array
     * @author Zero
     */
    public function getRateList(array $codes=[],  array $month = []);
}