Commit 0a814099 authored by Liu lu's avatar Liu lu

供应商调取rpc

parent 61e6389b
<?php
namespace Meibuyu\Rpc\Service\Interfaces\Mdm;
interface SupplyCustomerServiceInterface
{
/**
* @param array $ids 主键id
* @param array $fields 获取的字段数组
* @return array
*/
public function availableList(array $ids,$fields=['*']):array;
/**
* @param array $ids 主键id
* @param array $fields 获取的字段数组
* @return array
*/
public function list(array $ids,$fields=['*']):array;
/**
* @param array $id 主键id
* @param array $fields 获取的字段数组
* @return array
*/
public function get($id,$fields=['*']):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