package cn.exrick.xboot.your.serviceimpl; import cn.exrick.xboot.your.mapper.AbnormalOpenMapper; import cn.exrick.xboot.your.entity.AbnormalOpen; import cn.exrick.xboot.your.service.IAbnormalOpenService; 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 IAbnormalOpenServiceImpl extends ServiceImpl implements IAbnormalOpenService { @Autowired private AbnormalOpenMapper abnormalOpenMapper; }