FlowEventMapper.java 1.2 KB
package com.viontech.fanxing.query.mapper;

import com.viontech.fanxing.commons.base.BaseMapper;
import com.viontech.fanxing.commons.model.FlowEvent;
import com.viontech.fanxing.commons.model.FlowEventExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;

public interface FlowEventMapper extends BaseMapper {
    int countByExample(FlowEventExample example);

    int deleteByExample(FlowEventExample example);

    int deleteByPrimaryKey(Long id);

    int insert(FlowEvent record);

    int insertSelective(FlowEvent record);

    List<FlowEvent> selectByExampleWithBLOBs(FlowEventExample example);

    List<FlowEvent> selectByExample(FlowEventExample example);

    FlowEvent selectByPrimaryKey(Long id);

    int updateByExampleSelective(@Param("record") FlowEvent record, @Param("example") FlowEventExample example);

    int updateByExampleWithBLOBs(@Param("record") FlowEvent record, @Param("example") FlowEventExample example);

    int updateByExample(@Param("record") FlowEvent record, @Param("example") FlowEventExample example);

    int updateByPrimaryKeySelective(FlowEvent record);

    int updateByPrimaryKeyWithBLOBs(FlowEvent record);

    int updateByPrimaryKey(FlowEvent record);
}