Commit d55adb5b authored by 秦俊坤's avatar 秦俊坤

新增采购需求相关 RPC 接口

parent 7f5609af
<?php
namespace Meibuyu\Rpc\Service\Interfaces\PurchaseNew;
interface PurchaseDemandServiceInterface
{
/**
* 同步请款状态
* 审核通过
* {
"purchase_id":"采购单id",
* "reject_reason":"驳回缘由", 审核驳回需要填充
* "flag":true|false //true审核通过 false审核驳回
* }
* @return mixed
*/
public function createPurchaseDemand(array $data);
/**
* 扫描物流号或批次号查询
* @param array $demandIds
* @return bool
*/
public function deleteDemandByIds(array $demandIds): bool;
}
\ 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