|
|
|
|
@ -2,6 +2,7 @@ package com.sky.mapper;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import com.sky.entity.ShoppingCart;
|
|
|
|
|
import org.apache.ibatis.annotations.Delete;
|
|
|
|
|
import org.apache.ibatis.annotations.Insert;
|
|
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
|
import org.apache.ibatis.annotations.Update;
|
|
|
|
|
@ -33,4 +34,11 @@ public interface ShoppingCartMapper {
|
|
|
|
|
@Insert("insert into shopping_cart (name, user_id, dish_id, setmeal_id, dish_flavor, number, amount, image, create_time) " +
|
|
|
|
|
" values (#{name},#{userId},#{dishId},#{setmealId},#{dishFlavor},#{number},#{amount},#{image},#{createTime})")
|
|
|
|
|
void insert(ShoppingCart shoppingCart);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 根据用户id删除购物车数据
|
|
|
|
|
* @param userId
|
|
|
|
|
*/
|
|
|
|
|
@Delete("delete from shopping_cart where user_id = #{uerId}")
|
|
|
|
|
void deleteByUserId(Long userId);
|
|
|
|
|
}
|
|
|
|
|
|