1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package org.jeecg.modules.sap.service;
|
| import org.jeecg.modules.sap.request.OrderLoadRequest;
|
| import java.util.Map;
|
| public interface OrderLoadService {
| /**
| * 生产订单投料
| * @param request
| * @return
| * @throws Exception
| */
| Map<String, Object> productionOrderLoad(OrderLoadRequest request) throws Exception;
| }
|
|