puzhibing
2023-06-13 11b4c2cf16ff93e4e4955f88db3ae9c28d6f7782
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.SystemPrice;
import com.dsh.course.mapper.SystemPriceMapper;
import com.dsh.course.service.ISystemPriceService;
import org.springframework.stereotype.Service;
 
@Service
public class SystemPriceServiceImpl extends ServiceImpl<SystemPriceMapper, SystemPrice> implements ISystemPriceService {
 
    @Override
    public SystemPrice query(Integer companyId, Integer type, Integer serverCarModelId) throws Exception {
        return this.baseMapper.query(companyId, type, serverCarModelId);
    }
}