From 7c2cdcbc7f5585b96fba76a07b0e4417a09c4d7e Mon Sep 17 00:00:00 2001
From: gaoluyang <2820782392@qq.com>
Date: 星期二, 02 六月 2026 11:06:10 +0800
Subject: [PATCH] 新疆马铃薯 1.过程检验下载添加3个模版

---
 src/api/personnelManagement/socialSecuritySet.js |   46 ++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 46 insertions(+), 0 deletions(-)

diff --git a/src/api/personnelManagement/socialSecuritySet.js b/src/api/personnelManagement/socialSecuritySet.js
new file mode 100644
index 0000000..29637f0
--- /dev/null
+++ b/src/api/personnelManagement/socialSecuritySet.js
@@ -0,0 +1,46 @@
+// 绀句細淇濋櫓璁剧疆
+import request from "@/utils/request";
+
+// 鍒嗛〉鏌ヨ鍒楄〃
+export function socialSecurityListPage(query) {
+  return request({
+    url: "/schemeApplicableStaff/listPage",
+    method: "get",
+    params: query,
+  });
+}
+
+// 鏌ヨ璇︽儏
+export function socialSecurityInfo(id) {
+  return request({
+    url: "/schemeApplicableStaff/" + id,
+    method: "get",
+  });
+}
+
+// 鏂板
+export function socialSecurityAdd(data) {
+  return request({
+    url: "/schemeApplicableStaff/add",
+    method: "post",
+    data,
+  });
+}
+
+// 淇敼
+export function socialSecurityUpdate(data) {
+  return request({
+    url: "/schemeApplicableStaff/updateSchemeApplicableStaff",
+    method: "post",
+    data,
+  });
+}
+
+// 鍒犻櫎
+export function socialSecurityDelete(ids) {
+  return request({
+    url: "/schemeApplicableStaff/delete",
+    method: "delete",
+    data: ids,
+  });
+}

--
Gitblit v1.9.3