Commit f2e0b8fc authored by zhangdongying's avatar zhangdongying

新增获取供应商列表(通过供应商ID)RPC接口

parent 39500d3c
......@@ -92,4 +92,13 @@ interface SupplyServiceInterface
* @return array
*/
public function getEnableSupplierListByStatus(int $status, array $columns = ['*']): array;
/**
* 获取供应商列表(通过供应商ID)
*
* @param array $ids 供应商ID数组
* @param array $columns 字段数组
* @return array keyBy('id')
*/
public function getSupplierListByIds(array $ids, array $columns = ['*']): 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