liding
6 天以前 0050395dfb05425f0a929bc1587b971d78f1e95e
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
package com.ruoyi.purchase.service;
 
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.purchase.dto.PurchaseLedgerDto;
import com.ruoyi.purchase.pojo.PurchaseLedger;
 
import java.io.IOException;
import java.util.List;
 
/**
 * 采购台账Service接口
 *
 * @author ruoyi
 * @date 2025-05-09
 */
public interface IPurchaseLedgerService extends IService<PurchaseLedger> {
 
    List<PurchaseLedger> selectPurchaseLedgerList(PurchaseLedger purchaseLedger);
 
    int addOrEditPurchase(PurchaseLedgerDto purchaseLedgerDto) throws IOException;
 
    int deletePurchaseLedgerByIds(Long[] ids);
 
    PurchaseLedgerDto getPurchaseById(PurchaseLedgerDto purchaseLedgerDto);
 
    List getProduct(PurchaseLedgerDto purchaseLedgerDto);
 
    PurchaseLedgerDto getInfo(PurchaseLedgerDto purchaseLedgerDto);
 
    List getPurchasesNo();
 
    PurchaseLedgerDto getPurchaseNoById(Long id);
}