buhuazhen
2026-04-27 6df2d854ea7d8b0d8200dd6572f1c3b5aabecc16
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;
 
public interface SalesQuotationService extends IService<SalesQuotation> {
    IPage listPage(Page page, SalesQuotationDto salesQuotationDto);
 
    boolean add(SalesQuotationDto salesQuotationDto);
 
    boolean delete(Long id);
 
    boolean edit(SalesQuotationDto salesQuotationDto);
}