wang-hao-jie
2021-11-11 a6868ffbff3fb71be6848c77eab7ea2061e39110
xboot-modules/xboot-your/src/main/java/cn/exrick/xboot/your/serviceimpl/IAbnormalOpenServiceImpl.java
New file
@@ -0,0 +1,26 @@
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<AbnormalOpenMapper, AbnormalOpen> implements IAbnormalOpenService {
    @Autowired
    private AbnormalOpenMapper abnormalOpenMapper;
}