新火炬后端单体项目初始化代码
zhangherong
3 天以前 959e5318189e66ad58d07c5bb94789c815b4d2e9
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;
}