liujie
2023-07-25 a0aa8844c4449ccd9fcccb78fcca5102ac15844b
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);
    }
}