maven
6 天以前 e5e8464e8a6385683187b3459f8bfb5f9682a8ae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.ruoyi.sales.service;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.sales.dto.SalesQuotationDto;
import com.ruoyi.sales.pojo.SalesQuotation;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
 
import java.math.BigDecimal;
 
public interface SalesQuotationService extends IService<SalesQuotation> {
    IPage listPage(Page page, SalesQuotationDto salesQuotationDto);
 
    boolean add(SalesQuotationDto salesQuotationDto);
 
    boolean delete(Long id);
 
    boolean edit(SalesQuotationDto salesQuotationDto);
 
 
    BigDecimal detail(String type, String productName, String specification);
}