CUSTOMSMESSAGEMapper.java 358 字节
package com.tianbo.analysis.dao;

import com.tianbo.analysis.model.CUSTOMSMESSAGEWithBLOBs;

public interface CUSTOMSMESSAGEMapper {
    int insert(CUSTOMSMESSAGEWithBLOBs record);

    int insertSelective(CUSTOMSMESSAGEWithBLOBs record);

    CUSTOMSMESSAGEWithBLOBs selectMessage(String messageId);

    int updateMessage(CUSTOMSMESSAGEWithBLOBs record);
}