liding
4 天以前 c494daaad7f53cd353e21e7a38a40df4d048ba5a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.ruoyi.sales.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.sales.pojo.SalesLedgerProduct;
 
import java.util.List;
 
/**
 * 产品信息Service接口
 *
 * @author ruoyi
 * @date 2025-05-08
 */
public interface ISalesLedgerProductService extends IService<SalesLedgerProduct> {
 
    SalesLedgerProduct selectSalesLedgerProductById(Long id);
 
    List<SalesLedgerProduct> selectSalesLedgerProductList(SalesLedgerProduct salesLedgerProduct);
 
    int deleteSalesLedgerProductByIds(Long[] ids);
 
    int addOrUpdateSalesLedgerProduct(SalesLedgerProduct salesLedgerProduct);
}