liujie
2023-07-25 9b1188a004df6585d1836e85e22ee24a91b5fd62
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.dsh.course.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.dsh.course.entity.CarService;
import com.dsh.course.mapper.CarServiceMapper;
import com.dsh.course.service.ICarServiceService;
import org.springframework.stereotype.Service;
 
@Service
public class CarServiceServiceImpl extends ServiceImpl<CarServiceMapper, CarService> implements ICarServiceService {
 
    @Override
    public CarService query(Integer orderType, Integer carId) {
        return this.baseMapper.query(orderType, carId);
    }
}