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

import com.tianbo.analysis.model.CUSTOMSMESSAGE;
import com.tianbo.analysis.model.CUSTOMSMESSAGEWithBLOBs;

import java.util.List;

public interface CUSTOMSMESSAGEMapper {
    int insert(CUSTOMSMESSAGEWithBLOBs record);

    int insertSelective(CUSTOMSMESSAGEWithBLOBs record);

    List<CUSTOMSMESSAGEWithBLOBs> selectMessage(String messageId);

    int updateMessageByMessageid(CUSTOMSMESSAGE record);
}