审查视图

src/main/java/com/tianbo/analysis/service/imp/SendLogServiceImpl.java 747 字节
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
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;

    }
}