Pu Zhibing
2024-11-27 5f21fd4703a6893e4385d55dafbf5b2a1a1d7785
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.ruoyi.order.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.order.vo.MyShoppingCartVo;
import model.ShoppingCart;
 
import java.util.List;
 
public interface ShoppingCartService extends IService<ShoppingCart> {
    
    
    /**
     * 获取购物车列表数据
     * @param type
     * @param shopId
     * @return
     */
    List<MyShoppingCartVo> getMyShoppingCart(Integer type, Integer shopId);
}