package cn.exrick.xboot.your.serviceimpl; import cn.exrick.xboot.your.mapper.EventLogMapper; import cn.exrick.xboot.your.entity.EventLog; import cn.exrick.xboot.your.service.IEventLogService; 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 whj */ @Slf4j @Service @Transactional public class IEventLogServiceImpl extends ServiceImpl implements IEventLogService { @Autowired private EventLogMapper eventLogMapper; }