package com.idea.oa.flow2.mapper; import com.idea.oa.flow2.model.FlowMainPush; import com.idea.oa.flow2.model.FlowMainPushExample; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Component; import java.util.List; @Component public interface FlowMainPushMapper { long countByExample(FlowMainPushExample example); int deleteByExample(FlowMainPushExample example); int deleteByPrimaryKey(String id); int insert(FlowMainPush record); int insertSelective(FlowMainPush record); List selectByExample(FlowMainPushExample example); FlowMainPush selectByPrimaryKey(String id); int updateByExampleSelective(@Param("record") FlowMainPush record, @Param("example") FlowMainPushExample example); int updateByExample(@Param("record") FlowMainPush record, @Param("example") FlowMainPushExample example); int updateByPrimaryKeySelective(FlowMainPush record); int updateByPrimaryKey(FlowMainPush record); }