package com.ruoyi.sales.service;
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
import com.ruoyi.sales.pojo.SalesLedgerProductProcess;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
/**
|
* <p>
|
* 销售产品加工明细 服务类
|
* </p>
|
*
|
* @author deslrey
|
* @since 2026-03-25
|
*/
|
public interface ISalesLedgerProductProcessService extends IService<SalesLedgerProductProcess> {
|
|
Page<SalesLedgerProductProcess> salesLedgerProductProcessList(Page<SalesLedgerProductProcess> page, String name);
|
|
void addProcess(SalesLedgerProductProcess process);
|
|
void updateProcess(SalesLedgerProductProcess process);
|
|
void deleteProcess(Integer id);
|
}
|