puzhibing
2024-03-04 7e7f901b2172281dc294dfbc67e6ad00625f09f4
cloud-server-management/src/main/java/com/dsh/course/service/ISystemPriceService.java
New file
@@ -0,0 +1,19 @@
package com.dsh.course.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.dsh.course.entity.SystemPrice;
public interface ISystemPriceService extends IService<SystemPrice> {
    /**
     * 获取系统计价规则
     * @param companyId
     * @param type
     * @param serverCarModelId
     * @return
     * @throws Exception
     */
    SystemPrice query(Integer companyId, Integer type, Integer serverCarModelId) throws Exception;
}