cuijian
2025-05-26 a3fa685014ca577779c47aa540a7735ae58fb30d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.jeecg.modules.tms.service;
 
import org.jeecg.modules.tms.entity.InboundOrder;
import com.baomidou.mybatisplus.extension.service.IService;
import org.jeecg.modules.tms.entity.dto.InboundOrderFlowDto;
import org.jeecg.modules.tms.entity.dto.OutBoundOrderFlowDto;
 
/**
 * @Description: 入库申请单
 * @Author: jeecg-boot
 * @Date:   2025-05-19
 * @Version: V1.0
 */
public interface IInboundOrderService extends IService<InboundOrder> {
 
    boolean submit(String id);
 
    void approvalProcess(InboundOrderFlowDto inboundOrderFlowDto);
}