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