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