1234567891011121314151617181920212223242526272829303132 |
- 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 org.springframework.stereotype.Component;
- import java.util.List;
- @Component
- public interface FlowMainLogMapper {
- long countByExample(FlowMainLogExample example);
- int deleteByExample(FlowMainLogExample example);
- int deleteByPrimaryKey(String id);
- int insert(FlowMainLog record);
- int insertSelective(FlowMainLog record);
- List<FlowMainLog> 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);
- }
|