Commit 08e52ead authored by Bob Lee Swagger's avatar Bob Lee Swagger

财务中心RPC

parent 0e0eadd3
<?php
/**
* Created by PhpStorm.
* User: qiudongfang
* Date: ${DATA}
* Time: 下午2:57
*/
namespace Meibuyu\Rpc\Service\Interfaces\Finance;
interface ApplyMoneyServiceInterface
{
/**
* @param array $data
* @return mixed
*/
public function createApplyMoney($data);
}
<?php
/**
* Created by PhpStorm.
* User: qiudongfang
* Date: ${DATA}
* Time: 下午2:57
*/
namespace Meibuyu\Rpc\Service\Interfaces\Finance;
interface PurchaseOrderServiceInterface
{
/**
* @param array $data
* @return mixed
*/
public function createPurchaseOrder($data);
/**
* @param array $data
* @param int $id
* @return mixed
*/
public function updatePurchaseOrder($id, $data);
}
<?php
/**
* Created by PhpStorm.
* User: qiudongfang
* Date: ${DATA}
* Time: 下午2:51
*/
namespace Meibuyu\Rpc\Service\Interfaces\Finance;
interface SupplierServiceInterface
{
/**
* @param array $data
* @return mixed
*/
public function createSupplier($data);
}
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