SendLogServiceImpl.java
747 字节
package com.tianbo.analysis.service.imp;
import com.tianbo.analysis.dao.SENDLOGMapper;
import com.tianbo.analysis.model.SENDLOG;
import com.tianbo.analysis.service.SendLogService;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.util.List;
@Service
public class SendLogServiceImpl implements SendLogService {
@Resource
SENDLOGMapper sendlogMapper;
@Override
public List<SENDLOG> selectByMessageId(String messageautoid) {
return sendlogMapper.selectByMessageId(messageautoid);
}
@Override
public List<SENDLOG> checkWaybillPermit(String waybillno) {
List<SENDLOG> sendlogs = sendlogMapper.checkWaybillPermit(waybillno);
return sendlogs;
}
}