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.

14 lines
344 B

5 years ago
5 years ago
  1. <?php
  2. namespace App\Service\v3\Interfaces;
  3. use App\Model\v3\Goods;
  4. interface GoodsServiceInterface
  5. {
  6. public function do($goodsId);
  7. public function check(Goods $goods,$num = 1);
  8. public function undo();
  9. public function getBanner($goodsId);
  10. public function getByType($storeId,$typeId);
  11. public function update($params);
  12. }