FlowMainLogMapper.java 976 B

1234567891011121314151617181920212223242526272829303132
  1. package com.idea.oa.flow2.mapper;
  2. import com.idea.oa.flow2.model.FlowMainLog;
  3. import com.idea.oa.flow2.model.FlowMainLogExample;
  4. import org.apache.ibatis.annotations.Param;
  5. import org.springframework.stereotype.Component;
  6. import java.util.List;
  7. @Component
  8. public interface FlowMainLogMapper {
  9. long countByExample(FlowMainLogExample example);
  10. int deleteByExample(FlowMainLogExample example);
  11. int deleteByPrimaryKey(String id);
  12. int insert(FlowMainLog record);
  13. int insertSelective(FlowMainLog record);
  14. List<FlowMainLog> selectByExample(FlowMainLogExample example);
  15. FlowMainLog selectByPrimaryKey(String id);
  16. int updateByExampleSelective(@Param("record") FlowMainLog record, @Param("example") FlowMainLogExample example);
  17. int updateByExample(@Param("record") FlowMainLog record, @Param("example") FlowMainLogExample example);
  18. int updateByPrimaryKeySelective(FlowMainLog record);
  19. int updateByPrimaryKey(FlowMainLog record);
  20. }