liyong
3 小时以前 1a1098e691a4d73799395b7396546af19eebee24
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);
}