Commit 312eafc1 by xmy

feat:# 购物车接口

parent a3c99271
<?php
/**
* Created by PhpStorm.
* User: work
* Date: 2019-03-15
* Time: 16:22
*/
namespace Hdll\Services\Goods\Lib;
use Swoft\Core\ResultInterface;
use Swoft\Rpc\Server\Bean\Annotation\Service;
/**
* @method ResultInterface deferGetByIds(int $storeId, int $buyerId, array $ids)
* @method ResultInterface deferDeleteByIds(int $storeId, int $buyerId, array $ids)
* @Service()
* Interface ShoppingCartInterface
*/
interface ShoppingCartInterface
{
public function getByIds(int $storeId,int $buyerId,array $ids);
public function deleteByIds(int $storeId,int $buyerId,array $ids);
}
\ 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