CUSTOMSMESSAGEMapper.java 451 字节
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<CUSTOMSMESSAGE> selectCustomResponse(String waybillMasterNo);

    List<CUSTOMSMESSAGE> selectCustomId(String waybillMasterNo);
}