maven
2026-01-20 eba011c9c3a25e73763eb420e9c3275cc1112bab
src/main/java/com/ruoyi/sales/service/SalesQuotationService.java
@@ -6,6 +6,9 @@
import com.ruoyi.sales.pojo.SalesQuotation;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import java.math.BigDecimal;
import java.util.List;
public interface SalesQuotationService extends IService<SalesQuotation> {
    IPage listPage(Page page, SalesQuotationDto salesQuotationDto);
@@ -14,4 +17,6 @@
    boolean delete(Long id);
    boolean edit(SalesQuotationDto salesQuotationDto);
    BigDecimal detail(String type, String productName, String specification);
}