You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
344 B
15 lines
344 B
<?php
|
|
|
|
namespace App\Service\v3\Interfaces;
|
|
|
|
use App\Model\v3\Goods;
|
|
|
|
interface GoodsServiceInterface
|
|
{
|
|
public function do($goodsId);
|
|
public function check(Goods $goods,$num = 1);
|
|
public function undo();
|
|
public function getBanner($goodsId);
|
|
public function getByType($storeId,$typeId);
|
|
public function update($params);
|
|
}
|