Commit c9c4bf2c by 王召彬

添加店铺管理RPC接口

parent 4a08e80f
<?php
/**
* This file is part of Swoft.
*
* @link https://swoft.org
* @document https://doc.swoft.org
* @contact group@swoft.org
* @license https://github.com/swoft-cloud/swoft/blob/master/LICENSE
*/
namespace Hdll\Services\Shop\Lib;
use Swoft\Core\ResultInterface;
/**
* The interface of store service
*
* @method ResultInterface deferIsCertified(int $storeId)
*/
interface StoreInterface
{
/**
* 查询店铺是否已实名认证(企业认证)
*
* @param integer $storeId
* @return boolean
*/
public function isCertified(int $storeId);
}
\ No newline at end of file
<?php
namespace Hdll\Services\Shop\Lib;
interface TestInterface
{
/**
* 测试
*
* @param string $var
* @return void
*/
public function testRpc(string $var);
}
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