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