SENDLOGMapper.java
372 字节
package com.tianbo.analysis.dao;
import com.tianbo.analysis.model.SENDLOG;
import java.util.List;
public interface SENDLOGMapper {
List<SENDLOG> selectByMessageId(String messageautoid);
List<SENDLOG> checkWaybillPermit(String waybillno);
int insert(SENDLOG record);
int insertSelective(SENDLOG record);
int batchInsert(List<SENDLOG> record);
}