Pu Zhibing
2024-11-27 64a71565792d4f2e9fd31eab6e98e972c12daa86
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);
}