gongchunyi
10 小时以前 64c5103ed52d6c07a3abaaf8cc62a2b5b7b4d249
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.ruoyi.sales.service;
 
import com.ruoyi.sales.pojo.SalesLedgerProductProcess;
import com.ruoyi.sales.pojo.SalesLedgerProductProcessBind;
import com.baomidou.mybatisplus.extension.service.IService;
 
import java.util.List;
 
/**
 * <p>
 * 销售产品额外加工数量 服务类
 * </p>
 *
 * @author deslrey
 * @since 2026-03-25
 */
public interface ISalesLedgerProductProcessBindService extends IService<SalesLedgerProductProcessBind> {
 
    void updateProductProcessBind(List<SalesLedgerProductProcess> list, Long salesLedgerProductId);
 
}