zhangherong
2025-06-25 23855599412c4d61b38d78f0f3abd3430a48b5b1
lxzn-module-tms/src/main/java/org/jeecg/modules/tms/service/IInboundOrderService.java
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,27 @@
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: å…¥åº“申请单
 * @Author: jeecg-boot
 * @Date:   2025-05-19
 * @Version: V1.0
 */
public interface IInboundOrderService extends IService<InboundOrder> {
    boolean submit(String id);
    void approvalProcess(InboundOrderFlowDto inboundOrderFlowDto);
    List<Map<String,String>> addInStorage(JSONObject jSONObject);
    List<Map<String,String>> addApplyInStorage(JSONObject jSONObject);
}