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