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