package com.dsh.course.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.dsh.course.entity.ServerCarModel; import org.apache.ibatis.annotations.Param; import java.util.List; public interface ServerCarModelMapper extends BaseMapper { /** * 获取业务对应的所有有效服务车型 * @param type * @return */ List queryServerCarModel(@Param("type") Integer type); }