20 lines
451 B
Java
20 lines
451 B
Java
package com.peanut.modules.common.dao;
|
|
|
|
import com.peanut.modules.common.entity.OrderCartEntity;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
/**
|
|
* 购物车
|
|
*
|
|
* @author yl
|
|
* @email yl328572838@163.com
|
|
* @date 2022-08-29 15:27:44
|
|
*/
|
|
@Mapper
|
|
public interface OrderCartDao extends BaseMapper<OrderCartEntity> {
|
|
|
|
OrderCartEntity getDeteleOrderCart(Integer userId,Integer productId);
|
|
|
|
}
|