package com.farriver.bwf.data.master.mapper; import com.farriver.bwf.data.master.entity.ShoppingCartExtend; import com.farriver.bwf.data.master.model.ShoppingCart; import com.farriver.bwf.data.master.model.ShoppingCartExample; import java.util.List; import org.apache.ibatis.annotations.Param; public interface ShoppingCartMapper { long countByExample(ShoppingCartExample example); int deleteByExample(ShoppingCartExample example); int deleteByPrimaryKey(String id); int insert(ShoppingCart record); int insertSelective(ShoppingCart record); List selectByExample(ShoppingCartExample example); List selectShoppingCartExtendByExample(ShoppingCartExample example); ShoppingCart selectByPrimaryKey(String id); int updateByExampleSelective(@Param("record") ShoppingCart record, @Param("example") ShoppingCartExample example); int updateByExample(@Param("record") ShoppingCart record, @Param("example") ShoppingCartExample example); int updateByPrimaryKeySelective(ShoppingCart record); int updateByPrimaryKey(ShoppingCart record); }