审查视图

src/main/java/com/tianbo/analysis/dao/CUSTOMSMESSAGEMapper.java 439 字节
申海龙 authored
1 2
package com.tianbo.analysis.dao;
3
import com.tianbo.analysis.model.CUSTOMSMESSAGE;
申海龙 authored
4 5
import com.tianbo.analysis.model.CUSTOMSMESSAGEWithBLOBs;
6 7
import java.util.List;
申海龙 authored
8 9 10 11 12
public interface CUSTOMSMESSAGEMapper {
    int insert(CUSTOMSMESSAGEWithBLOBs record);

    int insertSelective(CUSTOMSMESSAGEWithBLOBs record);
13
    List<CUSTOMSMESSAGEWithBLOBs> selectMessage(String messageId);
14
15
    int updateMessageByMessageid(CUSTOMSMESSAGE record);
申海龙 authored
16
}