GoodsCart.php 423 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace app\api\controller\mall;
  3. use app\common\controller\Api;
  4. /**
  5. * 商城购物车
  6. * @inheritdoc
  7. */
  8. class GoodsCart extends Api
  9. {
  10. protected $noNeedRight="*";
  11. /**
  12. * 添加到购物车
  13. * @ApiMethod (POST)
  14. * @ApiParams (name=sku,type=array,description=规格数组)
  15. * @ApiParams (name=sku[*][sku_id],type=array,description=规格数组)
  16. */
  17. public function add(){
  18. }
  19. }