审查视图

src/main/java/com/tianbo/analysis/dao/CUSTOMSMESSAGEMapper.java 451 字节
朱兆平 authored
1
package com.tianbo.analysis.dao;
2
朱兆平 authored
3 4
import com.tianbo.analysis.model.CUSTOMSMESSAGE;
import com.tianbo.analysis.model.CUSTOMSMESSAGEWithBLOBs;
5 6 7 8 9 10 11 12 13 14 15 16

import java.util.List;

public interface CUSTOMSMESSAGEMapper {
    int insert(CUSTOMSMESSAGEWithBLOBs record);

    int insertSelective(CUSTOMSMESSAGEWithBLOBs record);

    List<CUSTOMSMESSAGE> selectCustomResponse(String waybillMasterNo);

    List<CUSTOMSMESSAGE> selectCustomId(String waybillMasterNo);
}