| | |
| | | package org.jeecg.modules.sap.service; |
| | | |
| | | import org.jeecg.modules.sap.request.ProductionOrderSyncRequest; |
| | | |
| | | import java.util.Map; |
| | | |
| | | public interface ProductionOrderSync { |
| | | /** |
| | | * 同步生成订单 |
| | | */ |
| | | Map<String, Object> syncProductionOrder(String factoryCode, String orderTypeCode, String productionManager, String orderStatus, String createTimeLow, String createTimeHigh, String updateTimeLow, String updateTimeHigh) throws Exception; |
| | | Map<String, Object> syncProductionOrder(ProductionOrderSyncRequest request) throws Exception; |
| | | } |