From 5ef6c105aca5bd7c0c63ce3240fbe82c2e07e8f7 Mon Sep 17 00:00:00 2001
From: 1 <1@123>
Date: 星期三, 18 三月 2026 13:46:05 +0800
Subject: [PATCH] lsh#// rsf-server本机调用直通,不需要Token

---
 rsf-open-api/src/main/java/com/vincent/rsf/openApi/service/phyz/ErpReportService.java |   11 ++++++++++-
 1 files changed, 10 insertions(+), 1 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 11f5d31..268749e 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
@@ -1,13 +1,22 @@
 package com.vincent.rsf.openApi.service.phyz;
 
+import com.alibaba.fastjson.JSONObject;
 import com.vincent.rsf.openApi.entity.dto.CommonResponse;
+import com.vincent.rsf.openApi.entity.phyz.*;
 
 import java.io.UnsupportedEncodingException;
 import java.security.NoSuchAlgorithmException;
+import java.util.List;
 
 public interface ErpReportService {
 
-    void loginBySign() throws UnsupportedEncodingException, NoSuchAlgorithmException;
+    String syncMaterial(List<Material> materialList);
+    String syncWareHouse(List<Warehouse> warehouseList);
+    String syncCustomer(List<Customer> customerList);
+    String syncSupplier(List<Supplier> supplierList);
+    String addOrderToServer(Order order);
+
+    JSONObject loginBySign() throws UnsupportedEncodingException, NoSuchAlgorithmException;
 
     CommonResponse reportInOrOutBound(Object params);
 }

--
Gitblit v1.9.1