New file |
| | |
| | | package cn.exrick.xboot.your.serviceimpl; |
| | | |
| | | import cn.exrick.xboot.your.mapper.InsuranceMapper; |
| | | import cn.exrick.xboot.your.entity.Insurance; |
| | | import cn.exrick.xboot.your.service.IInsuranceService; |
| | | 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 IInsuranceServiceImpl extends ServiceImpl<InsuranceMapper, Insurance> implements IInsuranceService { |
| | | |
| | | @Autowired |
| | | private InsuranceMapper insuranceMapper; |
| | | } |