xiangpei
2025-05-27 f2cc79e9e83aafacc1af0e2c86e3c8df384fc895
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package cn.lili.modules.purchase.service;
 
 
import cn.lili.modules.purchase.entity.dos.PurchaseQuoted;
import cn.lili.modules.purchase.entity.vos.PurchaseQuotedVO;
import com.baomidou.mybatisplus.extension.service.IService;
 
import java.util.List;
 
/**
 * 采购单报价业务层
 *
 * @author Bulbasaur
 * @since 2020/11/26 16:12
 */
public interface PurchaseQuotedService extends IService<PurchaseQuoted> {
    /**
     * 添加报价单
     *
     * @param purchaseQuotedVO 报价单
     * @return 报价单
     */
    PurchaseQuotedVO addPurchaseQuoted(PurchaseQuotedVO purchaseQuotedVO);
 
    /**
     * 根据采购单获取报价单列表
     *
     * @param purchaseOrderId 采购单ID
     * @return 报价单列表
     */
    List<PurchaseQuoted> getByPurchaseOrderId(String purchaseOrderId);
 
    /**
     * 获取采购单VO
     * @param id 采购单ID
     * @return 采购单VO
     */
    PurchaseQuotedVO getById(String id);
}