Commit 5fa32d50 authored by 王源's avatar 王源 🎧

添加获取基础信息RPC接口

parent 26428cbc
......@@ -28,4 +28,28 @@ interface BaseInfoServiceInterface
*/
public function getCountryListByIdList(array $idList, array $columns = ['*']): array;
/**
* 通过id数组获取团队数组
* @param array $idList
* @param array $columns
* @return array
*/
public function getTeamListByIdList(array $idList, array $columns = ['id', 'name']): array;
/**
* 通过id数组获取站点数组
* @param array $idList
* @param array $columns
* @return array
*/
public function getSiteListByIdList(array $idList, array $columns = ['id', 'name']): array;
/**
* 通过id数组获取货币数组
* @param array $idList
* @param array $columns
* @return array
*/
public function getCurrencyListByIdList(array $idList, array $columns = ['id', 'name']): array;
}
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