New file |
| | |
| | | package cn.exrick.xboot.your.serviceimpl; |
| | | |
| | | import cn.exrick.xboot.your.mapper.RemoteCallMapper; |
| | | import cn.exrick.xboot.your.entity.RemoteCall; |
| | | import cn.exrick.xboot.your.service.IRemoteCallService; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 远程呼叫记录接口实现 |
| | | * @author zhangzeli |
| | | */ |
| | | @Slf4j |
| | | @Service |
| | | @Transactional |
| | | public class IRemoteCallServiceImpl extends ServiceImpl<RemoteCallMapper, RemoteCall> implements IRemoteCallService { |
| | | |
| | | @Autowired |
| | | private RemoteCallMapper remoteCallMapper; |
| | | } |