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.
22 lines
673 B
22 lines
673 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 detail($goodsId);
|
|
public function getBanner($goodsId);
|
|
public function getByType($storeId,$typeId);
|
|
public function update($params);
|
|
public function info($goodsId);
|
|
public function getTags();
|
|
public function updateOnSale($goodsId);
|
|
public function bannerDelete($bannerId);
|
|
public function bannerCreate($goodsId, $path, $type = 1);
|
|
public function bannerUpdate($bannerId, $goodsId, $path, $type = 1);
|
|
}
|