新火炬后端单体项目初始化代码
cuilei
3 天以前 af0f58e4b39a363b73587fa1b4cce7be46e203f5
1
2
3
4
5
6
7
8
9
10
11
12
13
package org.jeecg.modules.sap.service;
 
import java.util.Map;
 
public interface OrderCloseService {
    /**
     * 生产订单关闭
     * @param orderCode
     * @return
     * @throws Exception
     */
    Map<String, Object> productionOrderClose(String orderCode) throws Exception;
}