Commit 2502dd11 authored by 符运喃's avatar 符运喃

Merge branch 'feature-list-currency-add-where'

parents d7a90f17 610f339a
......@@ -16,11 +16,12 @@ interface DatacenterServiceInterface
* author: fuyunnan
* @param int $currencyId 货币id
* @param array $field 字段
* @param array $where 筛选数组
* @return array
* @throws
* Date: 2020/8/11
*/
public function getCurrencyRate($currencyId, $field = ['id', 'currency_id', 'rate_val']): array;
public function getCurrencyRate($currencyId, $field = ['id', 'currency_id', 'rate_val'], $where = []): array;
/**
......@@ -28,11 +29,12 @@ interface DatacenterServiceInterface
* author: fuyunnan
* @param array $currencyIds 货币ids
* @param array $field 字段
* @param array $where 筛选数组
* @return array
* @throws
* Date: 2020/8/11
*/
public function getCurrencyListRate($currencyIds, $field = ['id', 'currency_id', 'rate_val']): array;
public function getCurrencyListRate($currencyIds, $field = ['id', 'currency_id', 'rate_val'], $where = []): array;
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment