TEtlMessageMapper.java 1.2 KB
package com.tianbo.mapper;

import com.tianbo.model.TEtlMessage;
import com.tianbo.model.TEtlMessageExample;
import java.math.BigDecimal;
import java.util.List;
import org.apache.ibatis.annotations.Param;

public interface TEtlMessageMapper {
    int countByExample(TEtlMessageExample example);

    int deleteByExample(TEtlMessageExample example);

    int deleteByPrimaryKey(BigDecimal fid);

    int insert(TEtlMessage record);

    int insertSelective(TEtlMessage record);

    List<TEtlMessage> selectByExampleWithBLOBs(TEtlMessageExample example);

    List<TEtlMessage> selectByExample(TEtlMessageExample example);

    TEtlMessage selectByPrimaryKey(BigDecimal fid);

    int updateByExampleSelective(@Param("record") TEtlMessage record, @Param("example") TEtlMessageExample example);

    int updateByExampleWithBLOBs(@Param("record") TEtlMessage record, @Param("example") TEtlMessageExample example);

    int updateByExample(@Param("record") TEtlMessage record, @Param("example") TEtlMessageExample example);

    int updateByPrimaryKeySelective(TEtlMessage record);

    int updateByPrimaryKeyWithBLOBs(TEtlMessage record);

    int updateByPrimaryKey(TEtlMessage record);
}