cuijian
2025-06-18 a65937bb7d85168af8256f917aad1aa12c0b8c1d
lxzn-module-tms/src/main/java/org/jeecg/modules/tms/service/IInboundOrderService.java
@@ -1,9 +1,13 @@
package org.jeecg.modules.tms.service;
import com.alibaba.fastjson.JSONObject;
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;
import java.util.List;
import java.util.Map;
/**
 * @Description: 入库申请单
@@ -16,4 +20,8 @@
    boolean submit(String id);
    void approvalProcess(InboundOrderFlowDto inboundOrderFlowDto);
    List<Map<String,String>> addInStorage(JSONObject jSONObject);
    List<Map<String,String>> addApplyInStorage(JSONObject jSONObject);
}