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 implements ICarServiceService { @Override public CarService query(Integer orderType, Integer carId) { return this.baseMapper.query(orderType, carId); } }