package com.sinata.rest.modular.mall.service;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.sinata.rest.modular.mall.controller.vo.VoGoodsCart;
|
import com.sinata.rest.modular.mall.model.MallGoodsCart;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* 商品购物车 服务类
|
* </p>
|
*
|
* @author goku
|
* @since 2023-03-10
|
*/
|
public interface IMallGoodsCartService extends IService<MallGoodsCart> {
|
|
List<VoGoodsCart> getGoodsCarByUserIdList(Integer userId);
|
|
Integer getGoodsCarNum(Integer userId);
|
}
|