44323
2023-10-11 232d3efb20f87f9c60faeda7bae4bc96e5687bd3
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;
}