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