package com.dsh.course.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.dsh.course.entity.CarService;
|
import org.apache.ibatis.annotations.Param;
|
|
public interface CarServiceMapper extends BaseMapper<CarService> {
|
|
|
// CarService query(@Param("type") Integer orderType, @Param("carId") Integer carId);
|
}
|