新火炬后端单体项目初始化代码
cuilei
6 天以前 3ca99a04cff5dc72a8f1a4b4448ca592f915237f
1
2
3
4
5
6
7
8
9
10
11
12
package org.jeecg.modules.sap.service;
 
import java.util.Map;
 
public interface OrderProcessSync {
    /**
     * 同步订单工序数据
     * @return
     * @throws Exception
     */
    Map<String, Object> syncOrderProcess(String factoryCode, String orderCode) throws Exception;
}