审查视图

src/main/java/com/tianbo/imfClient/dao/T_ETL_MESSAGEMapper.java 512 字节
朱兆平 authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
package com.tianbo.imfClient.dao;

import com.tianbo.imfClient.model.T_ETL_MESSAGE;

import java.math.BigDecimal;

public interface T_ETL_MESSAGEMapper {
    int deleteByPrimaryKey(BigDecimal fid);

    int insert(T_ETL_MESSAGE record);

    int insertSelective(T_ETL_MESSAGE record);

    T_ETL_MESSAGE selectByPrimaryKey(BigDecimal fid);

    int updateByPrimaryKeySelective(T_ETL_MESSAGE record);

    int updateByPrimaryKeyWithBLOBs(T_ETL_MESSAGE record);

    int updateByPrimaryKey(T_ETL_MESSAGE record);
}