From 34503a2e9a29418346a4ac8f84170ab8f4321d6e Mon Sep 17 00:00:00 2001
From: 1 <1@123>
Date: 星期四, 19 三月 2026 15:19:05 +0800
Subject: [PATCH] lsh#行号适配

---
 rsf-open-api/src/main/java/com/vincent/rsf/openApi/service/phyz/ErpReportService.java |   12 ++++++++++--
 1 files changed, 10 insertions(+), 2 deletions(-)

diff --git a/rsf-open-api/src/main/java/com/vincent/rsf/openApi/service/phyz/ErpReportService.java b/rsf-open-api/src/main/java/com/vincent/rsf/openApi/service/phyz/ErpReportService.java
index 41da840..730d1b4 100644
--- a/rsf-open-api/src/main/java/com/vincent/rsf/openApi/service/phyz/ErpReportService.java
+++ b/rsf-open-api/src/main/java/com/vincent/rsf/openApi/service/phyz/ErpReportService.java
@@ -2,16 +2,24 @@
 
 import com.alibaba.fastjson.JSONObject;
 import com.vincent.rsf.openApi.entity.dto.CommonResponse;
-import com.vincent.rsf.openApi.entity.phyz.Order;
+import com.vincent.rsf.openApi.entity.phyz.*;
 
 import java.io.UnsupportedEncodingException;
 import java.security.NoSuchAlgorithmException;
+import java.util.List;
 
 public interface ErpReportService {
 
-    int addOrderToServer(Order order);
+    String syncMaterial(List<Material> materialList);
+    String syncWareHouse(List<Warehouse> warehouseList);
+    String syncCustomer(List<Customer> customerList);
+    String syncSupplier(List<Supplier> supplierList);
+    String addOrderToServer(Order order);
+    String addOrderToServerNew(Order order);
 
     JSONObject loginBySign() throws UnsupportedEncodingException, NoSuchAlgorithmException;
 
     CommonResponse reportInOrOutBound(Object params);
+
+    CommonResponse reportOrderNew(Object params);
 }

--
Gitblit v1.9.1