新火炬后端单体项目初始化代码
cuilei
4 天以前 e0f827f71f5bb9d1ed9f6414221e90eeb34632a7
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;
}