package com.dsh.course.service.impl; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.dsh.course.entity.SystemPrice; import com.dsh.course.mapper.SystemPriceMapper; import com.dsh.course.service.ISystemPriceService; import org.springframework.stereotype.Service; @Service public class SystemPriceServiceImpl extends ServiceImpl implements ISystemPriceService { @Override public SystemPrice query(Integer companyId, Integer type, Integer serverCarModelId) throws Exception { return this.baseMapper.query(companyId, type, serverCarModelId); } }