Commit a8461ab3 authored by zhangdongying's avatar zhangdongying

新增获取启用的供应商列表(通过状态)

parent af1bd363
...@@ -83,4 +83,13 @@ interface SupplyServiceInterface ...@@ -83,4 +83,13 @@ interface SupplyServiceInterface
* @return array keyBy('code') * @return array keyBy('code')
*/ */
public function getSupplierListByCodes(array $codes, array $columns = ['*']): array; public function getSupplierListByCodes(array $codes, array $columns = ['*']): array;
/**
* 获取启用的供应商列表(通过状态)
*
* @param int $status 状态,1-审批,2-正常,4-取消,5-拒绝
* @param array $columns 字段数组
* @return array
*/
public function getEnableSupplierListByStatus(int $status, 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