Commit 4a336878 authored by zhangdongying's avatar zhangdongying

新增RPC

parent b5471714
...@@ -97,4 +97,13 @@ interface PurchaseInfoServiceInterface ...@@ -97,4 +97,13 @@ interface PurchaseInfoServiceInterface
* @return array keyBy('purchase_no') * @return array keyBy('purchase_no')
*/ */
public function getPurchaseOrderListByNos(array $purchaseNos, array $columns = ['*']): array; public function getPurchaseOrderListByNos(array $purchaseNos, array $columns = ['*']): array;
/**
* 获取采购单列表(根据批次号)
*
* @param array $batchNos 批次号,数组
* @param array $columns 列名,数组
* @return array keyBy('batch_no')
*/
public function getPurchaseOrderListByBatchNo(array $batchNos, 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