package com.tianbo.imfClient.dao; import com.tianbo.imfClient.model.CUSTOMSMESSAGE; import com.tianbo.imfClient.model.CUSTOMSMESSAGEWithBLOBs; 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); }