gongchunyi
7 天以前 5b08b6df3883a502990785a23dc2ecc9e58e0e41
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);
}