package org.jeecg.modules.sap.service; import java.util.Map; public interface OrderProcessSync { /** * 同步订单工序数据 * @return * @throws Exception */ Map syncOrderProcess(String factoryCode, String orderCode) throws Exception; }