package com.jsowell.pile.mapper; import com.jsowell.pile.domain.OrderSplitInfo; import org.apache.ibatis.annotations.Param; import java.util.List; public interface OrderSplitInfoMapper { int deleteByPrimaryKey(Integer id); int insert(OrderSplitInfo record); int insertOrUpdate(OrderSplitInfo record); int insertOrUpdateSelective(OrderSplitInfo record); int insertSelective(OrderSplitInfo record); OrderSplitInfo selectByPrimaryKey(Integer id); int updateByPrimaryKeySelective(OrderSplitInfo record); int updateByPrimaryKey(OrderSplitInfo record); int updateBatch(List list); int updateBatchSelective(List list); int batchInsert(@Param("list") List list); }