From f02160e1f583f063dc01499634311ef981cfe894 Mon Sep 17 00:00:00 2001
From: huminmin <mac@MacBook-Pro.local>
Date: 星期二, 27 一月 2026 16:40:05 +0800
Subject: [PATCH] 库存管理: 新增库存增加预警数量

---
 src/api/inventoryManagement/stockInRecord.js |   27 +++++++++++++++++++++++++++
 1 files changed, 27 insertions(+), 0 deletions(-)

diff --git a/src/api/inventoryManagement/stockInRecord.js b/src/api/inventoryManagement/stockInRecord.js
new file mode 100644
index 0000000..1746bfe
--- /dev/null
+++ b/src/api/inventoryManagement/stockInRecord.js
@@ -0,0 +1,27 @@
+import request from "@/utils/request";
+
+// 鏌ヨ鍏ュ簱淇℃伅鍒楄〃
+export const getStockInRecordListPage = (params) => {
+    return request({
+        url: "/stockInRecord/listPage",
+        method: "get",
+        params,
+    });
+};
+
+
+export const updateStockInRecord = (id, data) => {
+    return request({
+        url: "/stockInRecord/" + id,
+        method: "put",
+        data: data,
+    });
+};
+
+export const batchDeleteStockInRecords = (ids) => {
+    return request({
+        url: "/stockInRecord",
+        method: "delete",
+        data: ids,
+    });
+};
\ No newline at end of file

--
Gitblit v1.9.3