1234567891011121314151617181920212223 |
- <?php
- namespace app\api\controller\mall;
- use app\common\controller\Api;
- /**
- * 商城购物车
- * @inheritdoc
- */
- class GoodsCart extends Api
- {
- protected $noNeedRight="*";
- /**
- * 添加到购物车
- * @ApiMethod (POST)
- * @ApiParams (name=sku,type=array,description=规格数组)
- * @ApiParams (name=sku[*][sku_id],type=array,description=规格数组)
- */
- public function add(){
- }
- }
|