新火炬后端单体项目初始化代码
zhangherong
3 天以前 afb71a0770acc36a6e062aecf2dfc1c92d2d80a7
1
2
3
4
5
6
7
8
9
10
11
12
package org.jeecg.modules.sap.service;
 
import org.jeecg.modules.sap.request.ProductionOrderSyncRequest;
 
import java.util.Map;
 
public interface ProductionOrderSync {
    /**
     * 同步生成订单
     */
    Map<String, Object> syncProductionOrder(ProductionOrderSyncRequest request) throws Exception;
}